SMB (Local Mount)
CCV users can access their home, data, and scratch directories as a local mount on their own Windows, Mac, or Linux system using the Common Internet File System (CIFS) protocol (also called Samba). This allows you to use applications on your machine to open files stored on Oscar. It is also a convenient way to move files between Oscar and your own machine, as you can drag and drop files.
Users should ensure that the date and time are set correctly on their machine. Now you are ready to mount your CCV directories locally. Instructions for each of the various operating systems are given below.
macOS
In the Finder, press "Command + K" or select "Connect to Server..."
from the "Go" menu.
For "Server Address", enter
smb://smb.ccv.brown.edu/<volume>/
and click "Connect".
To access your Home directory, enter
smb://smb.ccv.brown.edu/home/
To access your Scratch space, enter
smb://smb.ccv.brown.edu/scratch/
To access your Data directory, enter
smb://smb.ccv.brown.edu/data/<pi_group>/
To check your PI group run 'groups' command.
Enter your AD username and password. If you have trouble connecting, enter
<username>@ad.brown.edu
as your UsernameYou may choose to add your login credentials to your keychain so you will not need to enter this again.
Optional. If you would like to automatically connect to the share at startup:
Open "System Preferences" (leave the Finder window open).
Go to "Accounts" > "(your account name)".
Select "Login Items".
Drag your data share from the "Finder" window to the "Login Items" window.
Linux
Install the
cifs-utils
package:CentOS/RHEL: $ sudo yum install cifs-utils Ubuntu: $ sudo apt-get install cifs-utils
Make a directory to mount the share into:
$ sudo mkdir -p /mnt/rhome /mnt/rscratch /mnt/rdata
Create a credentials file and add your AD account information:
$ sudo gedit /etc/cifspw username=user password=password
Allow only root access to the credentials files:
$ sudo chmod 0600 /etc/cifspw
Add an entry to the
fstab
:$ sudo gedit /etc/fstab
The
fstab
entry should be following:# Home //smb.ccv.brown.edu/home/ /mnt/rhome cifs credentials=/etc/cifspw,nounix,uid=<localuser>,domain=ad.brown.edu 0 0 # Scratch //smb.ccv.brown.edu/scratch/ /mnt/rscratch cifs credentials=/etc/cifspw,nounix,uid=<localuser>,domain=ad.brown.edu 0 0 # Data //smb.ccv.brown.edu/data/<pi_group>/ /mnt/rdata cifs credentials=/etc/cifspw,nounix,uid=<localUser>,domain=ad.brown.edu 0 0
Replace
<localUser>
to the login used on your Linux workstation, and replace <user> and <pi_group> with your Oscar username and PI group, respectively.Mount the share:
$ mount -a
Windows
Right-click "Computer" and select "Map Network Drive"
Select an unassigned drive letter
To mount specific volumes:
For Home directory, enter
\\smb.ccv.brown.edu\home\
For Scratch space, enter
\\smb.ccv.brown.edu\scratch\
For Data directory, enter
\\smb.ccv.brown.edu\data\<pi_group>\
To check your
<pi_group>
run 'groups' command.
Check "Connect using different credentials"
Click "Finish"
Enter your AD user name. If your computer is not in Active Directory (AD), you should enter your username in the format
ad\username
Enter your AD password and click "OK"
You can now access your home directory through Windows Explorer with the assigned drive letter. Your data and scratch directories are available as the subdirectories (~/data
and ~/scratch
) of your home directory.
Last updated
Was this helpful?