Centos 7.3 Installed
-
If nothing else, get off of 7.3 and move to 7.4. You can check the battery from the cli by typing
acpi
. If that works, it's probably whatever KDE is using for measuring the battery doesn't work with your system. -
@stacksofplates for acpi "command not found" is the error
-
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
-
@stacksofplates No package acpi is the error i am getting
-
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
The package has one more letter in the name. Should be this...
yum install acpid
Then you can fire it up like this...
systemctl start acpid systemctl enable acpid
-
@scottalanmiller said in Centos 7.3 Installed:
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
The package has one more letter in the name. Should be this...
yum install acpid
Then you can fire it up like this...
systemctl start acpid systemctl enable acpid
Installation done but error comes
[root@localhost ~]# sysctl start acpid
sysctl: cannot stat /proc/sys/start: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]# sysctl enable acpid
sysctl: cannot stat /proc/sys/enable: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]# -
@scottalanmiller said in Centos 7.3 Installed:
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
The package has one more letter in the name. Should be this...
yum install acpid
Then you can fire it up like this...
systemctl start acpid systemctl enable acpid
ah my bad, posted in a hurry. Sorry about that.
-
@lakshmana said in Centos 7.3 Installed:
@scottalanmiller said in Centos 7.3 Installed:
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
The package has one more letter in the name. Should be this...
yum install acpid
Then you can fire it up like this...
systemctl start acpid systemctl enable acpid
Installation done but error comes
[root@localhost ~]# sysctl start acpid
sysctl: cannot stat /proc/sys/start: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]# sysctl enable acpid
sysctl: cannot stat /proc/sys/enable: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]#It's
systemctl
notsysctl
. Two different things. -
@stacksofplates Done
-
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@scottalanmiller said in Centos 7.3 Installed:
@stacksofplates said in Centos 7.3 Installed:
@lakshmana said in Centos 7.3 Installed:
@stacksofplates for acpi "command not found" is the error
You'll have to install it.
yum install acpi
The package has one more letter in the name. Should be this...
yum install acpid
Then you can fire it up like this...
systemctl start acpid systemctl enable acpid
Installation done but error comes
[root@localhost ~]# sysctl start acpid
sysctl: cannot stat /proc/sys/start: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]# sysctl enable acpid
sysctl: cannot stat /proc/sys/enable: No such file or directory
sysctl: cannot stat /proc/sys/acpid: No such file or directory
[root@localhost ~]#It's
systemctl
notsysctl
. Two different things.Thanks