mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-18 11:19:19 +01:00
Make /dev/shm mount and umount verbose
Almost all commands in lfs are verbose. Don't know why these ones were not.
This commit is contained in:
parent
c5fe6ee346
commit
e0a942748e
@ -109,7 +109,7 @@ mount -vt tmpfs tmpfs $LFS/run</userinput></screen>
|
||||
<screen><userinput>if [ -h $LFS/dev/shm ]; then
|
||||
mkdir -pv $LFS/$(readlink $LFS/dev/shm)
|
||||
else
|
||||
mount -t tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
|
||||
mount -vt tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
|
||||
fi</userinput></screen>
|
||||
|
||||
</sect2>
|
||||
|
@ -113,7 +113,7 @@
|
||||
<para>Then unmount the virtual file systems:</para>
|
||||
|
||||
<screen><userinput>umount -v $LFS/dev/pts
|
||||
mountpoint -q $LFS/dev/shm && umount $LFS/dev/shm
|
||||
mountpoint -q $LFS/dev/shm && umount -v $LFS/dev/shm
|
||||
umount -v $LFS/dev
|
||||
umount -v $LFS/run
|
||||
umount -v $LFS/proc
|
||||
|
Loading…
Reference in New Issue
Block a user