• Support: PRIME: is it supported? no

    What happens if you see the error message “PRIME: is it supported? no” in the terminal when launching nvidia-settings application to configure your NVIDIA card on your Optimus system?

    Most probably there has been some issues when updating the driver or wrong configuration. The way to fix this is quite simple (tested on Ubuntu and Lubuntu 14.04):

    First of all let’s remove NVIDIA drivers:
    sudo apt-get purge bumblebee*
    sudo apt-get purge nvidia-*

    Then reboot the computer and install the latest version (in my case was nvidia-331-updates):

    sudo apt-get install nvidia-331-updates

    this will install nvidia-settings and nvidia-prime and reboot one last time – your configuration is now correct!

  • Tutorial: Create Bootable USB to upgrade your BIOS (Linux)

    Let’s say that you need to update your BIOS to fix a specific issue or just because you just want to update it or because you want to install a cool mod… In any case, if your machine requires a MS-DOS bootable device to upgrade your BIOS and you are using a Linux distribution, you will be able to create one in just a few steps (tested on Lubutu 14.04):

    1. take an USB stick and plug into your PC

    2. by typing dmesg you will be able to see which is the device name of your USB (as it will appear at the end of the output:

    ie. [ 6801.937032]  sdb: sdb1 <– this means that our device is called /dev/sdb

    3. now make sure you have qemu installed on your system:

    sudo apt-get install qemu

    4. now I guess you have some ms-dos disks around – but no floppy drive right? This means that you’ll have to download a copy of the ms-dos version you own from the internet in img format (any search engine is your friend here)

    5. assuming that the file you’ve downloaded is called “msdos622.img” and it’s saved in a folder called /home/username/dosimage/, we can now build a bootable USB:

    sudo qemu-system-i386 -boot a -fda /home/username/dosimage/msdos622.img -hda /dev/sdb

    6.  MS-DOS should now boot and probably it will just ask you to set a time and date – you can skip this by pressing ENTER when receiving a prompt to update the time/date

    7. now at the DOS prompt type: fdisk

    8. if your USB is already partitioned (and there is a good chance that already is) please follow the instructions on the screen to remove existing partitions (THIS WILL DELETE ANY DATA ON THE USB) and create a new Primary partition

    9. next step is to format the USB:

    format /s c:

    10. Now you can make the USB bootable:

    fdisk /mbr

    Now you can close QEMU and copy from Linux any file you need to update you BIOS and restart the computer to boot from the USB .