diff --git a/docs/source/programming/Mount-ceph-ubuntu-temp.md b/docs/source/programming/Mount-ceph-ubuntu-temp.md index b6f7fbf..6bae637 100644 --- a/docs/source/programming/Mount-ceph-ubuntu-temp.md +++ b/docs/source/programming/Mount-ceph-ubuntu-temp.md @@ -48,6 +48,9 @@ Remember that because the mounting is temporary, the `ceph` partition will be un You can check that the partition is correctly unmounted by running `df -h` and verifying it does not show in the output. +:::{warning} +Do not use `sudo rm -r /media/ceph-neuroinformatics` to unmount, even though it looks like a local folder. This will delete files on `ceph`! +::: ## References - [Mount network drive under Linux temporarily/permanently](https://www.rz.uni-kiel.de/en/hints-howtos/connecting-a-network-share/Linux/through-temporary-permanent-mounting/mount-network-drive-under-linux-temporarily-permanently) diff --git a/docs/source/programming/Mount-ceph-ubuntu.md b/docs/source/programming/Mount-ceph-ubuntu.md index a8cb02e..d754ef8 100644 --- a/docs/source/programming/Mount-ceph-ubuntu.md +++ b/docs/source/programming/Mount-ceph-ubuntu.md @@ -73,3 +73,7 @@ The next time you reboot your machine, the storage should be mounted automatical To unmount the storage, run `sudo umount /media/ceph-neuroinformatics` (or whatever your mount point is). To permanently unmount the storage, remove the lines you added to the `fstab` file and run `sudo mount -a` again. + +:::{warning} +Do not trust your instincts and use `sudo rm -r /media/ceph-neuroinformatics` to permanently unmount, even though it looks like a local folder. This will delete files on `ceph`! +:::