diff options
Diffstat (limited to 'chapter06/shadow.xml')
-rw-r--r-- | chapter06/shadow.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index 6801c1166..eaf6591a5 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -54,7 +54,7 @@ files:</para> <indexterm zone="shadow-limits-login_access"><primary sortas="e-/etc/limits">/etc/limits</primary></indexterm> <indexterm zone="shadow-limits-login_access"><primary sortas="e-/etc/login.access">/etc/login.access</primary></indexterm> -<screen><userinput>cp etc/{limits,login.access} /etc</userinput></screen> +<screen><userinput>cp -v etc/{limits,login.access} /etc</userinput></screen> <para id="shadow-login_defs">Instead of using the default <emphasis>crypt</emphasis> method, use the more secure <emphasis>MD5</emphasis> method of password @@ -74,13 +74,13 @@ file while copying it to its destination:</para> <para>Move a misplaced program to its proper location:</para> -<screen><userinput>mv /usr/bin/passwd /bin</userinput></screen> +<screen><userinput>mv -v /usr/bin/passwd /bin</userinput></screen> <para>Move Shadow's libraries to more appropriate locations:</para> -<screen><userinput>mv /lib/libshadow.*a /usr/lib -rm /lib/libshadow.so -ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> +<screen><userinput>mv -v /lib/libshadow.*a /usr/lib +rm -v /lib/libshadow.so +ln -sfv ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> <beginpage/> @@ -89,7 +89,7 @@ ln -sf ../../lib/libshadow.so.0 /usr/lib/libshadow.so</userinput></screen> class="directory">/etc/default</filename> directory for it to work properly:</para> -<screen><userinput>mkdir /etc/default</userinput></screen> +<screen><userinput>mkdir -v /etc/default</userinput></screen> </sect2> |