Posts Tagged ‘Ubuntu’

Ubuntu 10.04 to support iPod, iPhone, iPad out of the box

Wednesday, March 3rd, 2010

Just came across this article about something a lot of us into free and open source software have been wanting to happen: (The main reason I don’t use iPod, iPhone and probably not planning to use iPad in the future is because they don’t use free and open source software. But that will soon change ;) )

“Another barrier to Linux adoption is set to fall with next month’s major Ubuntu release – version 10.04, otherwise known as Lucid Lynx – bringing iPod support right out of the box.

This breakthrough is bound to be a game-changer in the land of Linux and if anything in Ubuntu 10.04 is set to make the fabled “year of the Linux desktop” come closer, this is it.

We’re talking about a new level of hardware compatibility, and not the likes of finding the right printer or WiFi adapter. Support for Apple’s range of devices will make Ubuntu more accessible to legions of potential users in one move.”

Read more of the article by By David M Williams at ITWire
http://www.itwire.com/opinion-and-analysis/the-linux-distillery/37290-ubuntu-1004-to-support-ipod-iphone-ipad-out-of-the-box

Canonical Announces Ubuntu 9.04 for Desktop, Server (Available for downloading starting April 23) and Netbook (April 30) Systems

Wednesday, April 22nd, 2009

Canonical, the commercial sponsor of Ubuntu, has announced the desktop, server and netbook versions of Ubuntu 9.04.

Canonical on April 20 announced that Ubuntu 9.04 Desktop Edition is free to download from Thursday April 23 along with the server version of the operating system. The netbook version, known as the Ubuntu 9.04 Netbook Remix, will be available on April 30.

According to Canonical, Ubuntu 9.04 Desktop Edition delivers a range of feature enhancements to improve the user experience. Shorter boot speeds, some as short as 25 seconds, ensure faster access to a full computing environment on most desktop, laptop and netbook models. Enhanced suspend-and-resume features also give users more time between charges along with immediate access after hibernation. Intelligent switching between Wi-Fi and 3G environments has been broadened to support more wireless devices and 3G cards, resulting in a smoother experience for most users.

Read more of the article at : http://www.eweek.com/c/a/Linux-and-Open-Source/Canonical-Announces-Ubuntu-904-for-Desktop-Server-and-Netbook-Systems-493661/

Ubuntu 7.10 reaches end-of-life on April 18, 2009

Tuesday, March 24th, 2009

Just got this announcement from Steve Langasek (steve.langasek@ubuntu.com) of Ubuntu:

Ubuntu announced the release of 7.10 almost 18 months ago, on October 18, 2007. As with the earlier releases, Ubuntu committed to ongoing security and critical fixes for a period of 18 months. The support period is now nearing its end and Ubuntu 7.10 will reach end of life on Saturday, April 18, 2008. At that time, Ubuntu Security Notices will no longer include information or updated packages for Ubuntu 7.10.

The supported upgrade path from Ubuntu 7.10 is via Ubuntu 8.04 LTS. Instructions and caveats for the upgrade may be found at https://help.ubuntu.com/community/HardyUpgrades. Note that upgrades to version 8.10 and beyond are only supported in multiple steps, via an upgrade first to 8.04 LTS, then to 8.10. Both Ubuntu 8.04 LTS and Ubuntu 8.10 continue to be actively supported with security updates and select high-impact bug fixes. All announcements of official security updates for Ubuntu releases are sent to the ubuntu-security-announce mailing list, information about which may be found at
https://lists.ubuntu.com/mailman/listinfo/ubuntu-security-announce.

Since its launch in October 2004 Ubuntu has become one of the most highly regarded Linux distributions with millions of users in homes, schools, businesses and governments around the world. Ubuntu is Open Source software, costs nothing to download, and users are free to customise or alter their software in order to meet their needs.

Making wifi (802.11) device work in Ubuntu on MacBook and other laptops with Atheros chipsets

Monday, August 25th, 2008

Several friends have been asking me how I made my wireless device in my MacBook running Ubuntu Linux worked. Others with different brands of laptops have shared also the same problem. I discovered that most of these laptops (MacBook included) have wireless devices with the same Atheros chipsets.

To check if your laptop have Atheros, do:

lspci | grep Wireless

The result:

02:00.0 Network controller: Atheros Communications Inc. AR5418 802.11abgn Wireless PCI Express Adapter (rev 01)

will tell you that you have the Atheros chipsets.

So here’s what you need to do to make your wireless work in Ubuntu:

1. First, make sure you have an alternative Internet connection through your wired ethernet port.

2. For Ubuntu (8.04) Hardy, you just need to install linux-restricted-modules and madwifi-tools packages:

sudo apt-get install linux-restricted-modules madwifi-tools

Prior to Hardy with my laptop installed with Ubuntu (7.10) Gutsy, here’s what I did using Subversion (try this if the first instruction won’t work in Hardy):

- Install Subversion to get the driver source and the needed build tools:

sudo apt-get install build-essential subversion autoconf automake

- Get madwifi using subversion:

svn co http://svn.madwifi.org/madwifi/trunk madwifi

- Compile and install madwifi driver (module name: ath_pci)

cd madwifi
make
sudo make install-modules

The driver is now installed and will be enabled after the next reboot or can be enabled by:

sudo modprobe ath_pci

