1 0 Tag Archives: Ubuntu
post icon

Enabling webcam support for kernel 2.6.31.6 (Karmic)

I refer to my previous post about Karmic’s kernel not detecting webcam by default. To enable this feature, you’ll have to make changes to the kernel configuration before actually installing. However, don’t worry if you have already compiled the kernel; it’s still possible to re-configure and re-compile the kernel with the new settings you’re about to see.

Follow the steps in my previous post. But when you get to the configuration step, i.e.

make menuconfig

make gconfig

make kconfig

you’ll need to go Device drivers > Multimedia support > Video capture adapters > V4L USB devices and enable support for the corresponding webcam. Since I owned a Logitech Quickcam, the support that I had to enable was the GSPCA options (all SPCAXXX USB Camera Drivers). However, I read somewhere that SPCA561 support is sufficient. The following is the output of `lsusb | grep -i quickcam` on my machine.

Bus 001 Device 005: ID 046d:09c1 Logitech, Inc. QuickCam Deluxe for Notebooks

Screenshot of the config option after enabling webcam support.

Screenshot

Then, just do the rest of the kernel setup and you’ll end up with a kernel image with webcam support. Good luck!

  • Share/Bookmark
Read full story »
post icon

Slapping in Karmic’s kernel into Jaunty, flawlessly

Warning: Jaunty might no longer detect your webcam after the installation. That was what happened to me. If you’re a heavy webcam user and can’t give up video chatting in Skype or Empathy, you can safely skip this post.

Here’s the latest hybrid I’ve done. If for one reason or another you’re still refusing to upgrade to Karmic, you might be interested in splicing in Karmic’s kernel (2.6.31.6) into Jaunty. I’ve tried it and worked flawlessly, but the performance boosts can rival that of Karmic.

Follow the steps below:

  1. Click this link and download the full version of Karmic’s kernel. It should be in .tar.bz2 extension. At the time of writing, the latest stable version is 2.6.31.6 and that was what I tried out in Jaunty. You’re free to try later ones if you wish.
  2. Place it somewhere in your directory and untar it with the following command:

    tar xjvf linux-2.6.31.6.tar.bz2 -C /usr/src

    This will unpack the file into your /usr/src folder as linux-2.6.31.6 folder.

  3. Depending on your machine, you might need to install additional libraries before you can proceed. In my case, I needed the GCC compiler and three additional development packages as follows:

    sudo apt-get install gcc libgtk2.0-dev libglib2.0-dev libglade2-dev

  4. cd into linux-2.6.31.6 folder and the first command if you’re running GNOME, or the second one if KDE.

    make gconfig
    make xconfig

    The above commands serve as configuration tools if you’re interested in adjusting kernel’ options (over 1,000!). Otherwise you can skip this step.

  5. Compile the kernel image. This is the fun part, as it may take hours, so make time!

    make

  6. Compile the kernel modules. Hopefully this should only take seconds.

    make modules

  7. Install the kernel modules as sudo.

    sudo make modules_install

  8. Install the kernel itself.

    make install

  9. After the above step, you should be able to find three files in your /boot directory: System.map-2.6.31.6, config-2.6.31.6, vmlinuz-2.6.31.6
  10. You now need to create an initrd kernel image to boot Jaunty with. This can easily be done by issuing the following command in your /boot directory.

    sudo mkinitramfs -o initrd.img-2.6.31.6 2.6.31.6

    In case you’re wondering why the command is called mkinitramfs instead of mkinitrd, the latter has been deprecated, so don’t use the old one.

  11. That should take care of the kernel installation. As a last step, you’ll need to modify your GRUB menu to point to the new kernel image.

    sudo gedit /boot/grub/menu.lst

  12. Add the following lines into the file.

    title Ubuntu 9.04, kernel 2.6.31.6
    uuid zzzzzzzzz
    kernel /boot/vmlinuz-2.6.31.6 root=UUID=zzzzzzzzz ro quiet splash
    initrd /boot/initrd.img-2.6.31.6
    quiet

    Make you sure replace zzzzzzzzz with your uuid that you can find in the file.

  13. Once that’s done, reboot the system. Find the kernel image in the GRUB menu and boot into it. Enjoy!
  • Share/Bookmark
Read full story »
post icon

Trying XBMC Media Center Inside Ubuntu

I just realized that I missed a lot of new things while I’m gone for a few days. I just found a cool media center program that you can try inside your ubuntu! I will give a review and installation method for this program. Please do read and please fill the comment form if you have any opinion with this program, I would love to see it :=) .

(more…)

  • Share/Bookmark
Read full story »
17. Nov, 2008
post icon

Change default apache port number for HTTP Server

My friend just requested a post for me to change the apache port number for HTTP Server, and now I will give you all a tutorial about this stuff.

We all know that as default the Apache HTTP Server will ping to port number 80 . What we have to do when a situation of changing this post number comes? Lets see some simple steps for this…

(more…)

  • Share/Bookmark
Read full story »
13. Nov, 2008
post icon

Install OpenOffice 3.0 inside your Ubuntu 8.10!


Somehow, The Ubuntu Team has decided not to add the latest office products from Sun Microsystem. It’s because 3.0 release schedule has slipped quite a bit. Just like The Ubuntu Team has said in this site . Well, that’s not a big problem! I’m going to give you an easy method to install OpenOffice 3.0. Please do follow this simple tutorial.

(more…)

  • Share/Bookmark
Read full story »
04. Nov, 2008
Page 1 of 12 12345»Next...Last »