Posts tagged 'ubuntu' – Page 2

NVIDIA driver falling off the bus

NVIDIA driver falling off the bus

After purchasing some new hardware I was disappointed to find that my new machine would crash randomly every hour or so, seemingly more so while playing games. Something I was quite looking forward to doing.

Using Ubuntu 12.04 with an NVIDIA graphics card ...

Internet breaks shortly after startup

Soon after turning on my desktop the internet stops working and I need to reset the modem. The suspected culprit is the modem not supporting IPv6 properly.

Current fix is to set the IPv6 settings to ignore in the connections settings.

Ubuntu Latest Nvidia Drivers

CUDA programming requires the latest nvidia drivers. Manually installing the drivers from the nvidia website causes headaches after a kernel upgrade.

The swat-x PPA provides the latest versions of x.org drivers. These are stable drivers, not bleeding edge.

https://launchpad.net/~ubuntu-x-swat/+archive/x-updates

http://ubuntuforums.org/showpost.php ...

Creating NFS Share on Ubuntu

  1. Install nfs-server

    sudo apt-get install nfs-kernel-server
    
  2. Edit /etc/exports to add share

    /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
    
  3. Export share

    sudo exportfs -a