• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Good Reference Book

 
Ranch Hand
Posts: 125
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Anyone, could you tell me the best book for linux reference?
 
Author
Posts: 836
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Anyone, could you tell me the best book for linux reference?

Nobody can say what is the "best" book since that depends on personal preference, and importantly what you actually want to do. What do you mean by "Linux reference"---command line reference? X/GNOME/KDE reference? Programming guide? There are so many possibilities...

If it's a CLI reference you're after, have you tried "man" that ships with every Linux distro? Just run "man COMMAND" for a given COMMAND name and it'll describe the command in a lot of detail. "info COMMAND" sometimes has even more information. I find Google very useful for discovering new commands too, as there is usually something new to discover out there. Just search for whatever it is you're trying to do, and tack "Linux" or "Unix" on the end.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should narrow down which distribution of Linux you are using. Different distros will do things differently.
Books get outdated pretty quickly. I use online resources pretty exclusively (except for man. Got to use man).
I've found the Linux Documentation Project to be pretty helpful for general Linux info.
You should also become familiar with your distribution's on-line documentation and help forums. For example, the ubuntu documentation and forums. They will be the most up-to-date resource.
 
Ranch Hand
Posts: 490
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you are looking for a reference for Linux CLI, I recommend A Practical Guide to Linux Commands, Editors, and Shell Programming by Sobell. Most of this information is distro agnostic. I find man pages to be poorly written and no place to learn how to use the command. Once you have the basics of a command, they become useful. If you don't know the name of the command, man pages are useless. This books helps you find what you need quickly. The shell programming section is invaluable as well.

Everything in this book can be found online, but I prefer having everything in a well written book, than having to waste time searching the Internet for poorly written guides.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic