diff options
Diffstat (limited to 'chapter06/coreutils.xml')
-rw-r--r-- | chapter06/coreutils.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index e1fe8dca3..3bfeb4ccd 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -89,17 +89,17 @@ groups:</para> <para>Move programs to the locations specified by the FHS:</para> -<screen><userinput>mv /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin -mv /usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,rm} /bin -mv /usr/bin/{rmdir,stty,sync,true,uname} /bin -mv /usr/bin/chroot /usr/sbin</userinput></screen> +<screen><userinput>mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin +mv -v /usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,rm} /bin +mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin +mv -v /usr/bin/chroot /usr/sbin</userinput></screen> <para>Some of the scripts in the LFS-Bootscripts package depend on <command>head</command> and <command>sleep</command>. As <filename class="directory">/usr</filename> may not be available during the early stages of booting, those binaries need to be on the root partition:</para> -<screen><userinput>mv /usr/bin/{head,sleep} /bin</userinput></screen> +<screen><userinput>mv -v /usr/bin/{head,sleep} /bin</userinput></screen> </sect2> |