Mount ftp shares:
1. Install required packages
apt-get install curlftpfs
2. Create directory to mount the ftp site
mkdir /mnt/my-ftpsite
3. Add the curlftpfs mount into fstab to make it mount everytime the system is started (pico /etc/fstab)
curlftpfs#{username}:{password}@{host} /mnt/my-ftpsitefuse rw,allow_other,uid={userid} 0 0
4. Mount the ftp site
mount /mnt/my-ftpsite
Nou you will have acces to your ftp.
Mount sftp(secure ftp) shares:
1. Install required packages
apt-get installsshfs
2. Create directory to mount the ftp site
mkdir /mnt/my-sftpsite
3. Add the sshfs mount into fstab to make it mount everytime the system is started (pico /etc/fstab)
sshfs {username}:{password}@{host}:target_folder /mnt/my-sftpsite
4. Mount the sftp site
mount /mnt/my-sftpsite
Nou you will have acces to your sftp.
Enjoy!

November 23rd, 2011 on 15:56
Thank you very much. Its working on Debian Squeeze perfectly.