Archive for January, 2010

iPad Hype

Thursday, January 28th, 2010

Depressing release day for Apple’s iPad perhaps (their stock didn’t go bazirker); however neither did it when Apple originally released the iPod — it took about 6 months to a year before the iPod became mainstream (I’m sure it will impact their stock the same way for the iPad).

I’m betting the iPad has it’s uses (and people will want it) — digital magazine, books, recipes, couch, in bed, passenger in car/train etc….when you don’t want to lug a laptop around, and want a little more screen real estate than an iPhone/iTouch, you’ll want an iPad.

VN:F [1.8.4_1055]
Rating: 10.0/10 (2 votes cast)
VN:F [1.8.4_1055]
Rating: 0 (from 0 votes)

Uninstalling KDE or Gnome from Gentoo

Wednesday, January 13th, 2010

Using ‘eix’ it becomes quite easy to construct a search command listing all the packages currently installed for a given category.

In my case, I wanted to unmerge (remove) all KDE and Gnome desktop packages from my Gentoo system, as I’ve been using it only as server for several years now.


# generate a list of gnome-base packages you have installed
eix -C gnome-base --only-names --installed

#send it to emerge once  you've got it
sudo emerge --ask -C `eix -C gnome-base --only-names --installed`

The ‘-C’ flag is the category base (ie: gnome-base or kde-base) — the other arguments should be obvious. You can always type ‘man eix’ for the specifics.

It’s a good idea to run ‘revdep-rebuild’ after removing packages as well.


sudo revdep-rebuild
VN:F [1.8.4_1055]
Rating: 10.0/10 (1 vote cast)
VN:F [1.8.4_1055]
Rating: 0 (from 0 votes)