diff options
Diffstat (limited to 'chapter06/readline.xml')
-rw-r--r-- | chapter06/readline.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chapter06/readline.xml b/chapter06/readline.xml index 482c356a3..e437e3adc 100644 --- a/chapter06/readline.xml +++ b/chapter06/readline.xml @@ -53,6 +53,11 @@ sometimes will only show 33 characters on a line and then wrap to the next line. <screen><userinput>mv /lib/lib{readline,history}.a /usr/lib</userinput></screen> +<para>Now we will remove the old, .so files in /lib and relink them into /usr/lib.</para> + +<screen><userinput>rm /lib/lib{readline,history}.so +ln -sf ../../lib/libreadline.so.5 /usr/lib/libreadline.so +ln -sf ../../lib/libhistory.so.5 /usr/lib/libhistory.so</userinput></screen> </sect2> |