Skip to content

Commit e0644a3

Browse files
committed
Merge branch 'main' into mlp-tutorials-update
2 parents b66b0eb + d54335f commit e0644a3

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

docs/guides/terminal.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,24 @@ This documentation is a collection of guides, hints, and tips for setting up you
88

99
Every user has a shell that will be used when they log in, with [bash](https://www.gnu.org/software/bash/) as the default shell for new users at CSCS.
1010

11-
At CSCS the vast majority of users stick with the default `bash`: at the time of writing, of over 1000 users on Daint, over 99% were using bash.
12-
1311
!!! example "Which shell am I using?"
1412

1513
Run the following command after logging in:
1614

1715
```console
18-
$ getent passwd | grep $USER
19-
bcumming:*:22008:1000:Benjamin Cumming, CSCS:/users/bcumming:/usr/local/bin/bash
16+
$ echo $SHELL
17+
/usr/local/bin/bash
2018
```
2119

22-
The last entry in the output points to the shell of the user, in this case `/usr/local/bin/bash`.
23-
2420
!!! tip
2521
If you would like to change your shell, for example to [zsh](https://www.zsh.org), you have to open a [service desk](https://jira.cscs.ch/plugins/servlet/desk) ticket to request the change. You can't make the change yourself.
2622

2723

2824
!!! warning
29-
Because `bash` is used by all CSCS staff and the overwhelming majority of users, it is the best tested, and safest default.
30-
25+
If you are comfortable with another shell (like Zsh or Fish), you are welcome to switch.
26+
Just keep in mind that some tools and instructions might not work the same way outside of `bash`.
27+
Since our support and documentation are based on the default setup, using a different shell might make it harder to follow along or get help.
28+
3129
We strongly recommend against using cshell - tools like uenv are not tested against it.
3230

3331
[](){#ref-guides-terminal-arch}

docs/software/container-engine/run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ There are three ways to do so:
1515
$ srun --environment=./.edf/ubuntu.toml echo "Hello" # from ${HOME}.
1616
```
1717

18-
3. **From EDF search paths**: the name of EDF in the [EDF search path][ref-ce-edf-search-path]. `--environment` also accepts the EDF filename without the `.toml` extension:
18+
3. **From EDF search paths**: the name of EDF in the [EDF search path][ref-ce-edf-search-path]. Notice that in this way, `--environment` accepts the EDF filename **without** the `.toml` extension.
1919

2020
```console
2121
$ srun --environment=ubuntu echo "Hello"

docs/software/sciapps/cp2k.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ transition state optimization using NEB or dimer method. See [CP2K Features] for
1515
[CP2K] is provided on [ALPS][platforms-on-alps] via [uenv][ref-uenv].
1616
Please have a look at the [uenv documentation][ref-uenv] for more information about uenvs and how to use them.
1717

18+
!!! warning "Known issues"
19+
Please check CP2K's [known issues](#known-issues) and whether they are relevant to your work. They may impact your calculations in subtle ways, potentially leading to a waste of resources.
20+
1821
??? note "Changelog"
1922

2023
??? note "2025.1"

0 commit comments

Comments
 (0)