Getting to your Windows Y:-drive: Difference between revisions

From LWP-Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:misc-faq]]
[[Category:misc-faq]]
We cannot reliably mount the UWP Y:-drive for our users, because of some issues. On the following link you'll find all available solution to reach your Y:-drive:<br/>
When you use the LWP then your UWP Y: drive is available at '''/media/ydrive'''.
http://myuniversity.rug.nl/infonet/medewerkers/ict/werkplek/werkplekken/universitairewerkplek/remote-access-to-your-data
----<br/>
'''Users with sudo'''<br/>
For users with ''"sudo"'' rights on their PC, there is another option.<br/>
* First you'll have to login to "https://uwp.rug.nl" and go to ''"Tools & Utilities"''. Open ''"Explore Group Drive Y"''.
* In the newly opened explorer window, right click ''"Shared Storage (Y:)"'', select ''"Properties"'' and go to the ''"DFS"'' tab.
* In the ''"Referral list"'', look for the path that says ''"Active"'' is ''"Yes"'' and write down the first part of the path... ''"CL*-N*"''.


Now on your own system, create the directory where you want to mount your Y drive, e.g.:
Otherwise from with the university network you can use the smb protocol to access the Y:-drive.
mkdir /mnt/Y
<code>
In the following command, change the path to what you've written down and change the username to your p-number. Then you can mount your Y drive on your system.
    sudo mkdir -p /mnt/ydrive/
sudo mount -t cifs //CL*-N*.workspace.rug.nl/ydrive /mnt/Y --verbose -o username=p123456,workgroup=WORKSPACE,vers=2.1
    sudo mount -t smb3 //workspace.rug.nl/ydrive /mnt/ydrive/ -o user=<p-number>
To do this permanently add the following lines to your ''"/etc/fstab"'':
</code>
# The UWP Y-drive
From outside the university you can use https://vlwp.rug.nl or https://uwp.rug.nl
//CL*-N*.workspace.rug.nl/ydrive /mnt/Y cifs username=p123456,workgroup=WORKSPACE,vers=2.1 0 0

Latest revision as of 13:59, 17 July 2023

When you use the LWP then your UWP Y: drive is available at /media/ydrive.

Otherwise from with the university network you can use the smb protocol to access the Y:-drive.

   sudo mkdir -p /mnt/ydrive/
   sudo mount -t smb3 //workspace.rug.nl/ydrive /mnt/ydrive/ -o user=<p-number>

From outside the university you can use https://vlwp.rug.nl or https://uwp.rug.nl