From 475175dd6ee082e9ccf5dde63f8f6af471dbaa16 Mon Sep 17 00:00:00 2001 From: Manjeet Singh Bhatia Date: Mon, 31 Aug 2015 05:30:25 -0400 Subject: [PATCH] Change grep option dev-build-atomic-image.rst This patch adds ":" in matching port 80 to check what processes are running on port 80. This is needed because if you do just grep 80 then lot of processes having port like 6080 are in result list. Adding ":" will make list shorter and easy to scan. Change-Id: I05b35ae65c8b90cf35d33bc258bb464905fe8d0d Closes-Bug: #1490667 --- doc/source/dev/dev-build-atomic-image.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/dev/dev-build-atomic-image.rst b/doc/source/dev/dev-build-atomic-image.rst index a7e72210eb..540dfadc3a 100644 --- a/doc/source/dev/dev-build-atomic-image.rst +++ b/doc/source/dev/dev-build-atomic-image.rst @@ -74,7 +74,7 @@ address is already in use. Verify that port tcp/80 is vacant by running this command:: - sudo netstat -antp | grep 80 + sudo netstat -antp | grep :80 The output should show no process on port 80. For example, if apache is using port 80, you would see something like::