forked from cjmlee/NGS_Pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.qmd
94 lines (60 loc) · 1.8 KB
/
index.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
title: "Welcome to Foo Lab / Dry Lab Computation"
author: "Mick Lee"
---
![](images/56055865.jpg){fig-align="left" width="151"}
## **Getting Started:**
For access to Foo-Lab network drive, please inform Mick Lee (mick.lee\@u.nus.edu), or Erielle (emfv-09\@nus.edu.sg) to add you into the Foo-Lab list of members / Administrators.
## **Mounting Foo-Lab Network drive in NUS on Window network drive system**
Head over to your PC drive folder, and Add Network Locations (Right Click):
![](images/Screenshot_addnetwork.jpg)
Specifiy the location of your website as the following:
![](images/Screenshot_addnetwork2.jpg)
Foo-Lab network drive folder will be accessible under network drive :
![](images/Screenshot_addnetwork3.jpg)
## **Mounting Foo-Lab Network drive in NUS on Ubuntu and Ubuntu WSL systems using CIFs utils / SMB protocol**
Install cifs-utils on ubuntu:
``` bash
sudo apt update
sudo apt-get install cifs-utils
```
Create a mount point in your /mnt directory:
``` bash
sudo mkdir /mnt/uss-foolab
```
```
Create a credentials file - in /etc/cifs-credentials using vim or nano
```
``` bash
sudo vi /etc/cifs-credentials
username=NUSNETID
password=NUSNETPW
domain=nusstf
```
```
Allow special permissions to cifs-credentials
```
``` bash
sudo chmod 600 /etc/cifs-credentials
```
```
edit /etc/fstab file and add the following entry
```
``` bash
vi /etc/fstab
//hpcnas.nus.edu.sg/uss-foolab /mnt/uss-foolab cifs credentials=/etc/cifs-credentials 0 0
```
```
Create folder to mount network volume in /mnt and mount all volume
```
``` bash
sudo mkdir /mnt/uss-foolab
sudo mount -a
```
```
Otherwise try using DrvFs wsl plugin protocol :
```
``` bash
sudo mount -t drvfs //hpcnas.nus.edu.sg/uss-foolab /mnt/uss-foolab -o username=NUSNETID
```
\`\`\`\`