Skip to content

Commit 0ac0c25

Browse files
authored
bbgui model creation (#188)
1 parent bace909 commit 0ac0c25

File tree

8 files changed

+377
-3
lines changed

8 files changed

+377
-3
lines changed
-21.6 KB
Loading
15 KB
Loading
15.5 KB
Loading
58.1 KB
Loading
5.55 KB
Loading

docs/css/custom_colors.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,16 @@
4848
background-color: rgb(226, 46, 46) !important;
4949
color: black !important;
5050
box-shadow: 0 .1rem 0 .05rem var(--md-typeset-kbd-border-color),0 .1rem 0 var(--md-typeset-kbd-border-color),0 -.1rem .2rem rgb(202, 142, 124) inset;;
51+
}
52+
53+
.yellow-gui-button kbd {
54+
background-color: rgb(255, 201, 0) !important;
55+
color: black !important;
56+
box-shadow: 0 .1rem 0 .05rem var(--md-typeset-kbd-border-color),0 .1rem 0 var(--md-typeset-kbd-border-color),0 -.1rem .2rem rgb(202, 177, 124) inset;;
57+
}
58+
59+
.blue-gui-button kbd {
60+
background-color: rgb(0, 0, 255) !important;
61+
color: rgb(250, 247, 247) !important;
62+
box-shadow: 0 .1rem 0 .05rem var(--md-typeset-kbd-border-color),0 .1rem 0 var(--md-typeset-kbd-border-color),0 -.1rem .2rem rgb(124, 125, 202) inset;;
5163
}

docs/guis/betabeat/model_creation.md

Lines changed: 356 additions & 0 deletions
Large diffs are not rendered by default.

docs/resources/shared_filesystems.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ mkdir ~/mnt/eos && ln -nfs ~/mnt/eos /eos
2525
### Mount network resources (repeat after timeouts and restarts)
2626

2727
```bash
28-
sshfs [email protected]:/user/ ~/mnt/user
29-
sshfs [email protected]:/nfs/ ~/mnt/nfs
30-
sshfs [email protected]:/eos/ ~/mnt/eos
28+
sshfs -o follow_symlinks [email protected]:/user/ ~/mnt/user
29+
sshfs -o follow_symlinks [email protected]:/nfs/ ~/mnt/nfs
30+
sshfs -o follow_symlinks [email protected]:/eos/ ~/mnt/eos
3131
```
3232

33+
??? info "Follow Symlinks"
34+
When mounting to a different location than `/nfs` or `/user` **locally**, one has to set the `follow_symlinks` option
35+
so that symlinks e.g. pointing to a folder somewhere in `/nfs/` (which locally does not exist) are followed correctly, i.e. to the path on the remote machine.
36+
This is not needed when mounting to `/nfs` or `/user` as the symlinks would point to these locations anyway,
37+
but that comes with its own problems, as the mount needs to be done as **root** in these cases and might not be valid for other users.
38+
3339
### If outside of the GPN, jump through `lxplus` to mount `dev3`-folders
3440

3541
```bash

0 commit comments

Comments
 (0)