Fuse!
Fuse is, as they say, filesystem in userspace, and with it every user can mount virtual filesystems.
A very nice feature, you can mount FTP to your filesystem, which I find very useful occasionally. For example, I can access my data on the college server with just as simple script as this:
#!/usr/bin/env bash # USAGE: ./user.sh mountFolder USER="ftpname12" # change this to your username read -s -p "Password:" PASSWORD curlftpfs -o user=$USER:$PASSWORD ftp://userdata.raf.edu.yu/ $1For more information about Fuse, please visit this link: http://fuse.sourceforge.net/
There are currently no items in this folder.

