User login |
Ubuntu 10.10 on ASRock X58 Extreme3As a Xmas-gift to myself I decided to replace my 10 year old workstation with a new one. After recommendations from a friend I decided to buy the new computer from Mr. PC Computers. I also enjoy supporting local dealers. The very next day I could collect the computer and once at home I downloaded and installed Ubuntu 10.10 (Maverick Meerkat). Hardware specs and BIOS settings
In the BIOS I selected the predefined BIOS settings for performance and setting the SATA to AHCI. All basic functions worked perfectly out of the box and where I found things not working I had great help from Nei's ASRook X58 Extreme3 and Linux post on AntiNetwork. Here are some more details on how I implemented the tips he gives on Ubuntu 10.10. Auto unload xhci_hcd (USB3) on hibernateSince the xhci_hcd module makes hibernation impossible it need to be unloaded prior to hibernation. This can be done using the Create new file /etc/pm/sleep.d/01_unload_xhci_hcd. #!/bin/sh case "$1" in hibernate) rmmod -f xhci_hcd ;; thaw) modprobe xhci_hcd ;; esac Fixing slow system clockJust as Nei notes the system clock is lagging allot. Using hpet as the clock source fixes this. Edit /etc/default/grub. The run sudo update-grub DVD read errorsI now seen read error on all DVDs I try to rip backup and I've not been able to verify if this is a problem with the chipset or DVD reader.
|