diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-05-28 19:57:28 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2023-05-28 19:57:28 -0500 |
commit | 360371a30f5f29ebc24381912a64d149f7703004 (patch) | |
tree | cb7c8ffab181b311f2fec8ee63ce2c4af0b6f4e9 | |
parent | d0da969c43b3963ae20a88884e2fa2f2503172d5 (diff) |
Minor rewording
-rw-r--r-- | chapter08/pkgmgt.xml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chapter08/pkgmgt.xml b/chapter08/pkgmgt.xml index f64778e71..f5e50524b 100644 --- a/chapter08/pkgmgt.xml +++ b/chapter08/pkgmgt.xml @@ -126,14 +126,13 @@ (replace <replaceable>libfoo</replaceable> with the name of the library):</para> -<screen role="nodump"><userinput>grep -l -e '<replaceable>libfoo</replaceable>.*deleted' /proc/*/maps | - tr -cd 0-9\\n | xargs -r ps u</userinput></screen> +<screen role="nodump"><userinput>grep -l '<replaceable>libfoo</replaceable>.*deleted' /proc/*/maps | tr -cd 0-9\\n | xargs -r ps u</userinput></screen> <para> If <application>OpenSSH</application> is being used to access the system and it is linked to the updated library, you must restart the <command>sshd</command> service, then logout, login again, - and rerun the preceding ps command to confirm that nothing is still using the + and run the preceding command again to confirm that nothing is still using the deleted libraries. </para> |