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: mkdocs/docs/HPC/FAQ.md
+50-1Lines changed: 50 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ It is possible to use the modules without specifying a version or toolchain. How
74
74
this will probably cause incompatible modules to be loaded. Don't do it if you use multiple modules.
75
75
Even if it works now, as more modules get installed on the HPC, your job can suddenly break.
76
76
77
-
## Troubleshooting jobs
77
+
## Troubleshooting
78
78
79
79
### My modules don't work together
80
80
@@ -226,6 +226,29 @@ information, see .
226
226
227
227
{% endif %}
228
228
229
+
230
+
### Why do I get a "No space left on device" error, while I still have storage space left?
231
+
232
+
When trying to create files, errors like this can occur:
233
+
234
+
```shell
235
+
No space left on device
236
+
```
237
+
238
+
The error "`No space left on device`" can mean two different things:
239
+
240
+
- all available *storage quota* on the file system in question has been used;
241
+
- the *inode limit* has been reached on that file system.
242
+
243
+
An *inode* can be seen as a "file slot", meaning that when the limit is reached, no more additional files can be created.
244
+
There is a standard inode limit in place that will be increased if needed.
245
+
The number of inodes used per file system can be checked on [the VSC account page](https://account.vscentrum.be).
246
+
247
+
Possible solutions to this problem include cleaning up unused files and directories or
248
+
[compressing directories with a lot of files into zip- or tar-files](linux-tutorial/manipulating_files_and_directories.md#zipping-gzipgunzip-zipunzip).
249
+
250
+
If the problem persists, feel free to [contact support](FAQ.md#i-have-another-questionproblem).
251
+
229
252
## Other
230
253
231
254
### Can I share my account with someone else?
@@ -350,6 +373,32 @@ See also: [Your UGent home drive and shares](running_jobs_with_input_output_data
350
373
{% endif %}
351
374
352
375
376
+
### My home directory is (almost) full, and I don't know why
377
+
378
+
Your home directory might be full without looking like it due to hidden files.
379
+
Hidden files and subdirectories have a name starting with a dot and do not show up when running `ls`.
380
+
If you want to check where the storage in your home directory is used, you can make use of the [`du` command](running_jobs_with_input_output_data.md#check-your-quota) to find out what the largest files and subdirectories are:
381
+
382
+
```shell
383
+
du -h --max-depth 1 $VSC_HOME| egrep '[0-9]{3}M|[0-9]G'
384
+
```
385
+
386
+
The `du` command returns the size of every file and subdirectory in the $VSC_HOME directory. This output is then piped into an [`egrep`](linux-tutorial/beyond_the_basics.md#searching-file-contents-grep) to filter the lines to the ones that matter the most.
387
+
388
+
The `egrep` command will only let entries that match with the specified regular expression `[0-9]{3}M|[0-9]G` through, which corresponds with files that consume more than 100 MB.
389
+
390
+
391
+
### How can I get more storage space?
392
+
393
+
394
+
[By default](running_jobs_with_input_output_data.md#quota) you get 3 GB of storage space for your home directory and 25 GB in your personal directories on both the data (`$VSC_DATA`) and scratch (`$VSC_SCRATCH`) filesystems.
395
+
It is not possible to expand the storage quota for these personal directories.
396
+
397
+
You can get more storage space through a [Virtual Organisation (VO)](running_jobs_with_input_output_data.md#virtual-organisations),
398
+
which will give you access to the [additional directories](running_jobs_with_input_output_data.md#vo-directories) in a subdirectory specific to that VO (`$VSC_DATA_VO` and `$VSC_SCRATCH_VO`).
399
+
The moderators of a VO can [request more storage](running_jobs_with_input_output_data.md#requesting-more-storage-space) for their VO.
400
+
401
+
353
402
### Why can't I use the `sudo` command?
354
403
355
404
When you attempt to use sudo, you will be prompted for a password.
0 commit comments