Recent changes
Jump to navigation
Jump to search
Track the most recent changes to the wiki on this page.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
13 May 2026
| m 16:49 | Data Transfer/Rclone diffhist +686 H Schumacher talk contribs (Reordered remote setup options) | ||||
| m 16:42 | Data Transfer diffhist +40 H Schumacher talk contribs (Added ssh key info.) | ||||
| m 16:10 | Data Transfer/SSHFS diffhist +90 H Schumacher talk contribs (Rclone link for 2fa cases.) | ||||
| m 15:46 | SDS@hd/Access diffhist +116 H Schumacher talk contribs (Clarified username and password.) | ||||
| m 10:23 | BwUniCluster3.0/Hardware and Architecture/Filesystem Details diffhist +24 A Flachmueller talk contribs (→Workspaces) | ||||
12 May 2026
| m 18:02 | NEMO2 diffhist +15 M Janczyk talk contribs | ||||
| m 17:58 | NEMO2/Workspaces/Advanced Features diffhist +6,358 M Janczyk talk contribs | ||||
|
|
m 17:37 | NEMO2/Workspaces 4 changes history −3,267 [M Janczyk (4×)] | |||
| m |
|
17:37 (cur | prev) −20 M Janczyk talk contribs | |||
| m |
|
17:20 (cur | prev) +179 M Janczyk talk contribs | |||
| m |
|
16:15 (cur | prev) +181 M Janczyk talk contribs | |||
| m |
|
16:08 (cur | prev) −3,607 M Janczyk talk contribs | |||
|
|
16:13 | (Deletion log) [M Janczyk (12×)] | |||
|
|
16:13 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/Sharing (content was: "= Cooperative Usage (Group Workspaces and Sharing) = When working in teams, workspaces can be shared in multiple ways. <div style="border: 3px solid #dc3545; padding: 15px; background-color: #f8d7da; margin: 10px 0;"> '''WARNING: NEVER use chmod 777 or a+rwx on workspaces!''' Do '''NOT''' make your workspace readable or writable by everyone (<tt>chmod 777</tt>, <tt>ch...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:13 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/Best Practices (content was: "= Best Practices and Recommendations = == For All Users == # '''Set up ~/.ws_user.conf''' - Configure default reminder timing, duration, and groupname to avoid typing them repeatedly (see Reminders & Configuration) # '''Email reminders are automatic''' - Notifications are sent automatically using your identity provider email;...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:12 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/Quotas (content was: "= Quotas & Limits = == Cluster-Specific Workspace Limits == Each cluster has different workspace policies and quotas: {| class="wikitable" |- !style="width:15%" | Cluster !style="width:15%" | Default Lifetime !style="width:15%" | Max Lifetime !style="width:15%" | Max Extensions !style="width:20%" | Storage Quota !style="width:20%" | File Limit (Inodes) |- |bwUniCluster 3.0 |1 day |60 days |3 times |40 TiB |20 million files |- |JUSTUS 2 |7 days |90 days |Unlimited |20 TiB |5...") | ||||
|
|
16:12 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/Filesystems (content was: "= Multiple Filesystem Locations = '''Most users don't need special filesystem options.''' On all clusters, workspaces are created on the default high-performance filesystem without any options - this works for standard I/O workloads. == Do I Need the -F Option? == '''For standard I/O (large files, sequential access):''' * '''All clusters:''' Just use <tt>ws_allocate m...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:12 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/Reminders (content was: "= Getting Reminders = {| class="wikitable" |- !style="width:40%" | Works on cluster !style="width:10%" | bwUC 3.0 !style="width:10%" | BinAC2 !style="width:10%" | Helix !style="width:10%" | JUSTUS 2 !style="width:10%" | NEMO2 |- |Email reminders |style="background-color:#90EE90; text-align:center;" | ✓ |style="background-color:#90EE90; text-align:center;" | ✓ |styl...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:11 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws allocate (content was: "= ws_allocate - Create and Extend Workspaces = Create new workspaces or extend existing ones. This is your primary command for managing workspace lifetime. == Basic Usage == $ ws_allocate myWs 30 # Create workspace for 30 days Returns: Workspace created. Duration is 720 hours. Further extensions available: 3 /work/workspace/scratch/u...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:11 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws list (content was: "= ws_list - List Workspaces = List all your workspaces with details about expiration, location, and available extensions. == Basic Usage == $ ws_list # List all your workspaces Shows workspace ID, location, available extensions, creation date, and remaining time. == Common Use Cases == '''See what expires soon:''' $ ws_list -Rr...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:11 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws find (content was: "= ws_find - Find Workspace Path = <tt>ws_find</tt> prints the full path to a workspace. Essential for scripts and batch jobs. == Basic Usage == $ ws_find myWs # Print workspace path == Use in Scripts == '''Capture path in variable:''' $ WORKSPACE=$(ws_find myProject) $ cd "$WORKSPACE" '''In batch jobs:''' <pre> #!/bin/bash #SBAT...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:11 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws extend (content was: "= ws_extend - Extend Workspace Lifetime = Extend the lifetime of an existing workspace before it expires. == Basic Usage == $ ws_extend myWs 30 # Extend by 30 days from now '''Alternative:''' $ ws_allocate -x myWs 30 # Same result '''Important:''' Each extension consumes one of your available extensions. See Workspaces/A...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:11 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws release (content was: "= ws_release - Release (Delete) Workspace = Release a workspace when you no longer need it. == Syntax == <tt>ws_release [options] workspace_name</tt> == What Happens When You Release == * The workspace ID can be reused immediately * The directory becomes inaccessible to the user * The data is '''not deleted immediately''' - it is moved to a deleted area * '''Release...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:10 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws restore (content was: "= ws_restore - Restore Expired Workspace = For a certain (system-specific) grace time following workspace expiration, a workspace can be restored. == Syntax == <tt>ws_restore [options] workspace_name target_name | -l</tt> == Restore Procedure == '''(1) Display restorable workspaces:''' $ ws_restore -l This will list all workspaces that can still be recovered. Y...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
16:10 M Janczyk talk contribs deleted page NEMO2/Workspaces/Advanced Features/ws register (content was: "= ws_register - Create Workspace Links = Creates symbolic links to all your workspaces in one convenient directory. == Basic Usage == $ ws_register ~/workspaces # Create links in ~/workspaces The command creates subdirectories for each filesystem (e.g., <tt>scratch/</tt>) with links to your workspaces. == Example == $ mkdir -p ~/my_workspaces...", and the only contributor was "M Janczyk" (talk)) | ||||
| m 15:53 | BwUniCluster3.0/Support diffhist −2 A Flachmueller talk contribs | ||||
| 15:48 | BwForCluster User Access Members Uni Konstanz diffhist −14 A Flachmueller talk contribs | ||||
| m 12:39 | Helix/Login diffhist −155 H Schumacher talk contribs (Replaced some points with the "troubleshooting with bwServices" link) | ||||
| m 12:34 | Registration/bwForCluster/Helix diffhist +226 H Schumacher talk contribs (Added too many failed login attempts issue.) | ||||
11 May 2026
| m 14:56 | NEMO2/Containers diffhist −8 M Janczyk talk contribs | ||||
|
|
m 14:51 | NEMO2/Containers/Apptainer 2 changes history +1,123 [M Janczyk (2×)] | |||
| m |
|
14:51 (cur | prev) +211 M Janczyk talk contribs | |||
| m |
|
14:15 (cur | prev) +912 M Janczyk talk contribs | |||
|
|
m 14:50 | NEMO2/Containers/Enroot 2 changes history +1,549 [M Janczyk (2×)] | |||
| m |
|
14:50 (cur | prev) −107 M Janczyk talk contribs | |||
| m |
|
14:23 (cur | prev) +1,656 M Janczyk talk contribs | |||
8 May 2026
| m 16:20 | NEMO2/Containers/Enroot diffhist −130 M Janczyk talk contribs (→Default mounts) | ||||
7 May 2026
|
|
N 19:16 | NEMO2/Containers 3 changes history +1,669 [M Janczyk (3×)] | |||
| m |
|
19:16 (cur | prev) −30 M Janczyk talk contribs (→Note on Docker) | |||
| m |
|
19:04 (cur | prev) +24 M Janczyk talk contribs | |||
| N |
|
13:28 (cur | prev) +1,675 M Janczyk talk contribs (Created page with "NEMO supports two container runtimes for different use cases. Neither requires root privileges and both integrate with the cluster's shared filesystems (<tt>/home</tt>, <tt>/work</tt>). == Overview == {| class="wikitable" |- ! ! Enroot + Pyxis (recommended) ! Apptainer / Singularity |- | '''Image source''' | Docker Hub, NGC, any OCI registry | Apptainer Hub, Docker (via conversion), SIF files |- | '''Image format''' | Squa...") | |||
| N 19:14 | NEMO2/Containers/Apptainer diffhist +4,031 M Janczyk talk contribs (Created page with "'''Apptainer''' (formerly Singularity) is a container runtime designed for HPC systems. It is installed system-wide on NEMO and available without loading a module. == Key properties == * Runs as the invoking user — no root required and no privilege escalation * Uses SIF (Singularity Image Format), a single portable file * Can convert Docker images to SIF at build time * No native Slurm plugin — call <tt>apptainer exec/run</tt> inside your batch script == Image sou...") | ||||
| N 19:05 | NEMO2/Containers/Enroot diffhist +5,586 M Janczyk talk contribs (Created page with "'''Enroot''' is a container runtime developed by NVIDIA that runs OCI/Docker containers without root privileges. On NEMO it is the '''recommended''' container solution and is integrated with Slurm via the '''Pyxis''' SPANK plugin. == How it works == Enroot converts a Docker image into a SquashFS file (<tt>.sqsh</tt>), unpacks it on demand into an overlay filesystem, and runs your workload inside that environment. The Pyxis plugin adds <tt>--container-*</tt> options to...") | ||||
|
|
19:03 | (Deletion log) [M Janczyk (2×)] | |||
|
|
19:03 M Janczyk talk contribs deleted page Containers/Enroot (content was: "'''Enroot''' is a container runtime developed by NVIDIA that runs OCI/Docker containers without root privileges. On NEMO it is the '''recommended''' container solution and is integrated with Slurm via the '''Pyxis''' SPANK plugin. == How it works == Enroot converts a Docker image into a SquashFS file (<tt>.sqsh</tt>), unpacks it on demand into an overlay filesystem, an...", and the only contributor was "M Janczyk" (talk)) | ||||
|
|
19:03 M Janczyk talk contribs deleted page Containers/Apptainer (content was: "'''Enroot''' is a container runtime developed by NVIDIA that runs OCI/Docker containers without root privileges. On NEMO it is the '''recommended''' container solution and is integrated with Slurm via the '''Pyxis''' SPANK plugin. == How it works == Enroot converts a Docker image into a SquashFS file (<tt>.sqsh</tt>), unpacks it on demand into an overlay filesystem, an...", and the only contributor was "M Janczyk" (talk)) | ||||
| m 17:03 | Development/Containers diffhist −21 M Janczyk talk contribs | ||||
| m 16:32 | Helix/bwVisu/JupyterLab diffhist +470 H Schumacher talk contribs (Added hint to load modules first.) | ||||
| m 13:26 | NEMO2 diffhist +18 M Janczyk talk contribs | ||||
| 12:07 | Status diffhist +1 M Carmesin talk contribs | ||||
|
|
12:07 | Main Page 2 changes history +67 [M Carmesin; K Siegmund] | |||
|
|
12:07 (cur | prev) 0 M Carmesin talk contribs | ||||
|
|
10:06 (cur | prev) +67 K Siegmund talk contribs | ||||
| 10:22 | User creation log User account C Krueger talk contribs was created by F Bartusch talk contribs and password was sent by email (Neuer Mitarbeiter in Tübingen) | ||||