Reddit Reddit reviews Linux in a Nutshell: A Desktop Quick Reference

We found 5 Reddit comments about Linux in a Nutshell: A Desktop Quick Reference. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Networking & Cloud Computing
Computer Network Administration
Linux & UNIX Administration
Linux in a Nutshell: A Desktop Quick Reference
O Reilly Media
Check price on Amazon

5 Reddit comments about Linux in a Nutshell: A Desktop Quick Reference:

u/istarian · 7 pointsr/linuxmint

You just have to jump in and do stuff. Using it as your primary OS or always for a particular task (e.g. always use it for internet browsing) is a good way to become familiar with a linux desktop environment.

As for the command, whenever you want to:

u/usernamenottakenwooh · 1 pointr/IWantToLearn

Can you program? If not, learn it! Start out with an easy to learn programming language like Pascal or Java and move on to the more complex C++ and eventually Assembler. Once you've understood the basics of programming (variables, loops, functions etc.) it is a matter of 2 weeks to learn the syntax of a new language.
Get familiar with Linux/UNIX. Learn how user rights work, how the run levels and shell scripts work. Read a lot of code and man pages. The definition of a hack is making a system do something it is not supposed to do. So you have to find a weak point by reverse engineering. Sometimes programmers make mistakes in their code, like a wrong variable type you can then exploit. Learn how a buffer overflow works http://en.wikipedia.org/wiki/Buffer_overflow Also I'd recommend these books: http://www.amazon.com/The-Art-Intrusion-Intruders-Deceivers/dp/0471782661 http://www.amazon.com/Linux-Nutshell-Ellen-Siever/dp/0596154488/ref=sr_1_1?s=books&ie=UTF8&qid=1345626761&sr=1-1&keywords=o%27reilly+linux http://www.amazon.com/Programming-Absolute-Beginner-Experience-Technology/dp/1598633740/ref=sr_1_1?s=books&ie=UTF8&qid=1345626801&sr=1-1&keywords=learn+programming Have fun and good luck!

u/[deleted] · 1 pointr/linux4noobs

Awesome, thanks. I'm going to pick up a couple books everything mentioned, any books in particular I should check out? I just ordered Linux in a Nutshell. Also, I'm curious, what would the pay be like for a position such as this? Assuming someone has all the skills listed above.

u/JR_Ray · -1 pointsr/linux

Sounds like your the Dev side of DevOps. I'm going to save you having to go buy a mac or run Linux as your base OS.

First go download Virtual Box

Next grab the latest version of Vagrant

Install both and sign up for a free account on Vagrant Cloud

Grab yourself cygwin/mysysgit or similar. You are going to need git eventually and you need an openssh client. Install one of those.

Start > Run > cmd

cd %userprofile% #This should drop you into your home directory.

mkdir $dirName

This can be anything you want. I call mine vProj.

vagrant init hashicorp/precise64

This is going to create a file called Vagrantfile in the directory you are in when you call the command. This file is what Vagrant is going to use to build a box.

vagrant up

Vagrant is now going to go out to the internet and download an Ubuntu 12.04 LTS 64 bit vagrant box and use vBox to provision it.

vagrant ssh

You are now in your very own Ubuntu 12.04 Virtual Box. :) You don't like it? vagrant destroy will get rid of it. vagrant up again will rebuild it. vagrant halt stops it. Their are plenty of base boxes on the vagrant cloud. Companies like puppet even put their own boxes online for devs to use. The beauty is that you didn't have to open vBox one time. You didn't have to play with the network settings or setup some weird bridge. Vagrant does it all for you. You can, of course, open vBox and run it as normal but really you don't need to.

As for books.

Linux in a Nutshell

Vagrant Up and Running