Samba Access: Difference between revisions
m →Windows |
|||
Line 57: | Line 57: | ||
To mount from the Linux shell prompt, install the cifs-utils package (yum or apt-get) and run | To mount from the Linux shell prompt, install the cifs-utils package (yum or apt-get) and run | ||
sudo mount -t cifs -v -o user=<GatorLink Username>,domain=ufad,sec=ntlmssp | sudo mount -t cifs -v -o user=<GatorLink Username>,domain=ufad,sec=ntlmssp <remote share>/<group> <local mount point> | ||
where '''<GatorLink Username>''' is your GatorLink username, '''<remote share>''' is the remote folder you wish to mount, '''<group>''' is the group directory you wish to access, and '''<local mount point>''' is the local directory on which to mount the remote share (i.e. directory). For '/home', '''<remote share>''' will be //cifs.rc.ufl.edu/home. | where '''<GatorLink Username>''' is your GatorLink username, '''<remote share>''' is the remote folder you wish to mount, '''<group>''' is the group directory you wish to access, and '''<local mount point>''' is the local directory on which to mount the remote share (i.e. directory). For '/home', '''<remote share>''' will be //cifs.rc.ufl.edu/home. | ||
Line 63: | Line 63: | ||
You will be asked to enter your Gatorlink password. | You will be asked to enter your Gatorlink password. | ||
'''Research Computing only supports SMB versions >3.0.''' | |||
====Examples==== | ====Examples==== | ||
* /blue | * /blue | ||
mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp | mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp //exasmb.rc.ufl.edu/blue/smith /mnt/blue/smith | ||
* /orange | * /orange | ||
mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp | mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp //exasmb.rc.ufl.edu/orange/smith /mnt/orange/smith | ||
* /home | * /home | ||
mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp | mount -t cifs -v -o user=joe.smith,domain=ufad,sec=ntlmssp //cifs.rc.ufl.edu/home/jsmith /mnt/home | ||
</div></div> | </div></div> |
Revision as of 13:31, 16 June 2023
Samba is a Linux server that provides remote filesystem access using SMB/CIFS protocol and is most commonly used by UFRC clients for drive mapping to HiPerGator filesystems from their Microsoft Windows, MacOS, and Linux desktops.
Notice: Samba access is only available while on the University of Florida network. You must be on campus or connected to the UF VPN to mount HiPerGator filesystems as network drive shares.
The network drive server name for /blue and /orange is exasmb.rc.ufl.edu
The network drive server name for /home is cifs.rc.ufl.edu
.
Note: for automatically mounted filesystem paths like /blue/group or /orange/project use the full path when mounting a samba share to initiate the automounting. e.g. on Windows type the full path into the Windows Explorer Path bar - '\\exasmb.rc.ufl.edu\blue\mygroup\mydir'.
Windows
Expand this section to view instructions for accessing with Windows.
MacOS X
Expand this section to view instructions for accessing with Mac.
Linux
Expand this section to view instructions for accessing with Linux.