- How to get a TigerDen Account
- How to mount TigerDen Personal Shares on MacOS
- How to mount TigerDen Personal Shares on Linux via Samba
- How to mount TigerDen Personal Shares on Windows 11
- How to mount TigerDen Group Shares on MacOS
- How to mount TigerDen Group Shares on Linux via Samba
- How to mount TigerDen Group Shares on Windows 11
- E-mail and TigerDen
- TigerDen Questions
- Open a Ticket
- Request Restore From Backup
- mount error: could not resolve address for smb.den.lsu.edu: Unknown error
How to get a TigerDen Account
Here are the steps to getting a TigerDen Account:
- Visit the TigerDen Configuration web site
- Click on
Request an Account
- At this Point you will be taken to a login screen (you will use your LSU Active Directory ID and Password) and then you will be taken to the Account Request Form
- Choose the amount of disk you want (100 GB recommended)
- Choose to not have backups or to pay for backups
- Click
Submit
- You will then receive an e-mail with a link in it to verify that you really did request this account
- You need to open your email and click on the verification link. Once you have done this, you will be contacted by TigerDen staff concerning account creation details
How to mount TigerDen Personal Shares on MacOS
Follow these steps:
- Go to Finder
- Either press ⌘k or select the
Go
menu item and scroll down toconnct to server
- In the box type:
smb://smb.den.lsu.edu/AD_USERNAME$
(where AD_USERNAME is your LSU username (Active Directory) without the@lsu.edu
) - You will then be prompted for your LSU password
- The share should then mount.
Notes
- You must include the
$
character after your LSU username (AD_USERNAME
). - You must be on campus or connected via LSU VPN to be able to mount your share.
- Make sure you use a
\
and not a/
in theFolder
box.
How to mount TigerDen Personal Shares on Linux via Samba
Notice: You must either run the mount command as the root
user, or using sudo
.
The generic Linux/UNIX mount command uses the following format: mount -t cifs -o username=AD_USERNAME,domain=lsu.edu,uid=UID,gid=GID //smb.den.lsu.edu/AD_USERNAME$ MOUNT_POINT
LOCAL_USERNAME
: Your username on your desktop or laptop (client) machineAD_USERNAME
: Your LSU username (Active Directory) without the@lsu.edu
UID
: The Linux/UNIX UID of yourLOCAL_USERNAME
(You may use numeric or name)GID
: The Linux/UNIX GID of yourLOCAL_USERNAME
(You may use numeric or name)MOUNT_POINT
: The directory path (location) on your desktop or laptop machine where the share will be mounted. Note that this path must already exist.
For example, Mike Tiger uses the following mount command: sudo mount -t cifs -o username=tiger1,domain=lsu.edu,uid=1001,gid=1000 //smb.den.lsu.edu/tiger1$ /home/mike/td
sudo
: This user is allowed to execute themount
command usingsudo
tiger1
is Mike’s LSU ID1001
is Mike’s local user ID (from theid
command; see below)1000
is Mike’s local group ID (from theid
command; see below)/home/mike/td
is the directory on which the share will be mounted
When you do the mount, you will need to enter your AD credentials to authorize access to the TigerDen share. If you typed sudo
AA before the command you wil need to provide your local paasword for sudo
.
Here is the output of mike running the id
command on their local machine:
$ id
uid=1001(mike) gid=1000(mike_group) groups=1000(mike_group)
How to unmount the share:
umount %MOUNT_POINT
Using the above mount example, the unmount command would be: umount /home/mike/td
Notes:
- You must be on campus or connected via LSU VPN to be able to mount your share.
- You may need to install
cifs-utils
(Debian, RedHat, Centos, Rocky, Alma, …) - You will not be able to resolve
smb.den.lsu.edu
if your DNS is configured for something other than LSU
How to mount TigerDen Personal Shares on Windows 11
Follow these steps:
- Open file explorer from start menu
- Navigate to
This PC
(on the left side of window) - Right click on
This Pc
and selectMap network drive
- A wizard window will now open
- Select drive letter
- In the
Folder
box type\\smb.den.lsu.edu\AD_USERNAME$
(yes type a$
at the end of your LSU Active Directory Username) - If you’re using a computer that is not a member of the LSU domain, then you need to check the box labeled
Connect using different credentials
- Click the
Finish
button - You will then be prompted to type in your LSU Active Directory Password (do so) and then click the
OK
button - Your TigerDen storage will now show up as a network storage device
Notes:
- You must be on campus or connected via LSU VPN to be able to mount your share.
- Make sure you use a
\
and not a/
in theFolder
box
How to mount TigerDen Group Shares on MacOS
Follow these steps:
- Go to Finder
- Either press ⌘k or select the
Go
menu item and scroll down toconnct to server
- In the box type:
smb://smb.den.lsu.edu/GROUP_NAME$
(where _GROUP_NAME is the name of the Tiger Den group) - You will then be prompted for your LSU password
- The share should then mount.
Notes
- You must include the
$
character after your group name - You must be on campus or connected via LSU VPN to be able to mount your share.
- Make sure you use a
\
and not a/
in theFolder
box.
How to mount TigerDen Group Shares on Linux via Samba
Notice: You must either run the mount command as the root
user, or using sudo
.
The generic Linux/UNIX mount command uses the following format: mount -t cifs -o username=AD_USERNAME,domain=lsu.edu,uid=UID,gid=GID //smb.den.lsu.edu/GROUP_NAME$ MOUNT_POINT
LOCAL_USERNAME
: Your username on your desktop or laptop (client) machineAD_USERNAME
: Your LSU username (Active Directory) without the@lsu.edu
GROUP_NAME
: The name of the Tiger Den group (tdg####)UID
: The Linux/UNIX UID of yourLOCAL_USERNAME
(You may use numeric or name)GID
: The Linux/UNIX GID of yourLOCAL_USERNAME
(You may use numeric or name)MOUNT_POINT
: The directory path (location) on your desktop or laptop machine where the share will be mounted. Note that this path must already exist.
For example, Mike Tiger has a group tdg0999 uses the following mount command: sudo mount -t cifs -o username=tiger1,domain=lsu.edu,uid=1001,gid=1000 //smb.den.lsu.edu/tdg0999$ /home/mike/tdg
sudo
: This user is allowed to execute themount
command usingsudo
tiger1
is Mike’s LSU IDtdg0999
is the group name1001
is Mike’s local user ID (from theid
command; see below)1000
is Mike’s local group ID (from theid
command; see below)/home/mike/tdg
is the directory on which the share will be mounted
When you do the mount, you will need to enter your AD credentials to authorize access to the TigerDen share. If you typed sudo
AA before the command you wil need to provide your local paasword for sudo
.
Here is the output of mike running the id
command on their local machine:
$ id
uid=1001(mike) gid=1000(mike_group) groups=1000(mike_group)
How to unmount the share:
umount %MOUNT_POINT
Using the above mount example, the unmount command would be: umount /home/mike/tdg
Notes:
- You must be on campus or connected via LSU VPN to be able to mount your share.
- You may need to install
cifs-utils
(Debian, RedHat, Centos, Rocky, Alma, …) - You will not be able to resolve
smb.den.lsu.edu
if your DNS is configured for something other than LSU
How to mount TigerDen Group Shares on Windows 11
Follow these steps:
- Open file explorer from start menu
- Navigate to
This PC
(on the left side of window) - Right click on
This Pc
and selectMap network drive
- A wizard window will now open
- Select drive letter
- In the
Folder
box type\\smb.den.lsu.edu\GROUP_NAME$
(yes type a$
at the end of your group name) - If you’re using a computer that is not a member of the LSU domain, then you need to check the box labeled
Connect using different credentials
- Click the
Finish
button - You will then be prompted to type in your LSU Active Directory Password (do so) and then click the
OK
button - Your TigerDen storage will now show up as a network storage device
Notes:
- You must be on campus or connected via LSU VPN to be able to mount your share.
- Make sure you use a
\
and not a/
in theFolder
box
E-mail and TigerDen
TigerDen will always use your LSU e-mail address for communication. We go through the e-mail validation step to make sure that you can access your LSU e-mail.
We will send you e-mails in the following circumstances:- During the account creation process
- Notices about scheduled outages
- Account renewals
- Account misuse/abuse
- Alarms that you set
- Replies to tickets
TigerDen Questions
This section will be updated in the future.
Top of PageOpen a Ticket
Submit a ticket using the open ticket form.
Top of PageRequest Restore From Backup
You may only request a restore if you’ve selected the Pay for Backup
option.
Please Open a Ticket requesting your restore.
Top of Pagemount error: could not resolve address for smb.den.lsu.edu: Unknown error
If you get the error:
mount error: could not resolve address for smb.den.lsu.edu: Unknown error
smb.den.lsu.edu
rotates amongst twelve different servers for load balancing. The DNS to do this is handled by the TigerDen hardware subsystem. If your DNS server is not a LSU DNS Server, it will not know to ask TigerDen to resolve smc.den.lsu.edu
.
If you are trying to mount from off campus, when you connect to the LSU VPN, it autpmatically updates your machine to be able to auomatically resolve the TigerDen address space (and other LSU specific items).
Notes:
- You must be on campus or connected via LSU VPN to be able to mount your share.
- You will not be able to resolve smb.den.lsu.edu if your DNS is configured for something other than LSU