¿Cuáles son los buenos libros de Linux / Unix para un usuario avanzado? [cerrado]

StackOverflow https://stackoverflow.com/questions/236838

  •  04-07-2019
  •  | 
  •  

Pregunta

¿Hay algún buen libro para un usuario de nix * relativamente nuevo pero no totalmente nuevo para obtener un conocimiento un poco más profundo (por lo tanto, no Linux para tontos)? En su mayor parte, no estoy buscando algo para leer de principio a fin. Más bien, prefiero tener algo que pueda leer y leer en trozos cuando necesito saber cómo hacer algo o cada vez que tengo uno de esos "¿cómo hago eso de nuevo?" momentos Algunas áreas que me gustaría ver son:

  • administración de línea de comando
  • secuencias de comandos bash
  • programación (aunque me gustaría algo que no solo sea relevante para los programadores de C)

Me gustaría que esto sea lo más independiente posible de la plataforma (lo que significa que tiene información relevante para cualquier distribución de Linux, así como BSD, Solaris, OS X, etc.), pero los sistemas Unix que más uso son OS X y Debian / Ubuntu. Entonces, si me beneficiaría más tener un libro más dependiente de la plataforma, esas son las plataformas a las que apuntar.

Si puedo obtener todo esto en un libro, genial, pero prefiero tener un material un poco más detallado que la cobertura de todo . Entonces, si hay libros que cubren solo una de estas áreas, publíquelo. Demonios, publíquelo incluso si no es relevante para ninguna de esas áreas y cree que es algo que una persona en mi posición debería saber.

¿Fue útil?

Solución

I've wiki'd this post - could those with sufficient rep add in items to it.

System administration, general usage books

Programming:

Specific tools (e.g. Sendmail)

Various of the books from O'Reilly and other publishers cover specific topics. Some of the key ones are:

Some of these books have been in print for quite a while and are still relevant. Consequently they are also often available secondhand at much less than list price. Amazon marketplace is a good place to look for such items. It's quite a good way to do a shotgun approach to topics like this for not much money.

As an example, in New Zealand technical books are usurously expensive due to a weak kiwi peso (as the $NZ is affectionately known in expat circles) and a tortuously long supply chain. You could spend 20% of a week's after-tax pay for a starting graduate on a single book. When I was living there just out of university I used this type of market a lot, often buying books for 1/4 of their list price - including the cost of shipping to New Zealand. If you're not living in a location with tier-1 incomes I recommend this.

E-Books and on-line resources (thanks to israkir for reminding me):

  • The Linux Documentation project (www.tldp.org), has many specific topic guides known as HowTos that also often concern third party OSS tools and will be relevant to other Unix variants. It also has a series of FAQ's and guides.

  • Unix Guru's Universe is a collection of unix resources with a somewhat more old-school flavour.

  • Google. There are many, many unix and linux resources on the web. Search strings like unix commands or learn unix will turn up any amount of online resources.

  • Safari. This is a subscription service, but you can search the texts of quite a large number of books. I can recommend this as I've used it. They also do site licences for corporate customers.

Some of the philosophy of Unix:

Otros consejos

I have found Unix Power Tools to be one of the best resources for me. It may not have a tutorial in it, but it is a great reference.

The Art of Unix programming is a book that I've found helpful in the past, in spite of being a bit slanted against other non-unix platforms.

The O'Reilly books have excellent *nix coverage. I have these:

Learning the bash Shell
* Covers several basic *nix command line tools as well as more advanced shell scripting techniques.

Learning the vi and Vim Editors
* Priceless. Gave me the ability to very quickly edit or create shell scripts, configuration files, Python scripts from the shell.

I recommend the Armadillo book from O'Reilly for command line administration and shell scripting.

alt text

Jason,

Unix Programming Environment by Kernighan and Pike will give you solid foundations on all things Unix and should cover most of your questions regarding shell command line scripting etc.

The Armadillo book by O'Reilly will add the administration angle. It has served me well!

Good luck!

I can suggest the bunch of books here:

http://www.linux.org/docs/online_books.html

good luck;)

The aforementioned Unix Power Tools is a must. Other classics are sed&awk and Mastering Regular Expressions. I also like some books from the O'Reilly "Cookbook" series:

The Advanced Bash-Scripting Guide is the only book that really allows the reader to grok bash scripting. You need that ability to fully understand how to start/stop daemons and to automate a lot of tasks.

The AWK Programming Language

Not only introduces to the versatile tool that awk is, but also gives an insight about the Unix based philosophy and some awk 'design-patterns'.

alt text

In my opinion, you will learn more just by messing around with what you find interesting on a *nix box. It is a waste of time to read about BIND if you have no interest in networks.

Big agreement for Essential System Adminstration and Unix Power Tools.

Also, whichever editor you prefer, vim or emacs, learn it back & forth. If you like vim, then get Steve Oualline's vim book.

With regards to Ubuntu and Linux in general, a good book:

Stephen Kochan's "Unix Shell Programming" and "Exploring the Unix System"

  • sed & awk Dougherty and robbins
  • Mastering regular expression Jeffrey Friedl
  • Linux in a nutshell to look things up, although most of the info is also in manpages
  • Vim by Steve Oualline
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top