FedoraForum.org - Fedora Support Forums and Community
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2014
    Location
    Naples florida
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    nouveau E[ drm] gpu lockup switching to software fbcon"

    Hello I am receiving the message:
    Code:
    nouveau E[ drm] gpu lockup switching to software fbcon"
    My guess is that it is a Nvidia driver issue. I have a Nvidia GTX 590.
    I am very new to Linux so if anyone knows how to fix this issue, please explain in easy to understand language. The operating system freezes after a 30 second period almost everytime i boot the operating system.

  2. #2
    dobbi Guest

    Re: nouveau E[ drm] gpu lockup switching to software fbcon"

    I have the same problem, but I am using a 3.14.8 kernel as my solution,
    Others have removed the Nvidia or Nouveau driver, I think you just need to blacklist it, just don't forget to remake the initframfs there is a copy of it in there that needs to be removed.

    Those work, now for the experimental, you can try acpi=off and see if it works and stop locking up.

  3. #3
    Join Date
    Aug 2011
    Posts
    899
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: nouveau E[ drm] gpu lockup switching to software fbcon"

    This is a common issue with the open-source nouveau driver; there's a good chance the nvidia proprietary driver will work better for you, the nvidia driver is available in the Rpm Fusion repos:
    http://rpmfusion.org/

    after you add the Rpm Fusion repos, you can install the nvidia driver:
    http://rpmfusion.org/Howto/nVidia

  4. #4
    Join Date
    Aug 2011
    Location
    ~
    Posts
    2,113
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: nouveau E[ drm] gpu lockup switching to software fbcon"

    Yup, it does those sort of things now and then.
    Seems to slowly become less though.

  5. #5
    Join Date
    Sep 2014
    Location
    Naples florida
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: nouveau E[ drm] gpu lockup switching to software fbcon"

    can you tell me what I have to do to blacklist the nouveau driver? I saw this code online.

    Verify Nouveau is not loaded

    Code:
    lsmod | grep nouveau
    We need to disable Nouveau. Try a one-time blacklisting from the GRUB command line before creating a permanent blacklist rule.

    In the boot menu, edit the Fedora boot line, and add to the kernel (linux) entry the following string:
    Code:
    rdblacklist=nouveau.
    Resume the boot. If the system enters the graphical session, and the Nvidia driver is properly loaded, then all is well. You will just need to add a manual rule that blacklists Nouveau from loading. Again, this can be done permanently by editing the GRUB command line, or by creating a module blacklist rule. For the first, you have more than extremely detailed GRUB and GRUB2 tutorials to get the desired results.

    For the second, here's how it's done - backup and new initramfs creation:

    Code:
    mv /boot/initramfs-$(uname -r).img \
    /boot/initramfs-$(uname -r).bak.img
    dracut --omit-drivers nouveau \
    /boot/initramfs-$(uname -r).img $(uname -r)
    This method will have to be executed every time there's a kernel update. A more elegant way is a permanent blacklist. Every time dracut runs, it will consult the following list and make the necessary exceptions when creating the initramfs image. Of course, you will need to make the initramfs file the first time after creating the blacklist rule. Personally, I recommend the GRUB change, because it is so very easily reversible. And don't forget backups, because if something goes wrong, you will be able to recover easily.

    Code:
    echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf
    ln -s /etc/modprobe.d/blacklist.conf \
    /usr/lib/modprobe.d/blacklist.conf
    dracut /boot/initramfs-$(uname -r).img $(uname -r)
    Last edited by Greshman; 15th September 2014 at 06:48 PM.

Similar Threads

  1. Replies: 0
    Last Post: 20th October 2013, 07:25 PM
  2. [SOLVED]
    System lockup, suspect GPU driver (nouveau) GTX650
    By AvantGuy in forum Using Fedora
    Replies: 4
    Last Post: 14th October 2013, 04:19 AM
  3. GPU lockup after upgrade from 11 to 12
    By hvniekerk in forum Using Fedora
    Replies: 4
    Last Post: 19th November 2009, 08:31 PM
  4. GPU Lockup
    By duke11235 in forum Fedora 12 Alpha, Beta & Release Candidates
    Replies: 1
    Last Post: 8th November 2009, 02:46 AM
  5. Attempting to install X, failing on kernel-drm-nouveau (no GPU in system)
    By Coma in forum Installation, Upgrades and Live Media
    Replies: 5
    Last Post: 29th March 2009, 03:22 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •