Linux Pocket Guide
Total Page:16
File Type:pdf, Size:1020Kb
www.allitebooks.com www.allitebooks.com SECOND EDITION Linux Pocket Guide Daniel J. Barrett Beijing • Cambridge • Farnham • Köln • Sebastopol • Tokyo www.allitebooks.com Linux Pocket Guide, Second Edition by Daniel J. Barrett Copyright © 2012 Daniel Barrett. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O’Reilly books may be purchased for educational, business, or sales promo- tional use. Online editions are also available for most titles (http://my.safari booksonline.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or [email protected]. Editors: Mike Loukides and Andy Oram Copyeditor: Rachel Monaghan Production Editor: Melanie Yarbrough Proofreader: Stacie Arellano Indexer: Daniel Barrett Cover Designer: Karen Montgomery Interior Designer: David Futato Illustrator: Robert Romano February 2004: First Edition. March 2012: Second Edition. Revision History for the First Edition: 2012-03-07 First release See http://oreilly.com/catalog/errata.csp?isbn=9781449316693 for release de- tails. Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of O’Reilly Media, Inc. Linux Pocket Guide, Second Edition, the cover image of a roper, and related trade dress are trademarks of O’Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc., was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. ISBN: 978-1-449-31669-3 [M] 1331140892 www.allitebooks.com Contents Linux Pocket Guide 1 What’s in This Book? 1 Getting Help 6 Linux: A First View 8 The Filesystem 13 The Shell 22 Basic File Operations 36 Directory Operations 41 File Viewing 44 File Creation and Editing 54 File Properties 59 File Location 70 File Text Manipulation 79 File Compression and Packaging 92 File Comparison 98 Printing 103 Spell Checking 105 Disks and Filesystems 106 Backups and Remote Storage 111 Viewing Processes 116 Controlling Processes 121 Scheduling Jobs 124 iii www.allitebooks.com Logins, Logouts, and Shutdowns 129 Users and Their Environment 130 User Account Management 135 Becoming the Superuser 138 Group Management 140 Host Information 142 Host Location 146 Network Connections 150 Email 154 Web Browsing 160 Usenet News 164 Instant Messaging 166 Screen Output 168 Math and Calculations 174 Dates and Times 177 Graphics and Screensavers 181 Audio 185 Video 188 Installing Software 190 Programming with Shell Scripts 195 Final Words 209 Index 211 iv | Table of Contents www.allitebooks.com Linux Pocket Guide Welcome to Linux! If you’re a new user, this book can serve as a quick introduction, as well as a guide to common and prac- tical commands. If you have Linux experience, feel free to skip the introductory material. What’s in This Book? This book is a short guide, not a comprehensive reference. We cover important, useful aspects of Linux so you can work pro- ductively. We do not, however, present every single command and every last option (our apologies if your favorite was omit- ted), nor delve into detail about operating system internals. Short, sweet, and essential, that’s our motto. We focus on commands, those pesky little words you type on a command line to tell a Linux system what to do. Here’s an example command that counts lines of text in a file, myfile: wc -l myfile We’ll cover the most important Linux commands for the aver- age user, such as ls (list files), grep (search for text in a file), amarok (play audio files), and df (measure free disk space). We touch only briefly on graphical windowing environments like GNOME and KDE, each of which could fill a Pocket Guide by itself. 1 www.allitebooks.com We’ve organized the material by function to provide a concise learning path. For example, to help you view the contents of a file, we introduce all file-viewing commands together: cat for short text files, less for longer ones, od for binary files, acro read for PDF files, and so on. Then we explain each command in turn, briefly presenting its common uses and options. We assume you have an account on a Linux system and know how to log in with your username and password. If not, speak with your system administrator, or if the system is your own, use the account created when you installed Linux. What’s Linux? Linux is a popular, open source operating system that com- petes with Microsoft Windows and the Apple Macintosh. There are two ways to work with a Linux system: • A graphical user interface with windows, icons, and mouse control. • A command-line interface, called the shell, for typing and running commands like the preceding wc. Windows and Mac OS computers can be operated by com- mand line as well (Windows with its cmd and PowerShell com- mand tools, and OS X with its Terminal application), but most of their users can survive without typing commands. On Linux, however, the shell is critical. If you use Linux without the shell, you are missing out. What’s a Distro? Linux is extremely configurable and includes thousands of programs. As a result, different varieties of Linux have arisen to serve different needs and tastes. They all share certain core components but may look different and include different pro- grams and files. Each variety is called a distro (short for “dis- tribution”). Popular distros include Ubuntu Linux, Red Hat 2 | Linux Pocket Guide www.allitebooks.com Enterprise Linux, Slackware, Mint, and more. This book cov- ers core material that should apply to every distro. What’s a Command? A Linux command typically consists of a program name fol- lowed by options and arguments, typed within a shell, like this: $ wc -l myfile The program name (wc, the “word count” program) refers to a program somewhere on disk that the shell will locate and run. Options, which usually begin with a dash, affect the behavior of the program. In the preceding command, the -l option tells wc to count lines rather than words. The argument myfile specifies the file that wc should read and process. The leading dollar sign ($) is a prompt from the shell, indicating that it is waiting for your command. Commands can have multiple options and arguments. Options may be given individually: $ wc -l -w myfile Two individual options or combined behind a single dash: $ wc -lw myfile Same as -l -w though some programs are quirky and do not recognize com- bined options. Multiple arguments are also OK: $ wc -l myfile1 myfile2 Count lines in two files Options are not standardized. The same option letter (say, -l) may have different meanings to different programs: in wc -l it means “lines of text,” but inls -l it means “longer output.” In the other direction, two programs might use dif- ferent options to mean the same thing, such as-q for “run qui- etly” versus -s for “run silently.” Likewise, arguments are not standardized, unfortunately. They usually represent filenames for input or output, but they can be other things too, like directory names or regular expressions. What’s in This Book? | 3 www.allitebooks.com Commands can be more complex and interesting than a single program with options: • Commands can run more than one program at a time, either in sequence (one program after another) or in a “pipeline” with the output of one command becoming the input of the next. Linux experts use pipelines all the time. • The Linux command-line user interface—the shell—has a programming language built in. So instead of a com- mand saying “run this program,” it might say, “if today is Tuesday, run this program; otherwise, run another com- mand six times for each file whose name ends in .txt.” Reading This Book We’ll describe many Linux commands in this book. Each de- scription begins with a standard heading about the command; Figure 1 shows one for the ls (list files) command. This heading demonstrates the general usage in a simple format: ls [options] [files] which means you’d type “ls” followed, if you choose, by op- tions and then filenames. You wouldn’t type the square brack- ets “[” and “]”: they just indicate their contents are optional; and words in italics mean you have to fill in your own specific values, like names of actual files. If you see a vertical bar be- tween options or arguments, perhaps grouped by parentheses: (file | directory) This indicates choice: you may supply either a filename or di- rectory name as an argument. The special heading also includes six properties of the com- mand printed in black (supported) or gray (unsupported): stdin The command reads from standard input, i.e., your key- board, by default. See “Input and Output” on page 12. 4 | Linux Pocket Guide www.allitebooks.com Figure 1. Standard command heading stdout The command writes to standard output, i.e., your screen, by default. See “Input and Output” on page 12. - file When given a dash (-) argument in place of an input file- name, the command reads from standard input; and like- wise, if the dash is supplied as an output filename, the command writes to standard output. For example, the following wc command line reads the files file1 and file2, then standard input, then file3: $ wc file1 file2 - file3 -- opt If you supply the command-line option “--” it means “end of options”: anything appearing later on the command line is not an option.