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 a0a64b899..8b0ad56d7 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -60,7 +60,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 @@ -86,20 +86,20 @@ the <command>sed</command> given below:</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> <para>The <parameter>-D</parameter> option of the <command>useradd</command> program requires the <filename 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> |