Mounting a network drive allows users to access data files as though they were stored on a local machine without actually consuming any local storage. For most users, this is the most useful interface for data access.
- hostname: \\cmip5.whoi.edu\
- sharename: data
- domain: WORKGROUP
The share is hosted by a samba server, and allows users to mount anonymously with read-only access. The network share is only accessible via the local WHOI network or VPN.
Mounting a Network Share on *NIX Systems
Required Packages:
- cifs-utils – Common Internet File System utilities
- samba-common – common files used by both the Samba server and client
- samba-common-bin – common files used by both the Samba server and client
Install required packages on Debian/Ubuntu:
1 |
root@aekholm-a900:/# apt-get install cifs-utils samba-common samba-common-bin |
Mount the share:
1 2 3 |
root@aekholm-a900:~# mkdir /mnt/data root@aekholm-a900:~# mount -t cifs //cmip5.whoi.edu/data /mnt/data -ouser=cmip5user,password= root@aekholm-a900:~# ln -s /mnt/data /data # optional |
Mounting a Network Share on Windows Systems
Right click on computer and navigate to Map network drive…
Enter network share for “Folder”: \\cmip5.whoi.edu\data. Click Finish.
The share should now appear in Computer.
Mounting a Network Share on Apple OS X Systems
You can use a URL in the form smb://cmip5.whoi.edu or the mount_smbfs command in Terminal to mount a shared volume on an SMB server.
In Mail.app or Safari and OS X Lion, when you click on a URL in the form smb://cmip5.whoi.edu/data/ to connect to the SMB server, the volume that mounts on your desktop will be different than in previous versions of Mac OS X. The Finder will mount the volume named data on the SMB server cmip5.whoi.edu, and open a window showing the contents of the directory.
Additional Information
In OS X Lion and later, the “mount_smbfs” command can be used in a Terminal window or a shell script to replicate the Finder behavior in Mac OS X v10.6 and earlier. For more information, type the following command in a Terminal window:
1 |
man mount_smbfs |
Pingback: Data Access Pages Added | CMIP5 Community Storage Server