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

From LWP-Wiki
Jump to navigation Jump to search
(Replaced content with "Category:misc-faq")
Tag: Replaced
m (update)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:misc-faq]]
[[Category:misc-faq]]
=== Generic instructions ===
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 network ====
From outside the university network you can use https://vlwp.rug.nl or https://uwp.rug.nl
=== From inside the university network using your own OS ===
==== MacOS ====
First edit (as root) `/etc/nsmb.conf` to contain:
[default]
protocol_vers_map=4
Then in `Finder` choose `Go -> Connect to Server` and fill in:
* `smb://<p-number>@workspace.rug.nl/ydrive`
==== Linux ====
First edit `/etc/samba/smb.conf` to contain:
[global]
min protocol = SMB2
client min protocol = SMB2
workgroup=WORKPLACE
Then use your file manager to connect to a network share:
* `smb://<p-number>@workspace.rug.nl/ydrive`
===== Linux =====

Latest revision as of 14:13, 13 May 2024

Generic instructions

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 network

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

From inside the university network using your own OS

MacOS

First edit (as root) `/etc/nsmb.conf` to contain:

[default]
protocol_vers_map=4

Then in `Finder` choose `Go -> Connect to Server` and fill in:

  • `smb://<p-number>@workspace.rug.nl/ydrive`

Linux

First edit `/etc/samba/smb.conf` to contain:

[global]
min protocol = SMB2
client min protocol = SMB2
workgroup=WORKPLACE

Then use your file manager to connect to a network share:

  • `smb://<p-number>@workspace.rug.nl/ydrive`


Linux