G Gabriel9999 Member Joined Mar 12, 2019 Messages 38 Reaction score 4 Credits 130 Apr 29, 2020 #1 How can I stop the networking service by using init.d for the Ubuntu operationg system?
W warlockk Guest Apr 29, 2020 #2 To start networking service, enter : $ sudo /etc/init.d/networking start OR $ sudo service networking start To stop networking service, enter: $ sudo /etc/init.d/networking stop OR $ sudo service networking stop
To start networking service, enter : $ sudo /etc/init.d/networking start OR $ sudo service networking start To stop networking service, enter: $ sudo /etc/init.d/networking stop OR $ sudo service networking stop
samuel tarcin New Member Joined Mar 6, 2019 Messages 24 Reaction score 11 Credits 48 Apr 30, 2020 #3 There are different ways. You can also use the systemd but as you are asking for init.d use the following command. sudo /etc/init.d/networking start Reference: https://www.poftut.com/start-stop-restart-networking-linux/
There are different ways. You can also use the systemd but as you are asking for init.d use the following command. sudo /etc/init.d/networking start Reference: https://www.poftut.com/start-stop-restart-networking-linux/
dos2unix Well-Known Member Joined May 3, 2019 Messages 3,237 Reaction score 2,988 Credits 28,493 Apr 30, 2020 #4 init.d will eventually be deprecated. Any reason it "has" to be init.d ?