From 360371a30f5f29ebc24381912a64d149f7703004 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Sun, 28 May 2023 19:57:28 -0500 Subject: [PATCH] Minor rewording --- chapter08/pkgmgt.xml | 5 ++--- 1 file 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 libfoo with the name of the library): -grep -l -e 'libfoo.*deleted' /proc/*/maps | - tr -cd 0-9\\n | xargs -r ps u +grep -l 'libfoo.*deleted' /proc/*/maps | tr -cd 0-9\\n | xargs -r ps u If OpenSSH is being used to access the system and it is linked to the updated library, you must restart the sshd 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.