Linux: How to get Harddisk UUID number

Modern Linux system uses UUID instead of traditional block name (/dev/hda1, /dev/hda5, /dev/sdb) to uniquely identify harddisk or other storage medium. This is because UUID is unique and never changes even if you switch the harddisk ordering.

So by mounting or refering your hard disk by its UUID, you are guaranteed to mount the correct storage medium no matter where its connected on your system.

Here’s how to get your harddisk UUID number

Method 1: Ubuntu and Debian Way

sudo vol_id /dev/hda1

This command display harddisk extra information including its filesystem and uuid number.

Method 2: using /dev/disk/by-uuid/

Another method which works universally on modern GNU Linux operating system is :

ls -l /dev/disk/by-uuid

which will uuid of connected storage medium to your computer.

That’s all, now you can easily identify your storage disk UUID number without much problem anymore.

Wubi – Easiest way to install Ubuntu in Windows partition

Wubi is an application which simplifies Ubuntu Linux installation on Windows partition. To Windows users, Wubi eliminates the hassle of having to repartition hard disk which carry the risk of loosing precious data.

Wubi does this by using a loopback device, creating a large file on a Windows partition and installing Ubuntu inside it. The best thing about Wubi is, it does not use virtual machine or any type of emulation. Thanks to Wubi, Ubuntu can be booted natively using Microsoft Windows boot loader.

When you are done experimenting with Ubuntu (who does?), or need to reclaim the hard disk space back, you can choose the uninstall button from the Windows Start Menu and everything will be removed, just as simple as that.

Wubi is one of the few application that made me wish that I have a Windows machine because I’m dying to try it out!

Wubi will be included with the upcoming Ubuntu 8.04 LTS (Hardy Heron) release, due in late April 2008.

Credits to fenris the 1337 pencacai for his original research on Wubi.

Visit Wubi official website here : http://wubi-installer.org/

Upcoming OpenOffice.org 3.0 supports Microsoft OpenXML (docx) out of the box

The popular Free and Open Source Office application, OpenOffice.org is going to have OpenXML (*.docx, *.xlsx, *.pptx) support by default. Scheduled to be release on September 2008, OpenOffice.org 3.0 packs a lot of features you might find interesting :

openoffice 3.0 development release
  • Import PDF files support. PDF documents can be edited in Writer
  • Official Mac OS support, now includes native “Aqua” interface
  • Multiple page view in Writer
  • Error bars in OpenOffice.org charts
  • Supports OpenDocument 1.2 specification

The BETA is scheduled to be released on April 30th, 2008. For the time being, OpenOffice.org 2.x users can open Microsoft OpenXML files (*.docx, *.xlsx) using odf import filters

Thanks to Andrew Ziem for the original article, OpenOffice.org 3.0 new features, an early look

New features in Ubuntu Hardy Heron (due in 20 days)

Though the main focus of the upcoming release of Ubuntu 8.04 LTS (Hardy Heron) is for long term support and bug fixes of existing features, Hardy Heron still packs quite a few notable features to look forward to :

Wubi and umenu

Installation without creating a separate partition for Ubuntu Linux is made easier with Wubi! Inserting Ubuntu CDROM will display a start up application which enables you to install Ubuntu on your windows partition using a loopback device.

wubi ubuntu installer

umenu ubuntu installer using wubi

After installation, Ubuntu will be added as one of bootable operating system in your Windows boot menu.

Install Ubuntu without the need to repartition, format and hassle.

Fine-grained User Permission Control
Ubuntu Hardy Heron integrates PolicyKit on administrative user interfaces. This allows you to have better control over user access on specific administrative task. For example, you can assign privilege for one user to access network controls but not software installation.

PolicyKit in Hardy Heron

Easy to use host-based firewall
The new Ubuntu release, Hardy Heron also includes ufw (uncomplicated firewall) that is easy to setup and use by end users without bothering network admnistrators.

New default bittorrent downloader
Transmission replaced Gnome Bittorrrent as the default bittorrent downloader in Ubuntu Hardy Heron LTS. Transmission is a lightweight bittorrent client with automatic banning feature and protocol encryption.

transmission.jpg

Additionally, Ubuntu 8.04 LTS also includes GNOME 2.22 and Firefox 3 Beta, which is better integrated with GNOME desktop environment. I’m looking forward for the next Ubuntu release, due on April 24th, 2008, that is three weeks from now!

403 Forbidden during Ubuntu Gutsy Security Update

Some of you may encounter the message 403 Forbidden during Ubuntu Gutsy Security update, especially when you does your update using “sudo apt-get upgrade”.

The message was displayed because the Ubuntu team deliberately block security updates from the server side following reports that the updates are breaking xorg-server package (this very same incident also happened last year, during Dapper release).

Thankfully the issue has been handled by the Ubuntu team, and now you can continue updating your computer without any interruption or side effects from installing the security updates.

Was Ubuntu the only distro affected by this problem?
Credit to enforcer, now I know there are several other distro (OpenSuSE, Gentoo, Debian) besides Ubuntu that experienced this problem.

Should I install any security updates ?
It highly advisable to install security updates whenever they are available from the update server. Failure of doing so may expose your system to various security holes and vulnerability which can lead to your system being compromised by malicious party.

How to find fastest Debian apt-get mirrors with netselect-apt

Using the nearest server to your location does not guarantee that you will get faster connection speed, other factors such as network congestions, faulty routers and bandwidth may affect the speed of your software installations.

Thus it is best to update the sources.lst file from time to time to keep updated with the fastest mirror to you, to ensure faster software installation and updates on your computer.

Generally there are two ways to do this, one is by using Synaptic to check for the fastest mirror (works for Ubuntu too!) and secondly by using netselect-apt (currently does not work for Ubuntu).

How to get fastest apt-get mirror with netselect-apt (Debian)

Firstly you need to install netselect-apt. then just run the command by typing “netselect-apt distribution name” to get the fastest mirror. Append -n switch, if you want to include the non-free repository too

Example :
# netselect-apt lenny

Example (non-free repos) :
# netselect-apt -n lenny

The application will test each apt-get mirrors it could find on debian.org site and perform some connection to estimate its speed. At the end of the test, the fastest mirror will be selected and used in the /etc/apt/sources.lst file.

Nice, but does it work on Ubuntu?
Note that although Ubuntu has netselect-apt, the application is currently broken under Ubuntu
( as of Gutsy Gibbon ). Ubuntu users should try the Synaptic method instead.