Linux Mint 19.1 BETA service management? [on hold]
up vote
1
down vote
favorite
How to figure which system Linux Mint 19.1 BETA is? sysv
? upstart
?
And how to manage i.e. enable/disable services, start/stop?
I had problems with 17.3 because it was using both and couldn't manage the services.
Now I switched to 19.1 and want to figure it once and for all.
linux-mint services
New contributor
put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
1
down vote
favorite
How to figure which system Linux Mint 19.1 BETA is? sysv
? upstart
?
And how to manage i.e. enable/disable services, start/stop?
I had problems with 17.3 because it was using both and couldn't manage the services.
Now I switched to 19.1 and want to figure it once and for all.
linux-mint services
New contributor
put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
How to figure which system Linux Mint 19.1 BETA is? sysv
? upstart
?
And how to manage i.e. enable/disable services, start/stop?
I had problems with 17.3 because it was using both and couldn't manage the services.
Now I switched to 19.1 and want to figure it once and for all.
linux-mint services
New contributor
How to figure which system Linux Mint 19.1 BETA is? sysv
? upstart
?
And how to manage i.e. enable/disable services, start/stop?
I had problems with 17.3 because it was using both and couldn't manage the services.
Now I switched to 19.1 and want to figure it once and for all.
linux-mint services
linux-mint services
New contributor
New contributor
edited yesterday
Vlastimil
7,6121258132
7,6121258132
New contributor
asked 2 days ago
user1019129
1083
1083
New contributor
New contributor
put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
To stop a service:
sudo service NAME stop
To start a service:
sudo service NAME start
To disable a service:
sudo systemctl disable NAME
To enable a service:
sudo systemctl enable NAME
There are always more ways around. I showed you just what you asked for in one possible way.
Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.
I'd recommand thesystemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world
– Kiwy
16 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
To stop a service:
sudo service NAME stop
To start a service:
sudo service NAME start
To disable a service:
sudo systemctl disable NAME
To enable a service:
sudo systemctl enable NAME
There are always more ways around. I showed you just what you asked for in one possible way.
Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.
I'd recommand thesystemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world
– Kiwy
16 hours ago
add a comment |
up vote
0
down vote
accepted
To stop a service:
sudo service NAME stop
To start a service:
sudo service NAME start
To disable a service:
sudo systemctl disable NAME
To enable a service:
sudo systemctl enable NAME
There are always more ways around. I showed you just what you asked for in one possible way.
Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.
I'd recommand thesystemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world
– Kiwy
16 hours ago
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
To stop a service:
sudo service NAME stop
To start a service:
sudo service NAME start
To disable a service:
sudo systemctl disable NAME
To enable a service:
sudo systemctl enable NAME
There are always more ways around. I showed you just what you asked for in one possible way.
Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.
To stop a service:
sudo service NAME stop
To start a service:
sudo service NAME start
To disable a service:
sudo systemctl disable NAME
To enable a service:
sudo systemctl enable NAME
There are always more ways around. I showed you just what you asked for in one possible way.
Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.
answered 2 days ago
Vlastimil
7,6121258132
7,6121258132
I'd recommand thesystemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world
– Kiwy
16 hours ago
add a comment |
I'd recommand thesystemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world
– Kiwy
16 hours ago
I'd recommand the
systemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world– Kiwy
16 hours ago
I'd recommand the
systemctl start [service name]
instead of the old service command which will probably be deprecated as systemd is taking over the linux world– Kiwy
16 hours ago
add a comment |