Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Mounting an SMB share using Finder:

  1. From the Finder menu, select 'Go' → 'Connect to Server...'

Image Added

2. Specify the UNC path for the USS SMB share: 

Image Added

3. Provide your AD.UCSD.EDU credentials:

Image Added


Linux

The command below will mount the USS SMB share on a Linux host. 

Code Block
languagetext
[user@localhost ~]$ sudo mount -t cifs //<USS>/<SMB share> /local/path/ -o username=<username>,domain=<domain>,iocharset=utf8,file_mode=0755,dir_mode=0755,vers=2.1,gid=<GID>,uid=<UID>


If 'mount' returns an error stating that you might need a helper program, you may want to confirm cifs-utils is installed:

Code Block
languagetext
[user@localhost ~]$ sudo yum install cifs-utils