Skip to main content
Topic: Help please with systemctl command (Read 266 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Help please with systemctl command

Please help me, I wanted to install Budgie GUI and this requires the following commands:
$ sudo systemctl start lxdm.service
$ sudo systemctl enable lxdm.service
 What to do, I do not know, thanks in advance for the help


Re: Help please with systemctl command

Reply #2
Please help me, I wanted to install Budgie GUI and this requires the following commands:
$ sudo systemctl start lxdm.service
$ sudo systemctl enable lxdm.service
 What to do, I do not know, thanks in advance for the help

Ok... Now I'm confused
Supercalifragilisticexpialidocious

 

Re: Help please with systemctl command

Reply #3
Make sure you first install the accompanying service package. For LXDM on Artix with S6, that would be lxdm-s6.
Then, to start the service, run:
Code: [Select]
sudo s6-rc start lxdm

To 'enable' the service (to start on system boot), I believe you need to create a file with the service name in the appropriate directory:
Code: [Select]
sudo touch /etc/s6/adminsv/default/contents.d/lxdm

All files in that contents.d directory correspond to service names that will be started during system boot. Remove it again to 'disable' it.