Question:
in ubuntu how do i start it with acpi=off 10 pts?
?
2011-03-16 15:51:14 UTC
when i ran the live cd the only way it would boot is if i had acpi=off got it to run then installed it but it wont load unless acpi is off. how do i turn it off since there are no options like the live cd had please im a linux noob pls help
Five answers:
anonymous
2011-03-16 16:30:22 UTC
This is a common problem, especially if your hardware is a few years old.



Before using the acpi=off option, check the following:



- Make sure you have the most updated version of your BIOS. The motherboard manufacturer should have a website with the files you need. Make sure you follow the instructions EXACTLY and get the correct file.. doing it the wrong way can ruin your motherboard. This fixes most problems of this type (I had this problem myself on one computer).



- If you cannot update your BIOS or it didn't solve the problem, turn off options for ACPI in your BIOS; they may be incompatible with the Linux setup you have. Don't worry, you wont be missing much with this.



- You didn' t provide what version of Ubuntu you are using, but I will assume it is after 9.04. In this case you need to edit your /etc/default/grub file. Look for the line that says :



GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"



and change it to



GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"



after this you will need to run the following command



sudo update-grub



There, you've done it. Obviously you need to be able to get to the command prompt to do this at all; try holding the SHIFT key while booting to get the boot menu; select "recovery mode" from there and select "root".



Good luck.
anonymous
2015-08-07 08:59:56 UTC
This Site Might Help You.



RE:

in ubuntu how do i start it with acpi=off 10 pts?

when i ran the live cd the only way it would boot is if i had acpi=off got it to run then installed it but it wont load unless acpi is off. how do i turn it off since there are no options like the live cd had please im a linux noob pls help
JR_the_postman
2011-03-16 17:46:48 UTC
You do not indicate what version of ubuntu you are using...



I use a 64-bit version of Mepis and i use the LiveCD to make these changes with the Mepis assistants, it is different in Ubuntu... I have also use the liveCD as a super user to edit grub, find it quite easy...



Hope this helps...



Change Boot Options Permanently On An Existing Installation

These instructions only apply to systems that use Grub - Ubuntu's default boot loader.

For Ubuntu 9.10 (Karmic Koala), please see Grub2

https://help.ubuntu.com/community/Grub2



In order to permanently change your boot options, you'll need to edit the /boot/grub/menu.lst file.



Before you begin, open a terminal window and type this command to back up the file with a copy that has the current date and time appended to its name:





sudo cp /boot/grub/menu.lst /boot/grub/menu.lst.`date +~%b-%d-%Y~%T`

If the system or /boot partition has changed and the user suspects the partition is not correctly identified by Grub, run this command to obtain a list of partition UUIDs. Note the system or /boot UUID and compare it to the entry on the kernel's UUID line once the kernel menu is opened:



sudo blkid

Type this command to edit the menu.lst file:





sudo nano /boot/grub/menu.lst

(You can edit this file with any text editor, doesn't have to be nano) Use your arrow keys to move your cursor to the line that starts with "# kopt=".



Add or subtract whichever boot option(s) you'd like to add to the end of the boot command, with a space between each one.



Save the file.



For nano:

Press the Ctrl and o (this is the letter o) keys at the same time. Verify that the filename is correct (edit the filename if it's not) and press the ENTER key to save the file.

Press the Ctrl and x keys at the same time to exit the editor.

Type this command to update the menu entries in the system:





sudo update-grub

The command may present a message indicating that a new configuration file available: "Do you want to keep the existing one for menu.lst". Select Use Package Version. If you select to keep the user modified version, your changes to kopt won't be applied to existing boot options.



Note: If you edit the menu entries directly from Grub and not with a text editor your changes will disappear the next time update-grub is run, for instance or when the kernel or grub packages are updated.



Common Boot Options

This list is not comprehensive but it contains some common boot options. When presented with the text on the screen "boot:" then the boot options below can be given. They must have the kernel name before the option.



Example

Adding the vga=771 option:

boot: /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda1 ro quiet splash

boot: /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda1 ro quiet splash vga=771



Options can be used together such as in this example:

/boot/vmlinuz-2.6.15-26-k7 root=/dev/hda1 ro quiet splash noapic nolapic



Alao note: hda1 could be sda1 on your hardware...



APIC Kernel Options



acpi=off OR noacpi



This parameter disables the whole ACPI system. This may prove very useful, for example, if your computer does not support ACPI or if you think the ACPI implementation might cause some problems (for instance random reboots or system lockups).



JR
anonymous
2016-03-19 06:15:57 UTC
Survey!!!! fun and 10 pts! #4? ok well i've noticed this is my 4th survey woot woot! lol so i'm gonna start countin them! ^_^ Do you prefer scene or emo? Scene Do you like ice cream or frozen yogurt? Fro-yo Do you like the band flyleaf? Don't know them What's ur fav song? Grown Woman, Beyonce Look behind you-what's there? Clothes What was the last thing you were doing? Sleeping When you last watched T.V.-what did you watch? (if you can remember lol) happy feet What's ur fav color? Pick What did you last eat? Ice cream What's something you despise? Closed minds Who is your role model? Beyonce Did you like this survey? Yes :-)
ratter_of_the_shire
2011-03-16 17:13:54 UTC
Hit the e key at the grub menu, and you can add the option in for a single boot.



After that you should look how to edit grub 2 to add in the option.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...