Difference between revisions of "Mounting server directories under Linux"

From Dreamwidth Notes
Jump to: navigation, search
Line 8: Line 8:
  
 
or whatever your equivalent method is - you can use any command-line or GUI package manager.
 
or whatever your equivalent method is - you can use any command-line or GUI package manager.
 
==Connecting to your Dreamhack==
 
 
Log into your Dreamhack as usual:
 
 
<source lang="bash">ssh dh-user@hack.dreamwidth.net</source>
 
  
 
==Mounting==
 
==Mounting==
Line 23: Line 17:
 
(This only needs to be done the first time; the directory will be there even when sshfs is not in use, although it will be empty.)
 
(This only needs to be done the first time; the directory will be there even when sshfs is not in use, although it will be empty.)
  
Then mount your Dreamhack:
+
Then mount your Dreamhack to that directory:
  
 
<source lang="bash">sshfs dh-user@hack.dreamwidth.net:  dw -oauto_cache,reconnect</source>
 
<source lang="bash">sshfs dh-user@hack.dreamwidth.net:  dw -oauto_cache,reconnect</source>

Revision as of 15:44, 13 April 2009

Mostly taken straight from the Mac equivalent page.

This will let you mount a directory on your computer so you can transparently browse, edit, and save files on a server. Basically, it makes the files on the server a part of your filesystem while you are connected. Opening and saving things will be slower than native files, but not too horrible if you have a decent internet connection speed. You also probably wouldn't want to run any scripts from these directories natively, either, as they are unlikely to work properly. These instructions are for Ubuntu, but should be easily translatable.

Install sshfs

sudo apt-get install sshfs

or whatever your equivalent method is - you can use any command-line or GUI package manager.

Mounting

Make a local directory to mount to:

mkdir dw

(This only needs to be done the first time; the directory will be there even when sshfs is not in use, although it will be empty.)

Then mount your Dreamhack to that directory:

sshfs dh-user@hack.dreamwidth.net:  dw -oauto_cache,reconnect

You will need to replace "dh-user" with your actual Dreamhack username, of course. This should prompt for your password. Once you have successfully connected, you should be able to access the files through the directory you mounted to, as if they were on your own computer (...but slower).

Disconnecting

To disconnect, you can use the command:

fusermount -u dw