Enable systemd-baclight@intel_backlight instead of systemd-backlight@acpi_video0
Clash Royale CLAN TAG#URR8PPP
up vote
5
down vote
favorite
I have 2 files in /sys/class/backlight/
- acpi_video0
and intel_backlight
. intel_backlight
is the one which controls my screen brightness (echo/cat), however acpi_video0
is the default.
By default the service systemd-backlight@acpi_video0.service
is enabled which should save/restore brightness at shutdown/startup, but it doesn't work since it points to the wrong file.
When trying to enable systemd-backlight@intel_backlight.service
instead, but I get this message:
The unit files have no [Install] section. They are not meant to be enabled
using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
How do I fix this?
arch-linux systemd
bumped to the homepage by Community⦠yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |Â
up vote
5
down vote
favorite
I have 2 files in /sys/class/backlight/
- acpi_video0
and intel_backlight
. intel_backlight
is the one which controls my screen brightness (echo/cat), however acpi_video0
is the default.
By default the service systemd-backlight@acpi_video0.service
is enabled which should save/restore brightness at shutdown/startup, but it doesn't work since it points to the wrong file.
When trying to enable systemd-backlight@intel_backlight.service
instead, but I get this message:
The unit files have no [Install] section. They are not meant to be enabled
using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
How do I fix this?
arch-linux systemd
bumped to the homepage by Community⦠yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Side question: Is it normal to have two files in/sys/class/backlight/
?
â orschiro
Apr 3 '14 at 6:47
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07
add a comment |Â
up vote
5
down vote
favorite
up vote
5
down vote
favorite
I have 2 files in /sys/class/backlight/
- acpi_video0
and intel_backlight
. intel_backlight
is the one which controls my screen brightness (echo/cat), however acpi_video0
is the default.
By default the service systemd-backlight@acpi_video0.service
is enabled which should save/restore brightness at shutdown/startup, but it doesn't work since it points to the wrong file.
When trying to enable systemd-backlight@intel_backlight.service
instead, but I get this message:
The unit files have no [Install] section. They are not meant to be enabled
using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
How do I fix this?
arch-linux systemd
I have 2 files in /sys/class/backlight/
- acpi_video0
and intel_backlight
. intel_backlight
is the one which controls my screen brightness (echo/cat), however acpi_video0
is the default.
By default the service systemd-backlight@acpi_video0.service
is enabled which should save/restore brightness at shutdown/startup, but it doesn't work since it points to the wrong file.
When trying to enable systemd-backlight@intel_backlight.service
instead, but I get this message:
The unit files have no [Install] section. They are not meant to be enabled
using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...).
How do I fix this?
arch-linux systemd
arch-linux systemd
asked Jan 25 '14 at 15:57
Babken Vardanyan
495615
495615
bumped to the homepage by Community⦠yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community⦠yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Side question: Is it normal to have two files in/sys/class/backlight/
?
â orschiro
Apr 3 '14 at 6:47
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07
add a comment |Â
Side question: Is it normal to have two files in/sys/class/backlight/
?
â orschiro
Apr 3 '14 at 6:47
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07
Side question: Is it normal to have two files in
/sys/class/backlight/
?â orschiro
Apr 3 '14 at 6:47
Side question: Is it normal to have two files in
/sys/class/backlight/
?â orschiro
Apr 3 '14 at 6:47
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
It may be that you're just missing the backlight:
part of the command:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
You may also need to escape the :
, i.e.:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
Since you have two folders in /sys/class/backlight/, you probably have two graphics cards. The Arch wiki suggests adding one of the following kernel parameters in your bootloader:
acpi_backlight=video
acpi_backlight=vendor
acpi_backlight=native
acpi_backlight=none
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
It may be that you're just missing the backlight:
part of the command:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
You may also need to escape the :
, i.e.:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
Since you have two folders in /sys/class/backlight/, you probably have two graphics cards. The Arch wiki suggests adding one of the following kernel parameters in your bootloader:
acpi_backlight=video
acpi_backlight=vendor
acpi_backlight=native
acpi_backlight=none
add a comment |Â
up vote
0
down vote
It may be that you're just missing the backlight:
part of the command:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
You may also need to escape the :
, i.e.:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
Since you have two folders in /sys/class/backlight/, you probably have two graphics cards. The Arch wiki suggests adding one of the following kernel parameters in your bootloader:
acpi_backlight=video
acpi_backlight=vendor
acpi_backlight=native
acpi_backlight=none
add a comment |Â
up vote
0
down vote
up vote
0
down vote
It may be that you're just missing the backlight:
part of the command:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
You may also need to escape the :
, i.e.:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
Since you have two folders in /sys/class/backlight/, you probably have two graphics cards. The Arch wiki suggests adding one of the following kernel parameters in your bootloader:
acpi_backlight=video
acpi_backlight=vendor
acpi_backlight=native
acpi_backlight=none
It may be that you're just missing the backlight:
part of the command:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
You may also need to escape the :
, i.e.:
# systemctl enable systemd-backlight@backlight:intel_backlight.service
Since you have two folders in /sys/class/backlight/, you probably have two graphics cards. The Arch wiki suggests adding one of the following kernel parameters in your bootloader:
acpi_backlight=video
acpi_backlight=vendor
acpi_backlight=native
acpi_backlight=none
answered Nov 1 '15 at 20:21
David Kennedy
86571436
86571436
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f110890%2fenable-systemd-baclightintel-backlight-instead-of-systemd-backlightacpi-video0%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Side question: Is it normal to have two files in
/sys/class/backlight/
?â orschiro
Apr 3 '14 at 6:47
Don't know if it's normal but I have 2 dirs there on my laptop on default install.
â Babken Vardanyan
Apr 3 '14 at 10:07