Update IBG 3: JSC Supercomputer HowTo authored by Johannes Keller's avatar Johannes Keller
......@@ -15,11 +15,6 @@ Useful links:
- available file systems: https://apps.fz-juelich.de/jsc/hps/juwels/environment.html#available-file-systems
- JSC User Support: https://www.fz-juelich.de/en/ias/jsc/services/user-support
To review personal information regarding your compute project usage, run the following commands on JUWELS/JURECA:
- `jutil user show`
- `jutil user cpuquota -p cjicg41` (Replace `cjicg41` with your project key)
- `jutil user dataquota -p cjicg41 -U GB` (Replace `cjicg41` with your project key)
**Disclaimer:** Parts of this documentation have been re-written by ChatGPT asking for clarity and conciseness.
## Joining a compute time project
......@@ -232,6 +227,24 @@ We add some more specific information for the file systems used in our projects.
JSC's `jutil` command gives an overview of the memory and file usage on each partition. Oftentimes more fine-grained, directory-specific information is useful. The following two commands (`find`, `du`) can do this.
#### jutil: Check memory/file usage for full partition
To review personal information regarding your compute project usage, run the following commands on JUWELS/JURECA:
```shell
jutil user show
```
```shell
jutil user cpuquota -p cjicg41
```
(Replace `cjicg41` with your project key)
```shell
jutil user dataquota -p cjicg41 -U GB
```
(Replace `cjicg41` with your project key)
#### find: Check number of files
Check the number of files in the current directory:
......
......