Ubuntu 11.04 beta released

 

Not for the faint of heart; this is a testing version. Production version available end of April 2011.

http://www.ubuntu.com/testing/natty/beta#Introduction

http://www.ubuntu.com/testing/

 

Torrents Available for Download Here

Posted in Linux, Ubuntu | Leave a comment

linux netbook

Remember way back in 2007 when netbooks were widely available with Linux pre-installed? Windows Vista would not run on them, and Microsoft would not re-release Windows XP, so Linux had a brief moment in the sun where it was the popular operating system for these new web surfing devices.

my Asus 1215T netbook

awesome little machine

Flash forward to 2011, and now you have to dig deep to find a netbook or laptop without Windows pre-installed, at an additional $60-$100 premium. Dell.com still has a few models, though not on their front page. If you search for ‘linux’ or ‘ubuntu’, you will find a few models, for example: http://www.dell.com/content/topics/segtopic.aspx/ubuntu

Asus has since established itself as a premier netbook provider. It is such a popular provider of netbooks, that it has developed its own Linux-based OS called Asus Express Gate. This OS is designed to do what a netbook is supposed to do: surf the web, watch video, check email, word processing.

This article is not about that OS, but rather to note that they have made 1 model available at Newegg.com with this OS, and offer it for $80 less than comparable computers. For $350 you get 2GB RAM, 320GB hard drive, 12.1″ screen, with one of the latest netbook processors, the AMD Athlon II Neo K125(1.70GHz) , and only 3.2 lbs!.

ASUS Eee PC 1215T-MU10-BK Black
AMD Athlon II Neo K125(1.70GHz) 12.1″ WXGA 2GB DDR3 Memory 320GB HDD NetBook

Hopefully it will prove popular enough that Asus and othes will offer more in the near future.
An “Open Box” version available for another $60 off, now sold out:

http://www.newegg.com/Product/Product.aspx?Item=N82E16834220857R

humorous note: Check out the Windows Screen on the item as of March 2011, even though WIndows is $80 optional extra at bottom of page:

windows not installed but they show it on the ad for this computer (this oops has now been corrected.)

Installed Ubuntu 10.10 64-bit on these machines, and they run great. ( Ubuntu Torrent download link )

I bought one for my father, myself, and one for my wife. And needless to say – this post is written using this model computer.

Asus Driver Download Page if you happen to need it.

Posted in Linux | 1 Comment

apt-get hold version

The core debian package management system is dpkg.

All other software updaters and software package managers on Ubuntu – apt-get, synaptic, update manager – are just front-ends for this system. I have a couple of packages want to lock their version – no updates to them, please. Fairly easy in synaptic package manager. But apt-get and update manager did not know of synaptics preferences.

So tell the core dpkg to hold these versions applies to all relevant package managers:

echo "package_name hold"|dpkg --set-selections

more details:

by lacek » 2004-09-15 12:05

To put a package to hold:

echo "package_name hold"|dpkg --set-selections

to 'unhold' it:
echo "package_name install"|dpkg --set-selecions

lacek
Moderator Team Member

Posts: 769
Joined: 2004-03-11 18:49
Location: Budapest, Hungary
Top
by folke » 2004-09-15 18:39

Thanx.

exactly what I’m looking for.

source: http://forums.debian.net/viewtopic.php?t=240
and more information at

http://www.debian.org/doc/FAQ/ch-pkg_basics.en.html

Posted in Linux | Leave a comment