Battery not detected
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
As the title say my laptop battery is not detected in maverick.
I'm using ubuntu since ever and I've never come across this problem.
I have a msi ms-171f vr705 series and everything is working fine except for the battery.
cat: /proc/acpi/battery/BAT1/info: No such device
battery
add a comment |
As the title say my laptop battery is not detected in maverick.
I'm using ubuntu since ever and I've never come across this problem.
I have a msi ms-171f vr705 series and everything is working fine except for the battery.
cat: /proc/acpi/battery/BAT1/info: No such device
battery
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47
add a comment |
As the title say my laptop battery is not detected in maverick.
I'm using ubuntu since ever and I've never come across this problem.
I have a msi ms-171f vr705 series and everything is working fine except for the battery.
cat: /proc/acpi/battery/BAT1/info: No such device
battery
As the title say my laptop battery is not detected in maverick.
I'm using ubuntu since ever and I've never come across this problem.
I have a msi ms-171f vr705 series and everything is working fine except for the battery.
cat: /proc/acpi/battery/BAT1/info: No such device
battery
battery
edited Dec 27 '10 at 13:52
Stefano Palazzo♦
64.1k33183216
64.1k33183216
asked Oct 15 '10 at 12:37
Px MohamedPx Mohamed
4113
4113
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47
add a comment |
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47
add a comment |
3 Answers
3
active
oldest
votes
Usually the Laptop battery is labelled BAT0. Have you tried running:
cat /proc/acpi/battery/BAT0/info
Also have you tried adding acpi=force onto your GRUB command line?
Open a terminal and run the following commands:
sudo gedit /etc/default/grub- Go to the line
GRUB_CMDLINE_LINUX_DEFAULT=""
- Replace it with
GRUB_CMDLINE_LINUX_DEFAULT="acpi=force"
- Save your changes.
- Run
sudo update-gruband reboot.
(If there is something already within the "" at Step 2 just add a space after it and add acpi=force)
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
add a comment |
I know this question is a bit old, but someone may benefit from my reply. The problem is caused by an upstream kernel bug. You can view the bug report here: https://bugzilla.kernel.org/show_bug.cgi?id=24002. The last version of Ubuntu with a kernel that showed battery information from a MS-171F laptop motherboard was 9.10 (Karmic). Unfortunately, Karmic reached its end of life date in April. Hopefully they will have the problem resolved soon and it will filter down to us in an update.
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
add a comment |
Open a terminal and run the following commands:
sudo gedit /etc/default/grub
Find the line GRUB_CMDLINE_LINUX_DEFAULT=""
Replace it with GRUB_CMDLINE_LINUX_DEFAULT="acpi=noacpi"
Save your changes.
Run sudo update-grub and reboot.
If it doesn't work and you have external graphics like nvdia, then update and make latest version of the driver as default and then check. I have a MSI GF-63 and it worked.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f7485%2fbattery-not-detected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Usually the Laptop battery is labelled BAT0. Have you tried running:
cat /proc/acpi/battery/BAT0/info
Also have you tried adding acpi=force onto your GRUB command line?
Open a terminal and run the following commands:
sudo gedit /etc/default/grub- Go to the line
GRUB_CMDLINE_LINUX_DEFAULT=""
- Replace it with
GRUB_CMDLINE_LINUX_DEFAULT="acpi=force"
- Save your changes.
- Run
sudo update-gruband reboot.
(If there is something already within the "" at Step 2 just add a space after it and add acpi=force)
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
add a comment |
Usually the Laptop battery is labelled BAT0. Have you tried running:
cat /proc/acpi/battery/BAT0/info
Also have you tried adding acpi=force onto your GRUB command line?
Open a terminal and run the following commands:
sudo gedit /etc/default/grub- Go to the line
GRUB_CMDLINE_LINUX_DEFAULT=""
- Replace it with
GRUB_CMDLINE_LINUX_DEFAULT="acpi=force"
- Save your changes.
- Run
sudo update-gruband reboot.
(If there is something already within the "" at Step 2 just add a space after it and add acpi=force)
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
add a comment |
Usually the Laptop battery is labelled BAT0. Have you tried running:
cat /proc/acpi/battery/BAT0/info
Also have you tried adding acpi=force onto your GRUB command line?
Open a terminal and run the following commands:
sudo gedit /etc/default/grub- Go to the line
GRUB_CMDLINE_LINUX_DEFAULT=""
- Replace it with
GRUB_CMDLINE_LINUX_DEFAULT="acpi=force"
- Save your changes.
- Run
sudo update-gruband reboot.
(If there is something already within the "" at Step 2 just add a space after it and add acpi=force)
Usually the Laptop battery is labelled BAT0. Have you tried running:
cat /proc/acpi/battery/BAT0/info
Also have you tried adding acpi=force onto your GRUB command line?
Open a terminal and run the following commands:
sudo gedit /etc/default/grub- Go to the line
GRUB_CMDLINE_LINUX_DEFAULT=""
- Replace it with
GRUB_CMDLINE_LINUX_DEFAULT="acpi=force"
- Save your changes.
- Run
sudo update-gruband reboot.
(If there is something already within the "" at Step 2 just add a space after it and add acpi=force)
edited Apr 25 '15 at 10:26
kiri
19.4k1360106
19.4k1360106
answered Oct 15 '10 at 12:42
James WhiteJames White
1,65121519
1,65121519
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
add a comment |
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
thank you no there is no BAT0 i've always had BAT1 i think the laptop is able to include two batteries via usb or i don't know anyway i'll try to add acpi=force to grub and see how it goes..
– Px Mohamed
Oct 15 '10 at 12:53
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
OK I forgot to add after you make the update run sudo update-grub afterwards
– James White
Oct 15 '10 at 13:01
1
1
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
i tried acpi=force and it didn't fix the problem..i'll apply all the updates and see what happens any suggestions are welcome
– Px Mohamed
Oct 15 '10 at 13:20
add a comment |
I know this question is a bit old, but someone may benefit from my reply. The problem is caused by an upstream kernel bug. You can view the bug report here: https://bugzilla.kernel.org/show_bug.cgi?id=24002. The last version of Ubuntu with a kernel that showed battery information from a MS-171F laptop motherboard was 9.10 (Karmic). Unfortunately, Karmic reached its end of life date in April. Hopefully they will have the problem resolved soon and it will filter down to us in an update.
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
add a comment |
I know this question is a bit old, but someone may benefit from my reply. The problem is caused by an upstream kernel bug. You can view the bug report here: https://bugzilla.kernel.org/show_bug.cgi?id=24002. The last version of Ubuntu with a kernel that showed battery information from a MS-171F laptop motherboard was 9.10 (Karmic). Unfortunately, Karmic reached its end of life date in April. Hopefully they will have the problem resolved soon and it will filter down to us in an update.
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
add a comment |
I know this question is a bit old, but someone may benefit from my reply. The problem is caused by an upstream kernel bug. You can view the bug report here: https://bugzilla.kernel.org/show_bug.cgi?id=24002. The last version of Ubuntu with a kernel that showed battery information from a MS-171F laptop motherboard was 9.10 (Karmic). Unfortunately, Karmic reached its end of life date in April. Hopefully they will have the problem resolved soon and it will filter down to us in an update.
I know this question is a bit old, but someone may benefit from my reply. The problem is caused by an upstream kernel bug. You can view the bug report here: https://bugzilla.kernel.org/show_bug.cgi?id=24002. The last version of Ubuntu with a kernel that showed battery information from a MS-171F laptop motherboard was 9.10 (Karmic). Unfortunately, Karmic reached its end of life date in April. Hopefully they will have the problem resolved soon and it will filter down to us in an update.
answered May 2 '11 at 4:01
ConcertedrxnConcertedrxn
312
312
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
add a comment |
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
2
2
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
actually i didn't have the problem until maverick (it was detected in lucid) anyway i'm still waiting for a fix ....
– Px Mohamed
Jul 3 '11 at 18:15
add a comment |
Open a terminal and run the following commands:
sudo gedit /etc/default/grub
Find the line GRUB_CMDLINE_LINUX_DEFAULT=""
Replace it with GRUB_CMDLINE_LINUX_DEFAULT="acpi=noacpi"
Save your changes.
Run sudo update-grub and reboot.
If it doesn't work and you have external graphics like nvdia, then update and make latest version of the driver as default and then check. I have a MSI GF-63 and it worked.
add a comment |
Open a terminal and run the following commands:
sudo gedit /etc/default/grub
Find the line GRUB_CMDLINE_LINUX_DEFAULT=""
Replace it with GRUB_CMDLINE_LINUX_DEFAULT="acpi=noacpi"
Save your changes.
Run sudo update-grub and reboot.
If it doesn't work and you have external graphics like nvdia, then update and make latest version of the driver as default and then check. I have a MSI GF-63 and it worked.
add a comment |
Open a terminal and run the following commands:
sudo gedit /etc/default/grub
Find the line GRUB_CMDLINE_LINUX_DEFAULT=""
Replace it with GRUB_CMDLINE_LINUX_DEFAULT="acpi=noacpi"
Save your changes.
Run sudo update-grub and reboot.
If it doesn't work and you have external graphics like nvdia, then update and make latest version of the driver as default and then check. I have a MSI GF-63 and it worked.
Open a terminal and run the following commands:
sudo gedit /etc/default/grub
Find the line GRUB_CMDLINE_LINUX_DEFAULT=""
Replace it with GRUB_CMDLINE_LINUX_DEFAULT="acpi=noacpi"
Save your changes.
Run sudo update-grub and reboot.
If it doesn't work and you have external graphics like nvdia, then update and make latest version of the driver as default and then check. I have a MSI GF-63 and it worked.
answered Mar 28 at 15:12
ankitankit
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f7485%2fbattery-not-detected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
acpi does not work for some users. there is a workaround : use a command line askubuntu.com/questions/69556/…
– Suhaib
Nov 24 '12 at 20:47