Broadcom has released open source Linux Wifi 802.11n drivers

In a welcoming step, Broadcom finally released the the source code of its wifi (802.11n) Linux drivers under open source license. The source code can be found on the Linux staging-next tree at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-next-2.6.git in the in the drivers/staging/brcm80211 directory. The open source drivers will support current chips (BCM4313,BCM43224, BCM43225) and it also acts as a framework to support future chips by Broadcom.

This can be considered as a significant move made by the company, as Broadcom chips are widely in use on laptops and netbooks in the market. Its competitor, Atheros, has already open sourced its drivers back in 2008, which in turn, made Atheros drivers much better supported on various operating system platform compared to Broadcom.

Previously, Linux users with Broadcom chip, have to rely on NDISwrapper utilities to enable the wifi functionality on their laptops.

[source][via]

New features and changes in Ubuntu 10.10 Maverick!

Ubuntu 10.10 (Maverick Meerkat) BETA has been published a few days ago and quite a few brave souls has already upgraded to it. The Beta release gives general idea of what final release will look like when it is due in October 2010. Among of the noticeable features in Meerkat are:

  • GNOME platform 2.31
  • Shotwell replaced F-Spot as photo management software
  • Gwibber release that supports the new Twitter oAuth authentication system
  • Better Ubuntu One integration with the desktop with faster sync speed and added feature that allow users to share music links to Ubuntu One Music
    Store
  • Better Ubuntu One integration with the desktop with faster sync speed and added feature that allow users to share music links to Ubuntu One Music Store
  • Ubuntu Netbook Edition gets the Unity Interface!
  • Includes kernel based on 2.6.35.3 upstream release
  • Includes improved multitouch capability

Other Bugs and Issues

  • Wubi Windows Installer is reported not being able to open Windows’ boot configuration files in some cases, so might not be the best idea to install the Beta release on production Windows PC environment
  • Upgrading previously installed Ubuntu (10.04) that uses Wubi to 10.10 Beta does not work and is not recommended.

Read the full post here : http://www.ubuntu.com/testing/maverick/beta

p/s: As with all other BETA release, it is only recommended for power users and those who are helping Ubuntu community to iron out bugs by filing bug-reports before final-release. It is certainly not recommended for production users, especially to newbies who just want to try out Ubuntu.

Fanatical Linux Fanboys == Fake Linux Users?

A comic strip from Mostly Harmful got me thinking, how many are you so-called Linux fanboys actually use GNU/Linux operating system? Do you own a Windows box? or even Apple Mac OS X? How many are you, Linux advocates use GNU/Linux in your daily lives? Claiming that Linux is great and hating every other operating systems, while still (in secret) using them by choice?

APz Mostly Harmful I hate Linux Fanboys

Thanks APz for the comic strip

How to use GNU Privacy Guard (GPG) – Encrypt, Decrypt, Sign and Verifying identities

GPG or the GNU Privacy Guard is a free and open source software that implements OpenPGP public-key cryptography message format (RFC4880). You can use GPG to encrypt, decrypt, sign and verify files or emails. To use GPG, you need to generate the public-key/private-key pairs in your computer by running this command, and choose the default option


gpg --gen-key

The application will ask you to enter your ID and passphrase, make sure you choose a strong passphrase to guarantee the safety and security of your keys.

Encrypting and Decrypting Files
You can use GPG to encrypt files, it can be only decrypted by those who have your public-key. The command that can be used to encrypt file is :

gpg --out encrypted_file.txt --encrypt original_file.txt

Run this command to decrypt. Files encrypted with private key can only be decrypted with public key and vice-versa.

gpg --out decrypted.txt --decrypt encrypted_file.txt

Signing Email or body of texts
Alternatively, you can chose to sign emails/texts instead of encrypting them. Signing files is a way to ensure that the message/texts/emails are from the right sender and its content has not been tempered with. You can run this command to sign email or texts :

gpg --clearsign original_text.txt

This will produce a signature file which content the original text with PGP signature embedded at the bottom of the message.

To verify it (assuming you have the public key), you need to run this command:

gpg --verify original_text.txt.asc

Continue reading “How to use GNU Privacy Guard (GPG) – Encrypt, Decrypt, Sign and Verifying identities”

Ubuntu 10.04 fix for USB Drive not mounting on pc with Floppy Drive

Here’s a quick fix for an Ubuntu 10.04 bug that prevents USB Drive from mounting on a PC with Floppy drive (wow, these things still exist?)

The solution is to remove the floppy drive module from linux kernel and you will be able to mount usb drive.
sudo modprobe -r floppy

Should you ever need the module again, you can issue
sudo modprobe floppy
to load the module back (alongside with the annoying bug).

Hope this will help!

p/s: To be fair, my office Dell Optiplex machine (with Pentium 4 HT 2.80GHz, 2005 issue) still has those floppy drives, although I haven’t use them ever since they assigned it to me (back in 2008).