Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Mount a Linux directory from a different PC to your local Linux PC?

Tags:

Is there a way to mount a Linux directory from a different PC to your local Linux PC? How?

like image 372
ksuralta Avatar asked Oct 24 '08 02:10

ksuralta


People also ask

How do I mount a drive on a Linux server?

In order to mount a USB drive, use the “mount” command and specify the device name you identified in the first section. Create a mountpoint in your home directory (in this case named “usb“) and use it as a mountpoint. Great! You successfully mounted a USB drive on Linux using the mount command.


2 Answers

sshfs is very nice, and easy to use

sshfs user@remotesystem:/remote/dir /some/local/dir 
like image 140
Georg Zimmer Avatar answered Nov 26 '22 04:11

Georg Zimmer


Yes, it's called NFS. You might also want to check out sshfs which is pretty nice.

like image 29
Robert Gamble Avatar answered Nov 26 '22 06:11

Robert Gamble