You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hpc/01_getting_started/02_getting_and_renewing_an_account.md
+18-14Lines changed: 18 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,20 +22,6 @@ This section deals with the eligibility for getting HPC accounts and the process
22
22
23
23
NYU HPC clusters and related resources are available to full-time NYU faculty and to all NYU staff and, students with sponsorship from a full-time NYU faculty.
24
24
25
-
:::note
26
-
27
-
In order to request a new HPC account or renew an expired one, you need to be connected to the NYU VPN if you are working remotely, Please see [instructions on how to install and use the NYU VPN][nyu vpn link]. Linux clients are not officially supported, however we were able to successfully use openVPN client. Here are installation and connection instructions for a debian linux distribution with apt pacakge manager:
28
-
29
-
```sh
30
-
apt-get install openconnect
31
-
sudo openconnect -b vpn.nyu.edu
32
-
```
33
-
34
-
_When prompted follow the instructions and provide your netID, password, and authenticate with ('push', 'phone1' or 'sms')_
35
-
36
-
This method was tested on few Linux distributions and settings however is not guaranteeed to work in future.
37
-
38
-
:::
39
25
40
26
## Getting a new account on the NYU HPC clusters
41
27
@@ -103,3 +89,21 @@ Please see [instructions for affiliate management][affiliate and account managem
103
89
If you will still work on a project with an NYU researchers after graduation - refer to the section above for "Non-NYU Researchers"
104
90
105
91
If you are not part of a collaboration, your access to cluster will end together with NetID becoming non-active. Please copy all your data cluster (if you need any) before that time.
92
+
93
+
94
+
## VPN on a Linux machine
95
+
96
+
:::note
97
+
98
+
In order to request a new HPC account or renew an expired one, you need to be connected to the NYU VPN if you are working remotely, Please see [instructions on how to install and use the NYU VPN][nyu vpn link]. Linux clients are not officially supported, however we were able to successfully use openVPN client. Here are installation and connection instructions for a debian linux distribution with apt pacakge manager:
99
+
100
+
```sh
101
+
apt-get install openconnect
102
+
sudo openconnect -b vpn.nyu.edu
103
+
```
104
+
105
+
_When prompted follow the instructions and provide your netID, password, and authenticate with ('push', 'phone1' or 'sms')_
106
+
107
+
This method was tested on few Linux distributions and settings however is not guaranteeed to work in future.
Copy file name to clipboardExpand all lines: docs/hpc/03_navigating_the_cluster/01_linux_tutorial.mdx
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Files Systems for usage:
11
11
12
12
The NYU HPC clusters have multiple file systems for user's file storage needs. Each file system is configured differently to serve a different purpose.
|`/home`|`$HOME`| Program Development space; For storing small files, source code, scripts etc that are backed up | NO | 20GB |
17
17
|`/scratch`|`$SCRATCH`| Computational Workspace; For storing large files/data, infrequent reads and writes | YES Files not accessed for 60 days are deleted | 5TB |
@@ -73,10 +73,13 @@ If you run "` cd `" with no arguments, you will be returned to your home directo
73
73
| mv dummy_file.txt test_file.txt | Renames dummy_file.txt as test_file.txt |
74
74
| mv subdir new_subdir | Renames the directory "subdir" to a new directory "new_subdir" |
75
75
76
-
**Deleting files:** The "` rm `" ( remove ) command deletes files and optionally directories within a cluster or machine.
76
+
**Deleting files:** The "` rm `" ( remove ) command deletes files and optionally directories within a cluster or machine.
77
77
78
-
> **_WARNING:_** There is no undelete in Unix. Once it is removed, it's gone !
78
+
:::danger
79
79
80
+
There is no undelete in Unix. Once it is removed, it's gone !
0 commit comments