command line - access and read the external disk mounted on a server - Ask Ubuntu
how can access , read , write files onto external disk mounted on server own ubuntu terminal?
you can use sshfs
this.
- install running
sudo apt-get install sshfs
- run
sshfs user@server:/path/to/dir /path/to/mountpoint/
actual paths - access data
cd /path/to/mountpoint/
. can use data server same way hard-drive in computer.
Comments
Post a Comment