Personal tools
You are here: Home GNU/Linux Scripting Fuse!
Log in


Forgot your password?
New user?
 

Fuse!

by Srecko Toroman last modified May 07, 2009 06:56 PM

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/ $1
For more information about Fuse, please visit this link: http://fuse.sourceforge.net/

There are currently no items in this folder.

Document Actions
« November 2009 »
November
MoTuWeThFrSaSu
1
2345678
9101112131415
16171819202122
23242526272829
30