Terve,
GmailFS ja SshFS ovat kummatkin virtuaali-tiedostojärjestelmiä. Samantyyppisiä ovat myös NFS ja SMB(FS). Muista poiketen SshFS on turvallinen myös avoimen internet-verkon läpi. Muita voi suositella käytettäväksi vain palomuurin takana turvallisessa sisäverkossa.
Tero Karvinen on kirjoittanut Breezylle SshFS-ohjeet, jotka toimivat myös Dapperissa:
http://myy.helia.fi/~karte/mount_sshfs.htmlHän listaa myös ongelmia koskien GmailFS- ja SshFS-virtuaalitiedostojärjestelmiä.
---
1. Kotihakemistossa on hakemisto nimeltään "SshFS".
koskias@video:~$ ls -l SshFS
yhteensä 0
koskias@video:~$
2. Liitetään etähakemisto omaan kotihakemistoon.
koskias@video:~$ sshfs arkki@arkki.info: SshFS
arkki@arkki.info's password:
koskias@video:~$
http://www.arkki.info/tmp/SshFS.png3. Listataan etähakemisto "ls"-komennolla.
koskias@video:~$ ls -l SshFS | tail -10
drwxrwxrwx 1 1112 6685 4096 2006-02-11 19:27 podcast
drwxr-xr-x 1 1112 6685 4096 2006-05-08 13:31 public_html
-rwxr-xr-x 1 1112 6685 1905757 2005-05-18 21:09 rsync-po.tar.gz
-rwxr-xr-x 1 1112 6685 1897063 2005-05-18 23:18 rsync.tar.gz
drwxr-xr-x 1 1112 6685 4096 2005-05-31 16:49 soikko
drwxr-xr-x 1 1112 6685 4096 2005-10-03 08:15 Status
drwxr-xr-x 1 1112 6685 4096 2006-01-13 09:56 testi
-rwxr-xr-x 1 1112 6685 164477 2005-08-25 17:45 valokuvat.zip
-rw-r--r-- 1 1112 6685 94781 2006-02-14 20:46 Webmin_MySQL.png
-rwxr-xr-x 1 1112 6685 341584 2005-08-20 12:00 wordpress-1.5.2-fi_FI.tar.gz
koskias@video:~$
4. Siirretään tiedosto etähakemistoon "cp"-komennolla.
koskias@video:~$ touch testi.txt
koskias@video:~$ cp testi.txt SshFS
koskias@video:~$ ls -l SshFS/testi.txt
-rw-r--r-- 1 1112 6685 0 2006-06-30 20:02 SshFS/testi.txt
koskias@video:~$
5. Poistetaan tiedosto etähakemistosta "rm"-komennolla.
koskias@video:~$ rm SshFS/testi.txt
koskias@video:~$ ls -l SshFS/testi.txt
ls: SshFS/testi.txt: Tiedostoa tai hakemistoa ei ole
koskias@video:~$
6. Listataan liitokset "mount"-komennolla.
koskias@video:~$ mount
/dev/hda1 on / type reiserfs (rw,notail)
[--]
/dev/hda3 on /home type reiserfs (rw)
sshfs#arkki@arkki.info: on /home/koskias/SshFS type fuse (rw,nosuid,nodev,max_read=65536,user=koskias)
koskias@video:~$
7. Poistetaan etähakemisto omasta kotihakemistosta.
koskias@video:~$ fusermount -u SshFS
koskias@video:~$ ls -l SshFS
yhteensä 0
koskias@video:~$
Ystävällisin terveisin Asmo Koskinen