
Originally Posted by
ceejayf
There seems to be some kind of ACPI issue with Asus laptops and Maverick (10.10).
You can make your machine boot by adding the "acpi=off" parameter to your kernel boot line in grub.
To do so:
1. As the system boots, hold down the shift key to access the grub boot menu.
2. Move the cursor down to the line that begins with 'linux'. In my case, this line is:
linux /boot/vmlinuz-2.6.35.22-generic
root=UUID=1105aad8-65d9-4466-9/fec-da3351344292 ro
quiet splash
3. To the end of this line, add 'acpi-off'. It will now look like this:
linux /boot/vmlinuz-2.6.35.22-generic
root=UUID=1105aad8-65d9-4466-9/fec-da3351344292 ro
quiet splash acpi=off
4. Press Ctrl-x to boot. The system should now boot into Ubuntu.
The downside here is that your laptop will have no ACPI data to work with, so you won't have a battery meter or the ability to hibernate etc.
Also, the change isn't permanent. If you want to make this change permanent, you'll need to update the grub config.
To do this, log into the OS and follow these instructions:
1. Open a terminal
2. Type 'sudo gedit /etc/default/grub' - enter your sudo credentials
3. When gedit appears, the grub config file should be loaded. Find the line in the first section with the text "GRUB_CMDLINE_LINUX_DEFAULT=". Add the 'acpi=off' parameter to the end of the line. The line should now look something like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off"
4. Save the file and close the gedit window. Now run 'sudo update-grub'. Reboot your system.
The ACPI=OFF option should now be part of your permanent boot options.
I'm about to try loading Lucid (10.04) on my machine (An Asus F50sf) - if I'm successful I'll post again.
Bookmarks