...
Engram can be accessed remotely by using the CUIT Virtual Private Network (VPN) service. (More VPN setup details provided here (Limited access UNI login required))
1. SMB Share
a. Ubuntu
If cifs-utils not installed, install them using the following command
$ sudo apt-get install cifs-utils
Create a local mount point. For example:
$ mkdir ~/engram
Mount the share using the following command
sudo /sbin/mount.cifs --verbose -o vers=2.1,user=UNI,domain=adcu.columbia.edu,uid=$(id -u),forceuid,gid=$(id -g),forcegid,file_mode=0755,dir_mode=0755,rw,noacl //TIERNAME-smb.engram.rc.zi.columbia.edu/LABNAME-TIERNAME /home/$(id -un)/engram
- Replace strings in BOLD with real values, as follows:
- UNI - your UNI
- TIERNAME - locker, labshare or staging
- LABNAME - name of your lab
- Replace strings in BOLD with real values, as follows:
...