Playing with Debian

Sunday, 23rd March 2008 at 01:57pm

A huge cheat sheet of the most useful commands

Sorry I've not posted much in the last few days; I have a few posts lined up though :)

To keep you happy though, here's a cheat sheet for Unix commands. Well, it's a bit huge, more of a cheat novel.

1 comments

Wednesday, 13th February 2008 at 08:43pm

Debian cheat sheet

Following on from my last post about basic unix commands, I found this PDF that's really helpful too.

man – is another useful one. It gives you the manual entry for a function. For instance "man ls" would give you the manual page for that command, as well as all its options and parameters. man can output a lot sometimes, and it's too much if you're just quickly checking what a function is for, in cases like that you can use "man -k ls". That will make "ls" part of a regular expression though, so all the commands with "ls" in it will get thrown up too. To stop that, use "man -k ^ls$".

If you're looking at a manual page there are two buttons you need to be aware of: press "q" to quit from the manual, and space bar to go down to the next page.

Redwood don't give me any information on how much hard drive space I have left. If you want to find that out, you can use the command "df", which will output some stuff about your hard drive.

1 comments

Read some previous entries