I was always having difficulty connecting using network manager, so I installed an alternative: wicd.

1. To install wicd you need to add to your repository (append to /etc/apt/sources.list) the line:
“deb http://apt.wicd.net hardy extras”

You can do this by:

echo “deb http://apt.wicd.net hardy extras” >> /etc/apt/sources.list

2. Update your repository:

sudo apt-get update

3. Install wicd:

sudo apt-get install wicd

Note: this will remove your network manager.

You can then run wicd from the menu -> Applications -> Internet.

References:

Ubuntu in MacBook: Dual Screen or Connecting to a LCD/Mutimedia Projector

Sunday, August 3rd, 2008

To connect my MacBook to an LCD/Multimedia Projector using a vga to mini-DVI adapter connected to the mini-DVI port, I use xrandr. [for more info do a $man 1 xrandr]

First, you need to check on the available resolutions.
With the other screen/monitor or multimedia projector attached to your MacBook do:

$ xrandr -q

(more…)

Upgrading from Ubuntu Gutsy (7.10) to Hardy (8.04) in MacBook: Screen Resolution – x server does not support the xrandr; problems with dual and extended screen

Sunday, July 6th, 2008

Changing Screen Resolution Problem

After updating from Gutsy (7.10) to Hardy (8.04), I noticed the utility for changing the screen resolution (System -> Preferences -> Screen Resolution) does not work anymore in Hardy as it did in Gutsy. It gave an error message:

The X Server does not support the XRandR extension. Runtime resolution changes to the display size are not available.

Xrandr Problem

Likewise, when I tried xrandr -q on the command line I got the following X BadRequest error:

$ xrandr -q
X Error of failed request: BadRequest (invalid request code or no such operation)
Major opcode of failed request: 151 (RANDR)
Minor opcode of failed request: 6 ()
Serial number of failed request: 9
Current serial number in output stream: 9

(more…)

Upgrading from Ubuntu Gutsy (7.10) to Hardy (8.04) in MacBook: The missing “right mouse click / button”

Sunday, June 29th, 2008

In my former post: Ubuntu 7.10 (Gutsy) on a Macbook … Part 1, I mentioned:

“I noticed some of the devices/hardware does not work properly on Ubuntu “out-of-the-box” (default install of Ubuntu 7.10 for intel) like sound volume control, iSight, sound recording through the built-in mic. To some of us who are used to doing “right clicks” on the mouse, we need to have an alternative way of doing it given that all Mac laptops only has one built-in “mouse” button that works as a “left button”.

Well, the website:
How to install Ubuntu on a MacBook
[url: https://help.ubuntu.com/community/MacBook] has been useful since following the instructions have made sound (volume control and recording through the built-in mic and iSight (built-in webcam) worked in my MacBook. I also have converted the lower “enter” key to be a “right mouse button.”

While everything continued to work even after upgrading from Gutsy (7.10) to Hardy (8.04), I noticed my lower “enter” key doesn’t worked anymore. So, based from the instruction on the above website, I tried to do again:
(more…)

Ubuntu 8.04 (Hardy Heron) is now available

Friday, April 25th, 2008

Ubuntu Hardy Heron 8.04 is now available.

Ubuntu 8.04 LTS Desktop Edition – Supported to 2011
Ubuntu 8.04 LTS Server Edition – Supported to 2013

These are LTS (Long Term Support) versions of Ubuntu: 3 years for the desktop versions and 5 years for server versions.

Get them now at: http://www.ubuntu.com/getubuntu/download

My Ubuntu 7.10 Desktop on MacBook Black

Wednesday, April 16th, 2008

This is what my Ubuntu Desktop on MacBook Black looks like.
The “Think Linux” wallpaper came from ftp.linux.org.uk.
The “Mac look alike” icons on the “dock”, actually bottom panel came from the desktop theme given to me by my Indonesian friend Utian.

I like the “Think Linux” wallpaper because it reminds you that you’re running Linux even though you’re using a MacBook Hardware (with all the “eye candies” including “genie” effect and cube rotate and functionalities that are comparable with MacOSX or even better than Vista :-) ). Try Compiz-Fusion (now with Gutsy).

The image below which I already used in my previous postings is actually my MacBook’s splashscreen:

Ubuntu 7.10 (Gutsy) on a Macbook … Part 2 (On iSight)

Wednesday, April 16th, 2008

To continue from my previous post on the reference site:
How to install Ubuntu on a MacBook
[url: https://help.ubuntu.com/community/MacBook]:

I got the iSight working with additional steps (which the site failed to mentioned). After following the instructions from the abovementioned site on iSight:

a. You need to install isight-firmware-tools.

$sudo apt-get install isight-firmware-tools

b. If you have the isight-firmware-tools already installed you need to do a:

$sudo dpkg-reconfgure isight-firmware-tools

to “point” to the location of the firmware you copied from your MacOS installation/partition.

c. You need to install the module uvcvideo:

- Optional step just to remove any old modules and back up any existing uvcvideo.ko:

$sudo modprobe -r uvcvideo

$sudo mv
/lib/modules/$(uname -r)/kernel/ubuntu/media/usbvideo/uvcvideo.ko
/lib/modules/$(uname -r)/kernel/ubuntu/media/usbvideo/uvcvideo.ko.original

- Update your Ubuntu archive/repository if you haven’t done recently:

$sudo apt-get update

(more…)