For joint and independent work on different computers you can use network drives of the university of applied sciences, on which you can store your data. Each registered user has its own drive, which is indicated with the letter G:\. By default this network drive can be accessed by the respective user only. No other User can read or change the data - however you can change read and write permissions.
Altogether the following drives are available:
The RZ only supports windows computers as operating systems. The instructions to Linux & MacOS are available as assistance. These instructions require a connection to the net of the HS.R - e.g. connected by VPN or logged in the WLAN of the university.
If you do not want to use VPN it is recommended to connect via WebDAV.
On the drives a virus scanner is active, which automatically shifts affected files into quarantine area. These files will be deleted after 60 days. You can request the release of quarantined files if needed.
If the computer is in the domain (in the Login-Screen it says “Anmelden bei: HSR”), you will automatically get the network drives assigned in your Windows-Explorer after log in.
Select a free drive letter in the map dialogue and insert a network path into the Folder box. The format of the path should be like this:
\\fs-<name>.hs-regensburg.de\<name>
The following drive paths exist:
F: \\fs-software.hs-regensburg.de\soft1 G: \\fs-home.hs-regensburg.de\home\abc12345 (abc12345 needs to be replaced by your RZ-username) H: \\fs-fb.hs-regensburg.de\fb K: \\fs-kurs.hs-regensburg.de\kurs P: \\fs-projekte.hs-regensburg.de\projekte S: \\fs-software.hs-regensburg.de\software \\fs-student.hs-regensburg.de\student \\fs-profile.hs-regensburg.de\profile\abc12345.V2 (abc12345 needs to be replaced by your RZ-username)
Because of a clearance the old network drive K can be accessed by using
\\fs-kurs.hs-regensburg.de\kurs-alt (old course drive with existing data, only reading)
If the drive should be connected automatically after each restart, make sure to check the “Reconnect at sign-in”-box.
Important Users who do not register at the domain, need to check the “Connect with different credentials”. If it is not checked, Windows will try to connect to the network drive using your Windows-Account.
After clicking Finish Windows will ask you for your credentials. Important: Insert the username in the format
abc12345@hs-regensburg.de.
To check the “Save credentials” is useful for connecting the drive after restart automatically, since you do not have to enter your username & password multiple times.
If you want to connect to a network share via commandline or script use the following commands:
net use <drive letter>: \\fs-<name>.hs-regensburg.de\<name> /USER:abc12345@hs-regensburg.de
or in Powershell:
New-PSDrive -Name "<drive letter>" -Root "\\fs-<name>.hs-regensburg.de\<name>" -Persist -PSProvider "FileSystem" -Credential abc12345@hs-regensburg.de
Example:
net use K: \\fs-kurs.hs-regensburg.de\kurs /USER:abc12345@hs-regensburg.de New-PSDrive -Name "K" -Root "\\fs-kurs.hs-regensburg.de\kurs" -Persist -PSProvider "FileSystem" -Credential abc12345@hs-regensburg.de
To mount a network share in a Linux Distribution you have to install the CIFS-Part of the Samba project.
Commonly the package is named cifs-util
and should be installed via packagemanager.
# mount -t cifs //fs-<name>.hs-regensburg.de/<name> /mnt/<name> -o domain=hs-regensburg.de,user=abc12345
See Article How To Connect Network drives in MacOS