Wow. That was an exciting race. I am happy for Dale Jr and Hendrick Motorsports. I can't belive it.
Mike
Wow. That was an exciting race. I am happy for Dale Jr and Hendrick Motorsports. I can't belive it.
Mike
sudo apt-get install gparted2 Run gparted and remove the second partition 'sda2'
sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.92 Remove restricted driver for Atheros card
wget http://blakecmartin.googlepages.com/ar5007eg-32-0.2.tar.gz3.2 Extract driver
tar xzf ar5007eg-32-0.2.tar-gz3.3 Install kernel headers and build-essential
sudo apt-get install linux-headers-$(uname -r) build-essential3.4 Blacklist the ath_pci driver
echo "blacklist ath_pci" | sudo tee -a /etc/modprobe.d/blacklist3.5 Restart system
cd ar5007eg-32-0.2/ar5007eg/3.7 Load module
sudo ndiswrapper -i net5211.inf
sudo modprobe ndiswrapperAt this point I was able to use wireless!
echo "ndiswrapper" | sudo tee -a /etc/modulesF. Setup Sound
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.15.tar.bz22 Install required tools
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.15.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.15.tar.bz2
sudo apt-get install libncurses5-dev gettext3 Make source directory and copy alsa files to it
sudo mkdir /usr/src/alsa4 Stop alsa
cd /usr/src/alsa
sudo cp ~/alsa* .
sudo tar xjf alsa-driver*.bz2
sudo tar xjf alsa-lib*.tar.bz2
sudo tar xjf alsa-utils*.tar.bz2
sudo /etc/init.d/alsa-utils stop5 Compile alsa-driver
sudo /etc/init.d/alsasound stop
cd alsa-dr*6 Compile alsa-libs
sudo ./configure --with-cards=hda-intel
sudo make
sudo make install
cd ../alsa-lib*7 Compile alsa-utils
sudo ./configure
sudo make
sudo make install
cd ../alsa-utils*8 Restart system
sudo ./configure
sudo make
sudo make install
sudo nano /etc/modprobe.d/alsa-baseAdd this to the end and save:
options snd-hda-intel model=acer10 Run alsaconf
sudo alsaconf11 Copy drivers to correct folder
sudo cp /lib/modules/2.6*/kernel/sound/pci/hda/snd-hda-intel.ko /lib/modules/2.6*/ubuntu/media/snd-hda-intel/and
sudo cp -r /usr/src/alsa/alsa-driver-1.0.15/modules/* /lib/modules/2.6*/kernel/sound/12 Load alsa-driver
sudo depmod -a13 Restart alsa
sudo /etc/init.d/alsa-utils start14 Restart system
sudo /etc/init.d/alsasound start
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup1.2 Edit xorg.conf
sudo nano /etc/X11/xorg.conf1.3 Add the three lines at the end:
2 Save and exit
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
Option "SHMConfig" "on"
Option "MaxTapTime" "0"
Option "HorizScrollDelta" "0"
EndSection
sudo apt-get install compiz emerald2 Configure compiz to work with blacklisted Intel driver
sudo mkdir ~/.config/compiz3 Whichever video player you use must be set to use the 'X11' driver instead of the 'xv' driver. Compiz does not play well with the xv driver, which is one of the reasons the Intel driver was blacklisted. X11 works well here.
sudo touch ~/.config/compiz/compiz-manager
echo "SKIP_CHECKS=yes" | sudo tee -a ~/.config/compiz/compiz-manager