recommend reading linux

Associate
Joined
3 Nov 2005
Posts
442
Location
belfast
Hi I've playing around with ubuntu and kubuntu for a few weeks now and see the potential. Can any one recommend some books/manuals as can't do even the simplest things like mount a drive or stop a process by the command line.
 
Ubuntuguide has how-to guide for many procedures in Linux. they don't explain why things work, though.

I find reading manual pages to be highly instruction al. If you have a command you want to know more aobut, type
man <command>

For instance if I wanted to know more about the mount command I'd type
man mount
and read the manual, pressing page up and down to scroll. When you're done with the manual press q to return to the command-line.
 
you might get some mileage out of "unix unleashed" or any similar tome, but to be honest it isn't gonna help you with many of the issues you'll want to deal with as a linux newb.

it will however give you some insight into the general philosophy of a unix system and plenty of advice on shells/scripting etc. all of which (if you learn it and practice it enough to ever remember it when you need it) might come in handy one day.

my advice, if you're gonna buy a book, at least buy 2nd hand. don't pay the full price for a linux / unix book, it wont be worth it. put your time into a good forum or three instead.
 
Ubuntu Unleashed by SAMS (ISBN 0-672-32909-3) is quite good. It's on Safari, if you're interested... Otherwise, you might want to have a look at Moving to Ubuntu Linux by Addison Wesley (ISBN 0-321-42722-X) which is also on Safari...Another useful books, but not specific to Ubuntu, is the Linux Phrasebook by SAMS
By the way, I'd do the following...

ps - ef | grep process_name (replacing with the actual name, of course ;)) to give you the process ID, and then kill it with the following command
kill -9 PID (replacing the PID with the value returned by the ps command).
 
Last edited:
The best book ive come across is "Linux system administration" by Vicki stanfield and roderick Smith. But its quite old now and outdated but when i was first using linux i found indespesible! there might be a more upto date version out there. :)
 
Back
Top Bottom