[bootlin/training-materials updates] master: slides/sysdev-block-filesystems: use /mnt for mounting (6fb3f3b7)

Michael Opdenacker michael.opdenacker at bootlin.com
Mon Aug 7 17:10:51 CEST 2023


Repository : https://github.com/bootlin/training-materials
On branch  : master
Link       : https://github.com/bootlin/training-materials/commit/6fb3f3b7d41a1f544bb7a475dbe2d83e5c980854

>---------------------------------------------------------------

commit 6fb3f3b7d41a1f544bb7a475dbe2d83e5c980854
Author: Michael Opdenacker <michael.opdenacker at bootlin.com>
Date:   Mon Aug 7 17:10:51 2023 +0200

    slides/sysdev-block-filesystems: use /mnt for mounting
    
    Instead of /tmp, less standard
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at bootlin.com>


>---------------------------------------------------------------

6fb3f3b7d41a1f544bb7a475dbe2d83e5c980854
 slides/sysdev-block-filesystems/sysdev-block-filesystems.tex | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex b/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
index 63566744..b681b58a 100644
--- a/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
+++ b/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
@@ -360,9 +360,9 @@ major minor #blocks name
     modify its contents from the development workstation, using the
     {\bf loop} mechanism:
   \item Example:\\
-    \code{mkdir /tmp/tst}\\
-    \code{mount -t ext4 -o loop rootfs.img /tmp/tst}
-  \item In the \code{/tmp/tst} directory, one can access and modify
+    \code{mkdir /mnt/test}\\
+    \code{mount -t ext4 -o loop rootfs.img /mnt/test}
+  \item In the \code{/mnt/test} directory, one can access and modify
     the contents of the \code{rootfs.img} file.
   \item This is possible thanks to \code{loop}, which is a kernel
     driver that emulates a block device with the contents of a file.




More information about the training-materials-updates mailing list