Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Modify Ubuntu mount.cifs based on experience in SD-642.

...

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=UNI$(id -u),forceuid,gid=user$(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

...