Archive for January, 2010

For some strange reason after I clone my Ubuntu 9.10 linux partition, my swap partition didn’t have UUID anymore and I can not view it via “blkid” and have to mount it to the device path (/dev/sda2) in /etc/fstab
After some googling I found the workaround :

1. View the UUID

cat /etc/initramfs-tools/conf.d/resume

2. Set off swap partition and apply the UUID found at no. 1

sudo su

swapoff -a
mkswap -U $(awk -F”=” ‘{print $3}’ /etc/initramfs-tools/conf.d/resume) /dev/sda2

3. Modify my /etc/fstab so the swap partition part contain the UUID

UUID=7b27ee38-6510-4cfa-9e8e-bc77a5e8ce4e none swap sw 0 0

Just bought a netbook – Axioo Pico DJV 712 – and installed Ubuntu 9.10 Karmic Koala on it. Everything went fine until I tried to connect it to my wireless hotspot – no wireless connection! – my Axioo Pico DJV 712 wireless onboard card didn’t even detected by Ubuntu 9.10.

This is what I found later when I run lspci -knn

0:00.0 Host bridge [0600]: Intel Corporation Mobile 945GME Express Memory Controller Hub [8086:27ac] (rev 03)
Kernel driver in use: agpgart-intel
Kernel modules: intel-agp
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GME Express Integrated Graphics Controller [8086:27ae]$
Kernel driver in use: i915
Kernel modules: i915
00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller$
00:1b.0 Audio device [0403]: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller [8086:27d8] (rev 02)
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel
00:1c.0 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 [8086:27d0] (rev 02)
Kernel driver in use: pcieport-driver
Kernel modules: shpchp
00:1c.1 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 [8086:27d2] (rev 02)
Kernel driver in use: pcieport-driver
Kernel modules: shpchp
00:1c.2 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 [8086:27d4] (rev 02)
Kernel driver in use: pcieport-driver
Kernel modules: shpchp
00:1d.0 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 [8086:27c8] (rev 02)
Kernel driver in use: uhci_hcd
00:1d.1 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 [8086:27c9] (rev 02)
Kernel driver in use: uhci_hcd

00:1d.2 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 [8086:27ca] (rev 02)

Kernel driver in use: uhci_hcd
00:1d.3 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 [8086:27cb] (rev 02)
Kernel driver in use: uhci_hcd
00:1d.7 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller [8086:27cc] (rev 02)
Kernel driver in use: ehci_hcd
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev e2)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge [8086:27b9] (rev 02)
Kernel modules: iTCO_wdt, intel-rng
00:1f.2 IDE interface [0101]: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller [8086:27c4] (rev 02)
Kernel driver in use: ata_piix
00:1f.3 SMBus [0c05]: Intel Corporation 82801G (ICH7 Family) SMBus Controller [8086:27da] (rev 02)
Kernel modules: i2c-i801
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:8172] (rev 10)
04:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [$
Kernel driver in use: r8169
Kernel modules: r8169

Axioo Pico DJV 712 use Realtek 8172 wireless card and ubuntu 9.10 didn’t load a driver for it, google found this for me rtl8172 wireless driver.

This is how I made those driver worked on my Ubuntu 9.10

1. Updated my Ubuntu 9.10 so I can compile the rtl8172 driver

sudo apt-get install build-essential

2. Downloaded the rtl8172 wireless driver

3. Extract it :

tar zxvf rtl8192se_linux_2.6.0010.1012.2009.tar.gz

4. Change directory : 

cd rtl8192se_linux_2.6.0010.1012.2009

5. Compile and Install

make

sudo make install

6. Reboot

Now I have an Axioo Pico DJV 712 with a working wireless onboard card.

Note : for those who need the 64 bit driver here’s the link : rtl8172 64bit driver