User Manual

1 Getting Started
1.1 Connecting to Oscar
1.2 Linux
1.3 CIFS

2 Managing Files

3 Software

4 Running Jobs

5 XSEDE

6 GPU Computing

1.3 CIFS

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). There are two requirements for using this service:

  • An Oscar account with CIFS access enabled (accounts created since 2010 are automatically enabled).
  • Local campus connectivity. Off-campus users can connect after obtaining a campus IP with Brown's Virtual Private Network client, but performance may be degraded.

First, use SSH to connect to Oscar to set your CIFS password. Once logged in, run the command:

$ smbpasswd

You will first be prompted for your "old" password, which is the temporary password you were given by CCV when your account was created. Then, enter a new CIFS password twice. You may choose to use the same password here as for your Oscar account.

Now you are ready to mount your CCV directories locally using the following instructions based on your operating system:

1.3.1 Windows XP

  • Right-click "My Computer" and select "Map Network Drive".
  • Select an unassigned drive letter.
  • Enter \\oscarcifs.ccv.brown.edu\<user> as the Folder.
  • Click "Connect using a different user name"
  • Enter your CCV user name as "ccv" (no quotes)
  • Enter your CCV password and click "OK".
  • Click "Finish"

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.

1.3.2 Windows 7

  • Right-click "Computer" and select "Map Network Drive".
  • Select an unassigned drive letter.
  • Enter \\oscarcifs.ccv.brown.edu\<user> as the Folder.
  • Check "Connect using different credentials"
  • Click "Finish"
  • Enter your CCV user name as "ccv" (no quotes)
  • Enter your CCV 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.

1.3.3 Mac OS X

  • In the Finder, press "Command + K" or select "Connect to Server..." from the "Go" menu.
  • For "Server Address", enter smb://oscarcifs.ccv.brown.edu/<user> and click "Connect".
  • Enter your username and password.
  • You 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.

1.3.4 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 /mnt/rdata
  • Create a credentials file and add your CCV 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
    
    //oscarcifs.ccv.brown.edu/<user> /mnt/rdata cifs credentials=/etc/cifspw,nounix,uid=<localUser> 0 0

    The fstab entry is a single line. Change <localUser> to the login used on your Linux workstation. The above fstab entry is a single line.

  • Mount the share:

    $ mount -a