Code:
sudo nano /etc/modprobe.d/iwlwifi.conf
and paste this
Code:
options iwlwifi bt_coex_active=N
save, close, and reboot. Wifi now works after suspend!
Install the prerequisite packages:
Code:
sudo apt-get install build-essential cdbs dh-make dkms execstack dh-modaliases fakeroot libqtgui4
If you are using the x86_64 architecture (64 bit):
Code:
sudo apt-get install ia32-libs-multiarch:i386 lib32gcc1 libc6-i386
sudo apt-get install ia32-libs
cd /usr ; sudo ln -svT lib /usr/lib64
Download the latest Catalyst package (includes 32-bit and 64-bit)
Create and install the .deb packages
Code:
sudo sh ./amd-driver-installer-12-6-x86.x86_64.run --buildpkg Ubuntu/precise
sudo dpkg -i fglrx*.deb
Generate a generic xorg.conf
Code:
sudo amdconfig --initial -f
Open the /etc/X11/Xsession.d/10fglrx file with root rights :
Code:
gksu gedit /etc/X11/Xsession.d/10fglrx
If you're using a 32bits system add at the end of 4th line this text : "/usr/lib32/dri/" without the quotes. The file should now look like this :
Code:
LIBGL_DRIVERS_PATH=/usr/lib/fglrx/dri
if [ `uname -m` = 'x86_64' ]; then
if [ -d /usr/lib32/fglrx/dri ]; then
LIBGL_DRIVERS_PATH=${LIBGL_DRIVERS_PATH}:/usr/lib32/fglrx/dri:/usr/lib32/dri
if [ ! -z $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:
fi
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}/usr/lib32
export LD_LIBRARY_PATH
fi
fi
export LIBGL_DRIVERS_PATH
If you're using a 64bits system add at the end of 4th line this text : "/usr/lib/x86_64-linux-gnu/dri/" without the quotes. The file should now look like this :
Code:
LIBGL_DRIVERS_PATH=/usr/lib/fglrx/dri
if [ `uname -m` = 'x86_64' ]; then
if [ -d /usr/lib32/fglrx/dri ]; then
LIBGL_DRIVERS_PATH=${LIBGL_DRIVERS_PATH}:/usr/lib32/fglrx/dri:/usr/lib/x86_64-linux-gnu/dri
if [ ! -z $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:
fi
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}/usr/lib32
export LD_LIBRARY_PATH
fi
fi
export LIBGL_DRIVERS_PATH
Now save the file
DO NOT LET UPDATE MANAGER UPDATE YOUR FLGRX DRIVER. You can elect to "lock" the packages using the synaptic package manager (available in the Software Center) to prevent them from showing up in updates.
Bookmarks