Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/assets/images/betabeat_gui/model_creation_lhc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/betabeat_gui/rbac.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions docs/css/custom_colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,16 @@
background-color: rgb(226, 46, 46) !important;
color: black !important;
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;;
}

.yellow-gui-button kbd {
background-color: rgb(255, 201, 0) !important;
color: black !important;
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;;
}

.blue-gui-button kbd {
background-color: rgb(0, 0, 255) !important;
color: rgb(250, 247, 247) !important;
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;;
}
356 changes: 356 additions & 0 deletions docs/guis/betabeat/model_creation.md

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions docs/resources/shared_filesystems.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,17 @@ mkdir ~/mnt/eos && ln -nfs ~/mnt/eos /eos
### Mount network resources (repeat after timeouts and restarts)

```bash
sshfs [email protected]:/user/ ~/mnt/user
sshfs [email protected]:/nfs/ ~/mnt/nfs
sshfs [email protected]:/eos/ ~/mnt/eos
sshfs -o follow_symlinks [email protected]:/user/ ~/mnt/user
sshfs -o follow_symlinks [email protected]:/nfs/ ~/mnt/nfs
sshfs -o follow_symlinks [email protected]:/eos/ ~/mnt/eos
```

??? info "Follow Symlinks"
When mounting to a different location than `/nfs` or `/user` **locally**, one has to set the `follow_symlinks` option
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.
This is not needed when mounting to `/nfs` or `/user` as the symlinks would point to these locations anyway,
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.

### If outside of the GPN, jump through `lxplus` to mount `dev3`-folders

```bash
Expand Down