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
This commit is contained in:
Manjeet Singh Bhatia
2015-08-31 05:30:25 -04:00
parent 8719df3b99
commit 475175dd6e

View File

@@ -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::