Torna indietro   Hardware Upgrade Forum > Software > Linux, Unix, OS alternativi

MSI Maestro 500 Wireless: ANC e 90 ore di autonomia a 70 euro
MSI Maestro 500 Wireless: ANC e 90 ore di autonomia a 70 euro
Wireless 2.4 GHz, Bluetooth 5.4, cancellazione attiva del rumore, design pieghevole e un'autonomia che mette in imbarazzo prodotti che costano il doppio. Le Maestro 500 non eccellono in nulla, ma offrono tutto. E a questo prezzo è difficile chiedere di più
NL-LC1 è il primo dissipatore a liquido AIO di Noctua: silenzio è la parola d'ordine
NL-LC1 è il primo dissipatore a liquido AIO di Noctua: silenzio è la parola d'ordine
Dopo anni di attesa e una lunga fase di sviluppo, Noctua entra nel mercato dei dissipatori a liquido AIO con la nuova serie NL-LC1. Forte dell'esperienza maturata nel raffreddamento ad aria, l'azienda austriaca promette di portare la propria filosofia fatta di qualità costruttiva, attenzione ai dettagli e silenziosità anche in questo segmento. Abbiamo provato il nuovo sistema per scoprire se riesce a distinguersi in un mercato ormai molto competitivo.
Boox Go 10.3 (Gen II) Lumi: il tablet e-ink con Android 15 e penna, dal prezzo super
Boox Go 10.3 (Gen II) Lumi: il tablet e-ink con Android 15 e penna, dal prezzo super
Arrivato sul mercato italiano a fine marzo, la serie Boox Go 10.3 (Gen II) offre Android 15, penna da 4096 livelli e retroilluminazione opzionale (nel modello da noi provato, Lumi, presente). La serie si compone di due tablet ePaper che fanno da e-reader, blocco note digitale e persino browser, tutto a un prezzo che fa dimenticare i prodotti di brand più blasonati
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 15-11-2015, 17:05   #1
frank8085
Senior Member
 
L'Avatar di frank8085
 
Iscritto dal: Nov 2013
Città: Wien, Österreich-Ungarn
Messaggi: 933
[CENTOS] Problema FTP: Errore 550

il messaggio esatto è: error 550 - failed to change directory
riesco ad accedere alle cartelle ma quando cerco di scaricare un file mi viene dato quest'errore. premetto che sia la porta 20 che la 21 sono aperte e questo accade anche con root che ha tutti i permessi del mondo.
non ho assolutamente idea sul perchè generi quest'errore.

metto il contenuto del file vsftpd.conf
Codice:
# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
# When SELinux is enforcing check for SE bool ftp_home_dir
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=NO
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
# When SELinux is enforcing check for SE bool allow_ftpd_anon_write, allow_ftpd_full_access
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/xferlog
#
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
idle_session_timeout=120
#
# You may change the default value for timing out a data connection.
data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
ftpd_banner=Welcome to XXYYZZAABB
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd/banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
# the user does not have write access to the top level directory within the
# chroot)
#chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd/chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=NO
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
# Make sure, that one of the listen options is commented !!
listen_ipv6=YES

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
__________________
constantly changing rig...
frank8085 è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 09:37   #2
sacarde
Senior Member
 
Iscritto dal: Apr 2004
Messaggi: 9516
la fa anche se rimani nella tua home e fai un "ls" o un "get" ?


p.s.
dal log vedi altri dettagli?

Ultima modifica di sacarde : 16-11-2015 alle 10:00.
sacarde è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 14:50   #3
frank8085
Senior Member
 
L'Avatar di frank8085
 
Iscritto dal: Nov 2013
Città: Wien, Österreich-Ungarn
Messaggi: 933
la ls funziona, la get mai in quanto restituisce sempre errore 550
__________________
constantly changing rig...
frank8085 è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 16:06   #4
sacarde
Senior Member
 
Iscritto dal: Apr 2004
Messaggi: 9516
- i permessi/proprietario sono a posto?

- sono a posto anche nella dir precedente? (cd ..)


- hai attivo selinux ?


