Thursday, May 21, 2020

How to Start, Stop or Restart Services in Linux Mint 19.3 Tricia

Video Tutorial - https://youtu.be/6Incr-fHYXQ

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Services are essential background processes that are usually run while booting up and shut down with the OS.
Linux Mint is an elegant, easy to use, up to date and comfortable GNU/Linux desktop distribution.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
OS - Linux Mint 19.3 Tricia
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
List all services in Linux Mint - service --status-all

Syntax : - sudo systemctl [action] [service name]

To start a service: sudo systemctl start ufw
To stop a service: sudo systemctl stop ufw
To restart a service: sudo systemctl restart ufw
To check the status of service: sudo systemctl status ufw


Start/Stop/Restart Services with service command on Linux Mint
To start a service: sudo service ufw start
To stop a service: sudo service ufw stop
To restart a service: sudo service ufw restart
To check the status of a service: sudo service ufw status

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment