Showing posts with label Driver. Show all posts
Showing posts with label Driver. Show all posts

Thursday, April 11, 2013

How to Solve nVidia Video Card Drivers Problems on Ubuntu 12.10


Ubuntu 12.10 has been released but immediately some users started to complain, and rightly so, because of a problem with the video card drivers. In particular, there seems to be a problem for all those who are in possession of some particular model of nVidia video card : it can happen, in fact, that the desktop does not appear after installing the driver experimental nvidia or even those owners . If you use the Open Source driver , however, everything runs smoothly.

must therefore fall back on the driver Open? It is said, there is a (rather more than one) solution to this problem and we will take back to below.

First solution

Press the key combination Ctrl + Alt + F1 to enter the emergency terminal. Log in with your username and password and type:
sudo apt-get install linux-source
sudo apt-get install linux-headers-3.5.0-17-generic

Now uninstall the current driver:
sudo apt-get remove nvidia-current
If it does not, try the command:
sudo apt-get remove nvidia-current-updates
or:
sudo apt-get remove nvidia-experimental-304
reinstalliamoli now (yes, it looks like a joke almost mockingly):
sudo apt-get install nvidia-current-updates
If everything is successful, type:
sudo shutdown-r now
And when you restart you should have solved!

Second solution

this solution is more immediate. Open the terminal of an emergency, press the key combination Ctrl + Alt + F1 and type:
sudo apt-get install nvidia-current nvidia-settings
sudo mv / etc/X11/xorg.conf / etc/X11/xorg.conf.old
sudo nvidia-xconfig
Now restart the whole typing:
sudo shutdown-r now
I beg you, so let us know if you have solved the problem!

Monday, April 1, 2013

Install Chromium OS on USB Flash Drive with Ubuntu/Linux Mint



This article is for those who want to install and run ChromiumOS onto a USB storage device. Let us see how it can be done with the OS image.

Open the terminal and run these commands to download the ChromiumOS image to your home folder:
mkdir ~/ChromiumOS; cd ~/ChromiumOS
wget -c http://goo.gl/ICSpt -O ChromeOS-Vanilla-3274.0.zip
unzip ChromeOS*.zip
mv ChromeOS*.img ChromeOS.img
Run the following commands and to identify the USB device:
fdisk -l
If you mounted the USB flash drive as /dev/sdb1 on your system.  Use the command and unmount the USB device:
sudo umount /dev/sdb1
Use your USB device name and replace /dev/sdb1
Run the following command to create a bootable USB device with the Chrome OS image. It will delete all data from your USB device.
sudo dd if=ChromeOS.img of=/dev/sdb1 bs=4M
Or
sudo dd if=ChromeOS.img of=/dev/sdb1 oflag=direct
Boot from the Chromium OS USB flash drive after finishing the process. To boot from USB storage devices, you can use the Plop boot loader too. the ChromiumOS VM can download and use from http://goo.gl/G0ZSk when you fail to create a bootable USB stick.

Tuesday, October 23, 2012

Install AMD Catalyst 12.10 Driver On Ubuntu 12.10/12.04/Linux Mint 13



AMD Catalyst 12.10 has just been released which brings some few changes and improvements compared to previous version (12.9). As usual, there is no release notes for the AMD Catalyst 12.10 driver for Linux and to know its effectiveness, the user has to test it. In this article, we will see how to install the driver in Ubuntu 12.10/12.04 and Linux Mint 13 or older.

Current Driver Removal

Open the terminal and issue these commands:

sudo sh /usr/share/ati/fglrx-uninstall.sh

sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev* xorg-driver-fglrx

AMD Catalyst 12.10 Installation

Via the terminal, run these commands:

sudo apt-get install unzip

cd /tmp && wget -c http://goo.gl/Bbeki -O catalyst-12.10-x86.x86_64.zip

unzip catalyst-12.10-x86.x86_64.zip

chmod +x amd-driver-installer-catalyst-12.10-x86.x86_64.run

sudo sh amd-driver-installer-catalyst-12.10-x86.x86_64.run

Then follow setup instructions:



Finally, run this command:

sudo aticonfig --initial -f

If you prefer to install from PPA, you can run these commands:

sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get install fglrx-installer

If you failed in installing the driver, you can check this guide.

Friday, October 19, 2012

Install Nvidia Driver 304.60 In Ubuntu 12.10/12.04/Linux Mint 13



The Nvidia driver 304.60 has been released recently in the Nvidia website. In this tutorial we will help you install it in Ubuntu/Linux Mint. For Ubuntu 12.10  (Quantal Quetzal), the PPA given below doesn't support it so far, but you can install the driver manually as shown below.



 Here are the changes and bug fixes in this latest release:

    Fixed a bug that caused the X server to crash if a display was put into DPMS off mode and subsequently reenabled while screen transformations are in use.
    Fixed a bug that caused the X Resize and Rotate extension to be enabled when Xinerama is enabled. These two X extensions are incompatible and having them both enabled can confuse window managers such as KDE's kwin. RandR is now correctly disabled when Xinerama is enabled.
    Fixed a bug causing OpenGL stereo applications to not work properly when using passive stereo modes 5 through 9 on Quadro Fermi and newer GPUs.
    Updated nvidia-settings to report Dedicated GPU Memory (i.e., the memory dedicated exclusively to the GPU) and Total GPU Memory (i.e., Dedicated GPU Memory plus any TurboCache(TM)-accessible system memory) separately on the GPU information page.
    Added reporting of the current utilization of Dedicated GPU Memory to the GPU information page of nvidia-settings.
    Added support for the "Backlight" RandR output property for configuring the brightness of some notebook internal panels.
    Fixed a bug that prevented the Ubuntu Unity launcher panel from unhiding: https://bugs.launchpad.net/unity/+bug/1057000
    Fixed a bug that caused nvidia-installer to sometimes attempt to write a log file in a nonexistent directory.
    Fixed a bug that caused incorrect input transformation after resizing an NVIDIA X screen with xserver ABI 12 (xorg-server 1.12) or newer.
    Fixed a bug that caused GLX to leak memory when Xinerama is enabled.

Driver Installation (Latest Long Lived Branch version: 304.60)

To install from x-swat PPA for Ubuntu 12.04/Linux Mint 13 or older, run these commands:

sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-current nvidia-settings

Or install manually with these instructions for Ubuntu 12.10 (Quantal Quetzal):

1. Open the terminal and download this file with these commands:

cd && wget http://dl.dropbox.com/u/47950494/upubuntu.com/nvidia-304-60

chmod +x nvidia-304-60

2. Press CTRL+ALT+F3 to enable CLI mode, log in using your username and password, then kill the Xserver with this command:

 sudo service lightdm stop

3. Start the installation of the Nvidia driver 304.60 with this command:

cd && sudo sh nvidia-304-60

4. When the installation is complete, run this command to reboot your system:

sudo reboot

Note: You may also use these instructions to install the driver in GUI mode without the need to kill the Xserver.

You can also check this tutorial which explains how to install the Nvidia driver in Recovery Mode.

Wednesday, October 10, 2012

How To Repair A Failed AMD Catalyst Driver Installation On Ubuntu 12.10/12.04/Linux Mint 13



We have previously seen an article for installing correctly the Nvidia driver under Ubuntu/Linux Mint using Recovery Mode. Today we will focus on AMD drivers in which we will see two methods for fixing an incompatible driver installation of AMD Catalyst driver (12.x) that resulted in system crash, graphics problems, or boot failure.

We will try our best to show you how to install the AMD Catalyst driver correctly on your system without any troubles and I hope this article find your satisfaction. Whether you are working on a laptop or computer, these instructions are workable for the following Linux distributions:


  • Ubuntu 12.10 (Quantal Quetzal)
  • Ubuntu 12.04 (Precise Pangolin)
  • Linux Mint 13 
Method 1

If you are able to reach the login screen, press CTRL+ALT+F2 to enter CLI mode, then enter your login credentials and kill Xserver with this command:

sudo service lightdm stop

Uninstall now the current AMD driver with these commands:

sudo sh /usr/share/ati/fglrx-uninstall.sh

sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev* xorg-driver-fglrx

These commands also allow to delete current AMD driver:

cd /usr/share/ati

sudo sh ./fglrx-uninstall.sh

Let's now install some dependencies with these commands:

sudo apt-get install cdbs fakeroot build-essential dh-make debconf

sudo apt-get install debhelper dkms libqtgui4 libstdc++6 libelfg0 execstack dh-modaliases

For 64-bit systems, you need to install also these dependencies:

sudo apt-get install ia32-libs-multiarch i386 lib32gcc1 ia32-libs libc6-i386 ia32-libs

Now download the latest stable version of AMD driver (currently 12.8) with these commands:

cd ~/; mkdir catalyst12.8; cd catalyst12.8/

wget -c http://goo.gl/ZZkYR -O amd-driver-installer-12-8-x86.x86_64.zip

unzip amd-driver-installer-12-8-x86.x86_64.zip

chmod +x amd-driver-installer-8.982-x86.x86_64.run

Now create Debian packages out of the downloaded *.run file with this command for Ubuntu 12.04 (Precise Pangolin):

sudo sh amd-driver-inst*.run --buildpkg Ubuntu/precise

For Ubuntu 12.10 (Quantal Quetzal), run this command:

sudo sh amd-driver-inst*.run --buildpkg Ubuntu/quantal

At the end of this operation, three deb packages will be created which are:

- fglrx_8.982-0ubuntu1_i386.deb
- fglrx-amdcccle_8.982-0ubuntu1_i386.deb
- fglrx-dev_8.982-0ubuntu1_i386.deb

You can list them in the terminal with this command:

ls *.deb


Install all these deb packages with this command:

sudo dpkg -i *.deb

Then finish the installation with this command:

sudo aticonfig --initial

Reboot now your system:

sudo reboot

To verify if the driver is well installed, run this command:

fglrxinfo

Method 2

If you can't reach the login menu to be able to enter CLI mode, you can use instead the Recovery Mode by following these instructions:

- Hold down the Shift key after powering on your computer or laptop to enable the Grub boot menu and boot into Recovery Mode:


- In the next screen enable networking:


- Select now "Drop to root shell prompt" and press Enter:


- Your filesystem is read-only, to enable read/write permissions, run this command:

mount -rw -o remount /

- Now use all commands given in Method 1 to install the AMD driver.

Sunday, June 17, 2012

Download Nvidia GeForce 302.17 Driver for Linux


Nvidia proudly announced yesterday, June 15th, the immediate availability for download of the 302.17 version of its graphics driver for Linux, Solaris and FreeBSD operating systems.

Nvidia 302.17 video driver brings lots of changes, new features and many improvements over previous versions, which radically improves the overall performance of the driver for Linux systems.

There are too many changes to enumerate here, but if you’re interested in more details about this release, see the complete list of changes in the official changelog.



Download Nvidia Display Driver 302.17 for Linux 32-bit

Download Nvidia Display Driver 302.17 for Linux 64-bit


Download Nvidia Display Driver 302.17 for FreeBSD

Download Nvidia Display Driver 302.17 for FreeBSD 64


Download Nvidia Display Driver 302.17 for Solaris