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:
Pierre Labastie 2023-09-12 18:54:01 +02:00
parent c5fe6ee346
commit e0a942748e
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ mount -vt tmpfs tmpfs $LFS/run</userinput></screen>
<screen><userinput>if [ -h $LFS/dev/shm ]; then <screen><userinput>if [ -h $LFS/dev/shm ]; then
mkdir -pv $LFS/$(readlink $LFS/dev/shm) mkdir -pv $LFS/$(readlink $LFS/dev/shm)
else else
mount -t tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm mount -vt tmpfs -o nosuid,nodev tmpfs $LFS/dev/shm
fi</userinput></screen> fi</userinput></screen>
</sect2> </sect2>

View File

@ -113,7 +113,7 @@
<para>Then unmount the virtual file systems:</para> <para>Then unmount the virtual file systems:</para>
<screen><userinput>umount -v $LFS/dev/pts <screen><userinput>umount -v $LFS/dev/pts
mountpoint -q $LFS/dev/shm &amp;&amp; umount $LFS/dev/shm mountpoint -q $LFS/dev/shm &amp;&amp; umount -v $LFS/dev/shm
umount -v $LFS/dev umount -v $LFS/dev
umount -v $LFS/run umount -v $LFS/run
umount -v $LFS/proc umount -v $LFS/proc