...
Mounting an SMB share using Finder:
- From the Finder menu, select 'Go' → 'Connect to Server...'
2. Specify the UNC path for the USS SMB share:
3. Provide your AD.UCSD.EDU credentials:
Linux
The command below will mount the USS SMB share on a Linux host.
Code Block | ||
---|---|---|
| ||
[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 | ||
---|---|---|
| ||
[user@localhost ~]$ sudo yum install cifs-utils |