Hide

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again.

Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.


If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/

Get involved!

You can sign-in using OpenID credentials, or register a traditional username and password.

First-time OpenID users will be automatically assigned a username which can be changed after signing in.

Hide

Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for:

Hide

News

2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - test
test
2012-05-20 - Test tweets
YU not working?
Hide

Tags

Hide

Functions

List your largest installed packages.

Terminal - List your largest installed packages.
wajig large
2009-04-19 20:26:26
User: udim
11
List your largest installed packages.

Requires the "wajig" package to be installed.

Alternatives

There are 4 alternatives - vote for the best!

Terminal - Alternatives
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n
dpigs
2009-10-26 20:38:17
User: xrm0
7

dpigs is in the package debian-goodies (debian/ubuntu)

dpkg --get-selections | cut -f1 | while read pkg; do dpkg -L $pkg | xargs -I'{}' bash -c 'if [ ! -d "{}" ]; then echo "{}"; fi' | tr '\n' '\000' | du -c --files0-from - | tail -1 | sed "s/total/$pkg/"; done
2009-10-12 14:57:54
User: pykler
Functions: bash cut du echo read sed tail tr xargs
Tags: Debian wajig
5

Calculates the size on disk for each package installed on the filesystem (or removed but not purged). This is missing the

| sort -rn

which would put the biggest packges on top. That was purposely left out as the command is slightly on the slow side

Also you may need to run this as root as some files can only be checked by du if you can read them ;)

sed -ne '/^Package: \(.*\)/{s//\1/;h;};/^Installed-Size: \(.*\)/{s//\1/;G;s/\n/ /;p;}' /var/lib/dpkg/status | sort -rn
2009-10-19 19:01:17
User: arcege
Functions: sed sort
2

Use the hold space to preserve lines until data is needed.

awk '{if ($1 ~ /Package/) p = $2; if ($1 ~ /Installed/) printf("%9d %s\n", $2, p)}' /var/lib/dpkg/status | sort -n | tail

Know a better way?

If you can do better, submit your command here.

What others think

This is for systems using apt: debian/ubuntu.

Comment by bwoodacre 161 weeks and 4 days ago

slick

Comment by linuxrawkstar 161 weeks and 4 days ago

Holy smokes! Open Arena anyone?

mysql-server-5.0 88,272 installed

evolution-common 95,080 installed

ia32-libs 105,036 installed

linux-image-2.6.27-14-generic 108,676 installed

openoffice.org-core 119,044 installed

openarena-data 276,268 installed

Comment by linuxrawkstar 161 weeks and 4 days ago

The following packages will be REMOVED:

fgfs-base flightgear gcc-snapshot linux-image-2.6.27-11-generic

linux-restricted-modules-2.6.27-11-generic quackle

0 upgraded, 0 newly installed, 6 to remove and 1 not upgraded.

After this operation, 884MB disk space will be freed.

Thanks for saving me a gig of space!

Comment by hank 160 weeks and 6 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts