I made another change in Filezilla, on the site properties I stated the remote path to the directory I want, i.e. stating as full path /usb/DISCO1/GLOBAL, this being the directory (folder) I want to be accessible by ftp. The result is the following log:
------------------------
Status: Connecting to 213.190.211.132:2200...
Status: Connection established, waiting for welcome message...
Response: 220 Welcome to SNAKE OS FTP service
Command: USER mario
Response: 331 Please specify the password.
Command: PASS *********
Response: 230 Login successful.
Command: SYST
Response: 215 UNIX Type: L8
Command: FEAT
Response: 211-Features:
Response: EPRT
Response: EPSV
Response: MDTM
Response: PASV
Response: REST STREAM
Response: SIZE
Response: TVFS
Response: UTF8
Response: 211 End
Command: OPTS UTF8 ON
Response: 200 Always in UTF8 mode.
Status: Connected
Status: Retrieving directory listing...
Command: CWD /usb/DISCO1/GLOBAL
Response: 550 Failed to change directory.
Error: Failed to retrieve directory listing
----------------------------
Then, being a total newbie in Linux, I though: could that be a matter of permissions?
I logged in through Putty, and the permissions I managed to see are:
--------------------------
# ls usb
DISCO1
# ls -l usb
drwxr-xr-x 4 root root 4096 Oct 12 12:57 DISCO1
# cd /usb
# ls
DISCO1
# ls -l DISCO1
drwxr-xr-x 4 root root 4096 Oct 13 16:24 GLOBAL
drwx------ 2 root root 16384 Oct 12 12:33 lost+found
-rw-r--r-- 1 root root 268435456 Oct 12 12:59 swapfile
# ls -ld DISCO1
drwxr-xr-x 4 root root 4096 Oct 12 12:57 DISCO1
------------------------------------------------------------------------
Is it then that I should change permissions for tha DISCO1 directory, or that of another folder as well? And how? Sorry for being such an ignorant, I've been reading and searching a lot but still don't know tons of things. Thank you guys for any help on this.
Mario