Unix HowTo: Start / Stop / Restart Network Service Command

To start, stop, or restart network services in Unix, you can use the following commands:

Start network service:

sudo service network-manager start

Stop network service:

sudo service network-manager stop

Restart network service:

sudo service network-manager restart

Note that the exact command may vary depending on the specific distribution and version of Unix you are using.

Leave a Comment