<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  
  
  <channel>
    <title>chrisjrob: mythbuntu</title>
    <link>https://chrisjrob.com</link>
    <atom:link href="https://chrisjrob.com/tag/mythbuntu/feed/index.xml" rel="self" type="application/rss+xml" />
    <description>GNU Linux, Perl and FLOSS</description>
    <language>en-gb</language>
    <pubDate>Fri, 13 Feb 2026 17:22:31 +0000</pubDate>
    <lastBuildDate>Fri, 13 Feb 2026 17:22:31 +0000</lastBuildDate>
    
    <item>
      <title>Kubuntu Lucid Lynx 10.04 Nvidia Installation</title>
      <link>https://chrisjrob.com/2011/03/04/kubuntu-lucid-lynx-10-04-nvidia-installation/</link>
      <pubDate>Fri, 04 Mar 2011 00:00:00 +0000</pubDate>
      <author>chrisjrob@gmail.com (Chris Roberts)</author>
      <guid>https://chrisjrob.com/2011/03/04/kubuntu-lucid-lynx-10-04-nvidia-installation</guid>
      <description>
       <![CDATA[
         
         <p>After updating my Kubuntu Mythbuntu Home Theatre PC, it
failed to boot into KDE, leaving me instead at a text login.  Fixing the
problem was not difficult, but I actually had problems finding the
correct instructions, and all the instructions that I did find left out
a crucial step.  I thought I would write up what I did largely for my
own benefit:</p>

<!--more-->

<p>Firstly, I tried to load the nvidia module:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>NVIDIA: Failed to load the NVIDIA kernel module. Please check your
system's kernel log for additional error messages.
Failed to load module  "nvidia"
</code></pre></div></div>

<p>Clearly the correct nvidia driver for this kernel is missing.  If it was
working and an update has messed it up for you, then possibly you have
had a kernel update and don’t have the correct kernel headers installed.
 The kernel headers are needed by dkms to rebuild the nvidia module.  If
you’re lucky, you may just be able to install the Linux kernel headers
and reboot:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo apt-get install linux-headers-`uname -r`
$ sudo shutdown -r now
</code></pre></div></div>

<p>With luck dkms will have rebuilt the nvidia module and all will be well.
 If it hasn’t worked, then we need to take more dramatic action.  Let’s
start with an nvidia-free zone:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo apt-get purge nvidia*
</code></pre></div></div>

<p>Next we should ensure that the nouveau module is blacklisted, so that we
do not end up fighting the open source nouveau driver:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo vim /etc/modprobe.d/blacklist.conf
blacklist nouveau
blacklist vga16fb
</code></pre></div></div>

<p>Now we can install the latest nvidia modules:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo apt-get install nvidia-current nvidia-settings nvidia-kernel-common
</code></pre></div></div>

<p>And run the nvidia configurator:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo nvidia-xconfig
</code></pre></div></div>

<p>Finally reboot, and in theory the nvidia module should be rebuilt by
dkms:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ sudo shutdown -r now
</code></pre></div></div>

<p>After the reboot, it may be all working, but we can check that the
nvidia module has been loaded:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ lsmod | grep nvidia
nvidia 10832442 28
</code></pre></div></div>

<p>If this returns nothing, then it has not worked, if it returns “nvidia”
as above, then you should have a working system.</p>


       ]]>
      </description>
    </item>
    
  </channel> 
</rss>
