-
Notifications
You must be signed in to change notification settings - Fork 53
Mount a remote file system
Jeff Law edited this page Apr 23, 2019
·
4 revisions
To mount the bioinformatics file system on the CSB and CSB2 (client) machines, use the following commands:
# if sshfs is not installed yet on the client:
sudo apt-get install sshfs
# make the mount directory on the client:
sudo mkdir /data; sudo chmod 777 /data;
mkdir -p /data/inputs/single-cell
# now mount the directory
sudo sshfs -o allow_other <user>@bioinformatics.cs.vt.edu:/data/inputs/single-cell /data/inputs/single-cell