- quale e' la descrizione del 550 quando fai la get?
sacarde è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 16:54   #5
frank8085
Senior Member
 
L'Avatar di frank8085
 
Iscritto dal: Nov 2013
Città: Wien, Österreich-Ungarn
Messaggi: 933
selinux è attivato, via terminale il 550 dice cannot open file via interfaccia web failed to change directory


---- per i permessi....ho fatto l'accesso con il nome utente finale:
poi un ls -l sul path in questione
risulta:
drwxr-xr-x. 5 root root 94 15 nov 17.33 CARTELLA

guardando invece i file:
-rw-r--r--. 1 root root 42390 3 dic 2014 documento.txt
__________________
constantly changing rig...

Ultima modifica di frank8085 : 16-11-2015 alle 17:16.
frank8085 è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 19:10   #6
sacarde
Senior Member
 
Iscritto dal: Apr 2004
Messaggi: 9516
lo da anche se accedi come root ?

puoi provare a disabilitare selinux ?




p.s.
http://www.linuxquestions.org/questi...or-4175469673/

Ultima modifica di sacarde : 16-11-2015 alle 19:18.
sacarde è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 21:33   #7
frank8085
Senior Member
 
L'Avatar di frank8085
 
Iscritto dal: Nov 2013
Città: Wien, Österreich-Ungarn
Messaggi: 933
non è cambiato nulla, accedendo come root le cartelle sembrano vuote quando in realtà all'interno ci sono dei file, sono confuso
__________________
constantly changing rig...

Ultima modifica di frank8085 : 16-11-2015 alle 21:40.
frank8085 è offline   Rispondi citando il messaggio o parte di esso
Old 16-11-2015, 22:11   #8
sacarde
Senior Member
 
Iscritto dal: Apr 2004
Messaggi: 9516
anche dando:

setsebool -P allow_ftpd_full_access 1




p.s.
hai le ACL attive?
sacarde è offline   Rispondi citando il messaggio o parte di esso
Old 17-11-2015, 15:13   #9
frank8085
Senior Member
 
L'Avatar di frank8085
 
Iscritto dal: Nov 2013
Città: Wien, Österreich-Ungarn
Messaggi: 933
grazie a quel comando che mi hai consigliato ora funziona, riesco a scaricare senza problemi.
grazie mille
__________________
constantly changing rig...
frank8085 è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


MSI Maestro 500 Wireless: ANC e 90 ore di autonomia a 70 euro MSI Maestro 500 Wireless: ANC e 90 ore di autono...
NL-LC1 è il primo dissipatore a liquido AIO di Noctua: silenzio è la parola d'ordine NL-LC1 è il primo dissipatore a liquido A...
Boox Go 10.3 (Gen II) Lumi: il tablet e-ink con Android 15 e penna, dal prezzo super Boox Go 10.3 (Gen II) Lumi: il tablet e-ink con ...
Gigabyte MO32U24 OLED: il 4K a 240Hz su un pannello OLED ideale per il gaming Gigabyte MO32U24 OLED: il 4K a 240Hz su un panne...
Recensione realme 16 5G: lo smartphone con Selfie Mirror ha una batteria da 6550mAh Recensione realme 16 5G: lo smartphone con Selfi...
Apple guarda al futuro: il primo chip a ...
L'addio al PC un autogol per PlayStation...
DJI Mini 4K parte da 179€, DJI Neo da 13...
WINDTRE alza ancora i prezzi: sesta rimo...
iPhone 18 potrebbe avere più RAM ...
The Witcher, in arrivo anche un gioco mu...
Un miliardo di utenti non basta: ChatGPT...
Carl Pei di Nothing sfida Apple: 'Vi rub...
Morale a terra in casa Meta: persino i d...
SK hynix consegna le memorie HBM4E da 48...
Unreal Engine 6: Epic vuole portare gli ...
Unreal Engine 5.8 disponibile: è ...
Gwynne Shotwell (presidente di SpaceX): ...
ISRO lancerà il primo modulo della stazi...
Lo sfondo animato del tuo PC potrebbe es...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 07:14.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v