VidNor

Revision 14 as of 2008-04-12 13:28:38

Clear message

Email: MailTo(vidarno AT SPAMFREE gmail DOT com)

Here I plan on listing all of the hardware I have and how to get it working under Ubuntu/Kubuntu. The information is based on threads on www.ubuntuforums.org , other wiki-pages and my own experimenting.

Ralink Wireless Card w/WPA

This card is supported out-of-the-box in Dapper Drake, and what is even better is that the card's driver supports WPA! Yup, no need to use WPA_supplicant, but you will need to use a GUI that supports WPA (for example KWlan) or make the following changes to /etc/network/interfaces:

auto ra0
iface ra0 inet dhcp
pre-up iwconfig ra0 essid "youressid"
pre-up iwconfig ra0 mode managed
pre-up iwpriv ra0 set Channel=6
pre-up iwpriv ra0 set AuthMode=WPAPSK
pre-up iwpriv ra0 set EncrypType=TKIP
pre-up iwpriv ra0 set WPAPSK="yourpassword"
pre-up iwpriv ra0 set TxRate=0
ifup ra0

The changes you will have to make is to essid and WPAPSK and Channel, but also possibly to EncrypType if you use AES. This setup will make you automatically connect to the specified network on boot, to connect to it now without rebooting issue the following commands:

sudo ifdown ra0
sudo ifup ra0

Congratulations, you should now be connected to your WPA-encryptd wireless network!

Canon i850 Printer (usb)

attachment:IconsPage/IconNote.png The Canon BJC-7000 driver is the easy solution, just choose it from the K->System Settings->Printing->Add new printer menu, but for the best results use the following recipe to use Canon's drivers.

( based mainly on http://ubuntuforums.org/showthread.php?t=10540&highlight=i850 )

You will need alien installed (converts rpm files to deb) and wget (downloads the rpms) and libpng and libtiff3g. Unfortunately libtiff3g is not available in the normal Dapper repositories so we have to add a line to our /etc/apt/sources.list.

sudo echo "deb http://us.archive.ubuntu.com/ubuntu hoary universe" >> /etc/apt/sources.list
sudo apt-get update
sudo apt-get install alien wget libpng3 libtiff3g
sudo ln -s /usr/lib/libpng.so.3 /usr/lib/libpng.so.2

After this is done you should remove the last line from your /etc/apt/sources.list to prevent problems. Currently you need to download rpms and convert to deb-packages to get this printer working. Get the necessary files:

wget ftp://download.canon.jp/pub/driver/bj/linux/bjfiltercups-2.2-1.i386.rpm
wget ftp://download.canon.jp/pub/driver/bj/linux/bjfilterpixus850i-2.2-1.i386.rpm

Then you can convert the files with the following commands:

sudo alien -c bjfilterpixus850i-2.2-1.i386.rpm
sudo alien bjfiltercups-2.2-1.i386.rpm

Install the deb packages:

sudo dpkg -i bjfilterpixus850i_2.2-2_i386.deb
sudo dpkg -i bjfiltercups_2.2-2_i386.deb

You will need to restart CUPS to see the drivers in the list, run the following command:

sudo /etc/init.d/cupsys restart

Now add the printer, in Gnome this is done via System > System Settings > Printing or in KDE via System Settings > Printing. The printer is listed as Canon (brand( and PIXUS-850i (model). Print a test page to ensure it works.

Takushi Miyoshi Repository

Takushi Miyoshi has Debian and Ubuntu Edgy packages in [http://mambo.kuhp.kyoto-u.ac.jp/~takushi/ his repository]. The Debian packages seem to work fine on Ubuntu Dapper (the Edgy packages need a libc6 version not in Dapper). (MartijnVermaat)

Thanks Martijn, I can confirm that the packages install and work in Kubuntu Gutsy, but I was only able to add the printer via http://localhost:631 and not the Printers tool in KDE, as the drivers did not show up in the latter. Tried running "foomatic-cleanupdrivers" and restart cups, but it did not help. Anyone have any ideas why this is?

Fujitsu Siemens Amilo Pi 2515 and Sound (snd-hda-intel, ICH8 Family)

After some upgrades sound has disappeared, the latest fix was to edit /etc/modprobe.d/alsa-base and comment out or remove any other line with "snd-hda-intel model" and replace with:

options snd-hda-intel model=3stack enable=yes
options snd-hda-intel model=auto position_fix=1 enable=yes

After a reboot sound should work again.

Sony Ericsson W810i sync with usb cable (Hardy Beta)

( I have added an entry to the OpenSync-list of working device: http://www.opensync.org/wiki/SE_w810i )

Success! After getting somewhat up-to-date packages from:

deb http://ppa.launchpad.net/debian-opensync/ubuntu hardy main

I followed the instructions from http://www.kenny-d.com/2007/09/04/sync-sony-ericsson-w810i-to-evolution/

msynctool --addgroup W810_to_KDE
msynctool --addmember W810_to_KDE kdepim-sync
msynctool --addmember W810_to_KDE syncml-obex-client
msynctool --configure W810_to_KDE 2

(use configuration found in the link above, including commenting out Notes-database, or you will have to
add "--filter-objtype note"-parameter to the command below)

msynctool --sync W810_to_KDE

That is it!

Legacy-links (maybe useful for someone): http://www.williambrownstreet.net/wordpress/?p=27#more-27 http://www.nabble.com/irmc-(with-0.22),-Cannot-connect-via-OBEX-td15359663.html


CategoryHomepage