How do I connect to the file server?
Instructions for connecting to the file server from various types of computers
####################################################################
This document describes how to connect to the Shared and Personal areas on file.glbrc.org, the file server for GLBRC & WEI at UW-Madison.
** Quick Access In Your Browser**
- No VPN network requirements!
- You can use a web browser to access the file server through our web front end software. Go to https://commander.glbrc.org and sign in using your GLBRC/WEI credentials.
- This method provides less flexibility and features than mapping the drive with instructions listed below but is an excellent option for smaller file operations.
Network Requirements
The file.glbrc.org server can be accessed from three networks:
Connect to file.glbrc.org from Mac OS:
| File Server Area | Full Account | Guest Account |
|---|---|---|
| Shared | smb://file.glbrc.org/shared | smb://file.glbrc.org/shared/ |
| Personal | smb://file.glbrc.org/personal/ |
None |
- Prevent DS_STORE files from being created on remote network drives
- Mac OS has a bad habit of littering remote network drives with DS_STORE files, which are unnecessary. To prevent this, follow the steps outlined in this Apple Knowledge Base article: http://support.apple.com/kb/ht1629
- Open Finder. From the men ubar on the top of your screen, select Go -> Connect to Server
- For Server Address, enter the connection string for the Shared area that you determined from the table above, usually "smb://file.glbrc.org/shared"
- Optionally, click the + sign next to the Server Address box to add this server as a Favorite for easy re-connection
- Click the Connect button
- Next you will be prompted for your username and password. For Connect As select Registered User.
- In the name field enter your username, and in the password field enter your password.
- Your username and password will be the same as your GLBRC Hub username and password, unless you are using a lab guest account.
- Optionally, check the Remember this password in my keychain box.
- Once you have entered your username and password, click Connect
- The file server will appear on your desktop!
- Optionally, you can create aliases for the GLBRC file server areas on your desktop.
- If you have saved your credentials when connecting to the server, an alias will allow you to connect simply by double-clicking the alias. To create an alias do the following:
- Open Finder. From the menu bar at the top of your screen, select Finder -> Preferences
- On the General tab, check the box that says Connected Servers
- Connect to file.glbrc.org following the instructions as above if you are not already connected
- On your desktop you should now see the servers labeled "shared" and "personal". Right-click (or command-click) on the icon and select Make Alias. This will create a new icon on your desktop named "Shared alias" or "Personal alias", which you can rename to whatever you want. You can now double-click that icon to connect to the server automatically
Connect to file.glbrc.org from Windows:
Connection Strings
| File Server Area | Full Account | Guest Account |
|---|---|---|
| Shared | \\file.glbrc.org\shared | \\file.glbrc.org\shared\ |
| Personal | \\file.glbrc.org\personal\ |
None |
- In Windows 7 and Windows 10 Right click on the start menu and choose File Explorer, right click on This PC and then select "Map Network drive..."
- In Windows 11 right click on the start menu, choose File Explorer, right click on This PC, click on the "Show more options" and then select "Map network drive..."
- For Drive:, select any drive letter you like that is not already in use. In use drive letters will have a label next to them in the list
- For Folder, enter the connection string for the Shared area that you determined above. (e.g. \\file.glbrc.org\shared, or \\file.glbrc.org\personal\
- Check the box that says Connect using different credentials
- Optionally, click the box that says Reconnect at logon. If selected, the drive will automatically connect when you login. (This will only work well if your computer is on the WEI Wireless or using a physical ethernet) connection in the WEI building since a VPN connection is required otherwise
- Click Finish. When prompted, enter your username in the form GLBRCORG\username, e.g. GLBRCORG\jdoe
- Enter your password. Optionally click Remember credentials
- The file server will appear in File Explorer!
Connect to file.glbrc.org from Linux:
Connection Strings
| File Server Area | Full Account | Guest Account |
|---|---|---|
| Shared | //file.glbrc.org/shared | //file.glbrc.org/shared/ |
| Personal | //file.glbrc.org/personal/ |
None |
- Log ino the Linux computer you want to connect with
- Run the following commands to create the mountpoints:
- sudo mkdir /mnt/file.glbrc.org-shared
- sudo mkdir /mnt/file.glbrc.org-personal
- If they aren't already, install prerequisite linux tools for accessing Windows shares
- CentOS/RHEL -- sudo yum install samba-client samba-common cifs-utils
- Ubuntu -- sudo apt-get install cifs-utils
- Run the following commands to mount the filesystem:
- sudo mount -t cifs -o username=${USER},uid=$(id -u),gid=$(id -g) //file.glbrc.org/shared /mnt/file.glbrc.org-shared
- sudo mount -t cifs -o username=${USER},uid=$(id -u),gid=$(id -g) //file.glbrc.org/personal/${USER} /mnt/file.glbrc.org-personal
- Now you can browse into /mnt/ and access the file server.
- Your credentials will be saved on that server until manually disconnected, to unmount, use the following commands:
- sudo umount /mnt/file.glbrc.org-shared
- sudo umount /mnt/file.glbrc.org-personal