• Posts Tagged ‘guide’

    Installing packages from CD in Arch Linux

    by  • March 10, 2011 • Arch Linux, blog1, HowTo, Linux • 6 Comments

    Okay, so you have Arch Linux installed and let’s say you’re wifi isn’t working and you need the package “iwlwifi-3945-ucode-15.32.2.9-2-any.pkg.tar.gz” to fix this but you don’t have a wired connect. What do you do? Blast in your Arch cd, mount it, mount the packages sqfs file and install using pacman. Mount cdrom: mkdir /mnt/cdrom/...

    Read more →

    Realtek RTL8191S in Ubuntu 10.10

    by  • February 15, 2011 • blog1, Linux, Ubuntu • 3 Comments

    Errors: $ sudo ifconfig wlan1 up SIOCSIFFLAGS: Resource temporarily unavailable $ dmesg usb rtl819xU:FirmwareDownload92S(): failed with TCR-Status: a rtl819xU:ERR!!! _rtl8192_up(): initialization is failed! Solution 1: To get this wifi dongle working I simply had to download the above firmware and place it in /lib/firmware/RTL8192SU/ and then reboot my computer. You should check that location...

    Read more →

    ImportError: No module named …

    by  • January 31, 2011 • blog1, Linux, Python, Ubuntu • 0 Comments

    Numeric Error: Traceback (most recent call last):   File "", line 1, in ImportError: No module named Numeric Package: sudo apt-get install python-numeric ImageTk Error: ITraceback (most recent call last):   File "", line 1, in ImportError: No module named ImageTk Package: sudo apt-get install python-imaging-tk

    Read more →

    Auto Sync Kindle in Ubuntu

    by  • January 17, 2011 • blog1, Kindle, Linux, Ubuntu • 1 Comment

    For Christmas I got a Kindle 3 and it was instantly filled with Free eBooks (http://www.gutenberg.org/wiki/Main_Page) and research papers (PDFs). I found myself wanting to be able to automatically synchronize it with a folder on my desktop when it was plugged in and found no one else had posted online how to do this,...

    Read more →

    How To: Fix “No accelerated colorspace conversion found from yuv420p to bgr24.” | OpenCV-2.2.0 & Ubuntu 10.10

    by  • January 9, 2011 • blog1, Linux, OpenCV, Ubuntu • 1 Comment

    No accelerated colorspace conversion found from yuv420p to bgr24. This problem is basically an issue converting YUV to RGB using ffmpeg, in order for it to work ffmpeg needs to be recompiled with x264. To get around it use the following to recompile ffmpeg and OpenCV 2.1/2.2: Follow steps 1-to-4 of FakeOutdoorsman’s...

    Read more →

    How To Fix: fatal error: Python.h: No such file or directory

    by  • January 1, 2011 • blog1, Linux, Ubuntu • 20 Comments

    (cd ./brain/psom && make) make[1]: Entering directory `/home/ubuntu/pyrobot/brain/psom‘ (cd csom_src && make _csom.so) make: Entering directory `/home/ubuntu/pyrobot/brain/psom/csom_src’ gcc -c -g -I -I/usr/include/python2.6 som_pak_wrap.c -I/usr/include/python2.6 -Isom_pak-dev som_pak_wrap.c:125: fatal error: Python.h: No such file or directory compilation terminated. make[2]: *** [som_pak_wrap.o] Error 1 make[2]: Leaving directory `/home/ubuntu/pyrobot/brain/psom/csom_src‘ make: *** Error 2 make: Leaving directory `/home/ubuntu/pyrobot/brain/psom’...

    Read more →