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/
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.
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
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:
Yields entries in the form of "/dev/hda1" etc.
Use this if you are on a new system and don't know how the storage hardware (ide, sata, scsi, usb - with ever changing descriptors) is connected and which partitions are available.
Far better than using "fdisk -l" on guessed device descriptors.
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
nice. Although I usually use the following for this purpose.
fdisk -lhwinfo is perhaps specific to SuSE (although it may be available on other distributions as its in Gentoo's portage), so I think
fdisk -lis more general (and is what I use anyway :-).
1. fdisk has to be run with root privileges (unlike hwinfo).
2. Another advantage of
hwinfo --block --shortover
fdisk -lis that it gives all mountable devices. fdisk doesn't bother listing cd/dvd drives, floppy disks, loopback devices, etc.
3. Unfortunately hwinfo is not in every distribution(ubuntu), but a simple
apt-get install hwinfosolves that.
There is
sudo lshw -short -class storage -class disk -class volumeas well. (comes with ubuntu)