Download; While Red Hat Linux Was Sold As a “Boxed Set” with Cds and Manuals, Red Hat Now Leaves This to Third-Party Vendors

Total Page:16

File Type:pdf, Size:1020Kb

Download; While Red Hat Linux Was Sold As a “Boxed Set” with Cds and Manuals, Red Hat Now Leaves This to Third-Party Vendors Version 4.0 Introduction to Linux for Users and Administrators $ echo tux tux $ ls hallo.c hallo.o $ /bin/su - Password: tuxcademy – Linux and Open Source learning materials for everyone www.tuxcademy.org [email protected] ⋅ This training manual is designed to correspond to the objectives of the LPI-101 (LPIC-1, version 4.0) certification exam promulgated by the Linux Professional Institute. Further details are available in Appendix C. The Linux Professional Institute does not endorse specific exam preparation materials or tech- niques. For details, refer to [email protected]. The tuxcademy project aims to supply freely available high-quality training materials on Linux and Open Source topics – for self-study, school, higher and continuing education and professional training. Please visit http://www.tuxcademy.org/! Do contact us with questions or suggestions. Introduction to Linux for Users and Administrators Revision: grd1:62f570f98f89998d:2015-08-04 grd1:be27bba8095b329b:2015-08-04 1–11, B–C grd1:EF6EC05fegg6iuNkQRlDOJ © 2015 Linup Front GmbH Darmstadt, Germany © 2015 tuxcademy (Anselm Lingnau) Darmstadt, Germany http://www.tuxcademy.org [email protected] ⋅ Linux penguin “Tux” © Larry Ewing (CC-BY licence) All representations and information contained in this document have been com- piled to the best of our knowledge and carefully tested. However, mistakes cannot be ruled out completely. To the extent of applicable law, the authors and the tux- cademy project assume no responsibility or liability resulting in any way from the use of this material or parts of it or from any violation of the rights of third parties. Reproduction of trade marks, service marks and similar monikers in this docu- ment, even if not specially marked, does not imply the stipulation that these may be freely usable according to trade mark protection laws. All trade marks are used without a warranty of free usability and may be registered trade marks of third parties. This document is published under the “Creative Commons-BY-SA 4.0 Interna- tional” licence. You may copy and distribute it and make it publically available as long as the following conditions are met: Attribution You must make clear that this document is a product of the tux- cademy project. Share-Alike You may alter, remix, extend, or translate this document or modify or build on it in other ways, as long as you make your contributions available under the same licence as the original. Further information and the full legal license grant may be found at http://creativecommons.org/licenses/by-sa/4.0/ Authors: Tobias Elsner, Anselm Lingnau Technical Editor: Anselm Lingnau [email protected] ⟨ ⟩ English Translation: Anselm Lingnau Typeset in Palatino, Optima and DejaVu Sans Mono Contents 1 Introduction 13 1.1 What is Linux? . 14 1.2 Linux History . 14 1.3 Free Software, “Open Source” and the GPL . 16 1.4 Linux—The Kernel . 19 1.5 Linux Properties . 21 1.6 Linux Distributions . 24 2 Using the Linux System 29 2.1 Logging In and Out . 30 2.2 Switching On and Off . 32 2.3 The System Administrator. 32 3 Who’s Afraid Of The Big Bad Shell? 35 3.1 Why? . 36 3.1.1 What Is The Shell? . 36 3.2 Commands . .$ . echo. tux. 37 3.2.1 Why Commands?. .tux. 37 3.2.2 Command Structure. .$ . ls. 38 3.2.3 Command Types . .hallo.c. 39 3.2.4 Even More Rules . .hallo.o. 39 4 Getting Help$ /bin/su - 41 4.1 Self-Help . .Password:. 42 4.2 The help Command and the --help Option . 42 4.3 The On-Line Manual . 42 4.3.1 Overview . 42 4.3.2 Structure . 43 4.3.3 Chapters . 44 4.3.4 Displaying Manual Pages . 44 4.4 Info Pages . 45 4.5 HOWTOs. 46 4.6 Further Information Sources . 46 5 Editors: vi and emacs 49 5.1 Editors. 50 5.2 The Standard—vi . 50 5.2.1 Overview . 50 5.2.2 Basic Functions . 51 5.2.3 Extended Commands . 54 5.3 The Challenger—Emacs . 56 5.3.1 Overview . 56 5.3.2 Basic Functions . 57 5.3.3 Extended Functions . 59 5.4 Other Editors . 61 4 Contents 6 Files: Care and Feeding 63 6.1 File and Path Names . 64 6.1.1 File Names . 64 6.1.2 Directories . 65 6.1.3 Absolute and Relative Path Names . 66 6.2 Directory Commands . 67 6.2.1 The Current Directory: cd & Co. 67 6.2.2 Listing Files and Directories—ls . 68 6.2.3 Creating and Deleting Directories: mkdir and rmdir . 69 6.3 File Search Patterns . 70 6.3.1 Simple Search Patterns . 70 6.3.2 Character Classes . 72 6.3.3 Braces . 73 6.4 Handling Files . 74 6.4.1 Copying, Moving and Deleting—cp and Friends. 74 6.4.2 Linking Files—ln and ln -s . 76 6.4.3 Displaying File Content—more and less . 80 6.4.4 Searching Files—find . 81 6.4.5 Finding Files Quickly—locate and slocate . 84 7 Regular Expressions 87 7.1 Regular Expressions: The Basics . 88 7.1.1 Regular Expressions: Extras . 88 7.2 Searching Files for Text—grep . 89 8 Standard I/O and Filter Commands 93 8.1 I/O Redirection and Command Pipelines . 94 8.1.1 Standard Channels . 94 8.1.2 Redirecting Standard Channels . 95 8.1.3 Command Pipelines . 98 8.2 Filter Commands . 99 8.3 Reading and Writing Files . 100 8.3.1 Outputting and Concatenating Text Files—cat . 100 8.3.2 Beginning and End—head and tail . 100 8.4 Data Management . 101 8.4.1 Sorted Files—sort and uniq . 101 8.4.2 Columns and Fields—cut, paste etc. 106 9 More About The Shell 111 9.1 Simple Commands: sleep, echo, and date . 112 9.2 Shell Variables and The Environment. 113 9.3 Command Types—Reloaded . 115 9.4 The Shell As A Convenient Tool. 116 9.5 Commands From A File . 119 9.6 The Shell As A Programming Language. 120 10 The File System 125 10.1 Terms . 126 10.2 File Types. 126 10.3 The Linux Directory Tree . 127 10.4 Directory Tree and File Systems. 135 11 Archiving and Compressing Files 137 11.1 Archival and Compression . 138 11.2 Archiving Files Using tar . 139 11.3 Compressing Files with gzip . 142 11.4 Compressing Files with bzip2 . 143 11.5 Archiving and Compressing Files Using zip and unzip . 144 5 A Sample Solutions 149 B Example Files 159 C LPIC-1 Certification 163 C.1 Overview. 163 C.2 Exam LPI-101 . 163 C.3 LPI Objectives In This Manual . 164 D Command Index 169 Index 173 List of Tables 4.1 Manual page sections . 43 4.2 Manual Page Topics . 44 5.1 Insert-mode commands for vi ...................... 52 5.2 Cursor positioning commands in vi ................... 53 5.3 Editing commands in vi ......................... 54 5.4 Replacement commands in vi ...................... 54 5.5 ex commands in vi ............................. 56 5.6 Possible buffer states in emacs ....................... 57 5.7 Cursor movement commands in emacs ................. 59 5.8 Deletion commands in emacs ....................... 59 5.9 Text-correcting commands in emacs ................... 60 6.1 Some file type designations in ls .................... 68 6.2 Some ls options . 68 6.3 Options for cp ............................... 74 6.4 Keyboard commands for more ......................$ echo tux 80 6.5 Keyboard commands for less ......................tux 81 6.6 Test conditions for find ..........................$ ls 82 6.7 Logical operators for find .........................hallo.c 83 7.1 Regular expression support . .hallo.o . 90 7.2 Options for grep (selected) . .$ . ./bin/su . .- . 90 Password: 8.1 Standard channels on Linux . 95 8.2 Options for cat (selection) . 100 8.3 Options for sort (selection) . 104 9.1 Important Shell Variables . 114 9.2 Key Strokes within bash .......................... 118 10.1 Linux file types . 126 10.2 Directory division according to the FHS . 134 List of Figures 1.1 Ken Thompson and Dennis Ritchie with a PDP-11 . 15 1.2 Linux development . 16 1.3 Organizational structure of the Debian project . 25 2.1 The login screens of some common Linux distributions . 30 2.2 Running programs as a different user in KDE . 33 4.1 A manual page . 44 5.1 vi’s modes . 52 5.2 The emacs launch screen . 58 8.1 Standard channels on Linux . 94 8.2 The tee command . 98 10.1 Content of the root directory (SUSE) . 128 $ echo tux tux $ ls hallo.c hallo.o $ /bin/su - Password: Preface This manual is an introduction to the use of Linux. Participants will not just learn how to operate the system according to instructions, but will receive solid funda- mental knowledge about Linux, to serve as a basis for further study. The course is directed towards computer users with little or no previous expo- sure to Linux. Knowledge of other operating systems is helpful but not a prereq- uisite. Ambitious users as well as system administrators will be learning how to make the most of the Linux operating system. Having studied this manual, participants will be able to use the Linux oper- ating system on an elementary basis. They will be able to work on the Linux command line and be familiar with the most important tools. Completion of this course or equivalent knowledge is necessary for more advanced Linux courses and for Linux Professional Institute certification. This courseware package is designed to support the training course as effi- ciently as possible, by presenting the material in a dense, extensive format for reading along, revision or preparation.
Recommended publications
  • Linux and Electronics
    Linux and Electronics Urs Lindegger Linux and Electronics Urs Lindegger Copyright © 2019-11-25 Urs Lindegger Table of Contents 1. Introduction .......................................................................................................... 1 Note ................................................................................................................ 1 2. Printed Circuits ...................................................................................................... 2 Printed Circuit Board design ................................................................................ 2 Kicad ....................................................................................................... 2 Eagle ..................................................................................................... 13 Simulation ...................................................................................................... 13 Spice ..................................................................................................... 13 Digital simulation .................................................................................... 18 Wings 3D ....................................................................................................... 18 User interface .......................................................................................... 19 Modeling ................................................................................................ 19 Making holes in Wings 3D .......................................................................
    [Show full text]
  • One of the Biggest Aims of Limux Was to Make the City More Independent.”
    FEATURE MUNICH Munich city council has migrated 15,000 workers from Windows to Linux. Mike Saunders and Graham Morrison visited the city and learned just how upset Steve Ballmer was… “One of the biggest aims of LiMux was to make the city more independent.” irschgarten, in the west of the last decade. Migrating workers of Munich, is one of Europe’s biggest Germany’s third-largest city was no easy Hbeer gardens, with over 8,000 task and there were plenty of hurdles along places to sit. It’s a spectacular sight in the way, but by and large the project has summer: hundreds of benches as far as been a storming success. the eye can see, trees providing some We’ve been following the progress of shelter from the heat, and a vast number LiMux (Linux in Munich) for years, and now of people relaxing and enjoying the city’s that the project is effectively complete, we famous beers. decided to visit the city and talk to the man But while 8,000 is an impressive number, in charge of it. Read on to discover how it it’s not as impressive as 15,000. That’s all started, how Microsoft tried to torpedo how many people the Munich city council it, and whether other cities in the world can has switched from Windows to Linux over follow Munich’s lead… 52 www.linuxvoice.com MUNICH FEATURE Humble beginnings Cast your mind back to 2001, and the state of Linux at the time. It was well established as a server OS and fairly well known among computing hobbyists, but still a small fish in the desktop pond.
    [Show full text]
  • Redhawk Linux User's Guide
    Linux® User’s Guide 0898004-520 May 2007 Copyright 2007 by Concurrent Computer Corporation. All rights reserved. This publication or any part thereof is intended for use with Concurrent products by Concurrent personnel, customers, and end–users. It may not be reproduced in any form without the written permission of the publisher. The information contained in this document is believed to be correct at the time of publication. It is subject to change without notice. Concurrent makes no warranties, expressed or implied, concerning the information contained in this document. To report an error or comment on a specific portion of the manual, photocopy the page in question and mark the correction or comment on the copy. Mail the copy (and any additional comments) to Concurrent Computer Corporation, 2881 Gateway Drive, Pompano Beach, Florida, 33069. Mark the envelope “Attention: Publications Department.” This publication may not be reproduced for any other reason in any form without written permission of the publisher. Concurrent Computer Corporation and its logo are registered trademarks of Concurrent Computer Corporation. All other Concurrent product names are trademarks of Concurrent while all other product names are trademarks or registered trademarks of their respective owners. Linux® is used pursuant to a sublicense from the Linux Mark Institute. Printed in U. S. A. Revision History: Date Level Effective With August 2002 000 RedHawk Linux Release 1.1 September 2002 100 RedHawk Linux Release 1.1 December 2002 200 RedHawk Linux Release 1.2 April 2003 300 RedHawk Linux Release 1.3, 1.4 December 2003 400 RedHawk Linux Release 2.0 March 2004 410 RedHawk Linux Release 2.1 July 2004 420 RedHawk Linux Release 2.2 May 2005 430 RedHawk Linux Release 2.3 March 2006 500 RedHawk Linux Release 4.1 May 2006 510 RedHawk Linux Release 4.1 May 2007 520 RedHawk Linux Release 4.2 Preface Scope of Manual This manual consists of three parts.
    [Show full text]
  • Limux - the IT-Evolution Status of Migration Strategy: Limux Is a Core Item for a Sustainable IT-Strategy Facing Munichs Independance
    LiMux - the IT-evolution Status of migration Strategy: LiMux is a core item for a sustainable IT-strategy facing Munichs independance Munich is on its way to an open, modern and citizen centered administration „Munich focuses on free software and open standards. They are indispensable elements of our information technology.“ Lord mayor Christian Ude Currently, there are 22 different IT departments, supporting 15.000 PC- workstations The IT of the city of Munich is going to be reorganized. This includes centralization of plan, build and run, installation of new processes according to ITIL®, standardization of applications and modernization of the IT architecture LiMux is Germanys biggest Linux project in the public sector The six main mandates of the city council of Munich Consistent linux based operating system (LiMux client) Vendor independent Office solution Migration of business applications to platform-open solutions Consolidation of PC-standard applications Consolidation and migration of MS-Office macros, templates and forms Implementation of system management solutions (standardization) IT-reorganization: Currently, the IT of the Munich administration is on its way to a rebuilding-process Facts ~ 33.000 employees (~ 1.000 located in the IT) ~ 15.000 PC-workstations 51 locations 22 independent IT-departments ~ 140 mio Euro IT-expenses Reorganization of Munichs IT (centralization of Plan, Build and Run, standardization of business applications) Project goals: Open Source until 2013 Purpose until 2011... Current status (June 2012) is Open source application programs for ~10.500 PC-workstations are migra- office communication are implemen- ted ted for each user Since 2009, all PC-workstations have Document templates are systematical- been provided with OpenOffice.org, ly based in the open source document Firefox and Thunderbird template tool „WollMux“ Since 2009, WollMux has been esta- blished as a standard document tem- Purpose until 2013..
    [Show full text]
  • GNU Emacs Manual
    GNU Emacs Manual GNU Emacs Manual Sixteenth Edition, Updated for Emacs Version 22.1. Richard Stallman This is the Sixteenth edition of the GNU Emacs Manual, updated for Emacs version 22.1. Copyright c 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with the Invariant Sections being \The GNU Manifesto," \Distribution" and \GNU GENERAL PUBLIC LICENSE," with the Front-Cover texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development." Published by the Free Software Foundation 51 Franklin Street, Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-86-8 Cover art by Etienne Suvasa. i Short Contents Preface ::::::::::::::::::::::::::::::::::::::::::::::::: 1 Distribution ::::::::::::::::::::::::::::::::::::::::::::: 2 Introduction ::::::::::::::::::::::::::::::::::::::::::::: 5 1 The Organization of the Screen :::::::::::::::::::::::::: 6 2 Characters, Keys and Commands ::::::::::::::::::::::: 11 3 Entering and Exiting Emacs ::::::::::::::::::::::::::: 15 4 Basic Editing
    [Show full text]
  • How Free Become Open and Everything Else Under the Sun
    This article was published as the featured article in the Journal Media/Culture here: http://journal.media-culture.org.au/0406/02_Coleman-Hill.php How Free Become Open and Everything Else Under the Sun Biella Coleman and Benjamin Mako Hill Abstract: Free and Open Source Software (FOSS) has been adopted as a political tool by leftist activists. At the same time, it has been embraced by large corporations to extend profits and has been criticized as an integral force in late capitalism. It has been adopted by members of the growing Commons movement as a model for limiting the power of capitalism. This essay attempts to confront the variability of these relationships through a cursory analysis of each field and through an look at FOSS philosophy and practice. It argues that Free Software exists as a politically agnostic field of practice--built on and through a broadly defined philosophy. It analyzes the way that this philosophy is well suited for the spread of FOSS technologies and its translation into the terms of radically different, even oppositional, social and political movements. Author Bios and Contact Information Benjamin "Mako" Hill is a Free and Open Source Software developer and advocate. He is a director of Software in the Public Interest and a member of the Debian project -- by most accounts the single largest Free Software project. In addition to volunteer and professional Free Software work, Hill writes and speaks extensively on issues of free software, intellectual property, collaboration, and technology. email: [email protected] Biella Coleman is a cultural anthropologist from the University of Chicago currently writing her dissertation on the ethical dynamics and political implications of the Free and Open Source movement.
    [Show full text]
  • Emacs Quick Reference
    EmacsQuickReference Page1of4 EmacsQuick Emacs-Ring-SiteNumber27 Reference [NextSite|SkipNextSite|PreviousSite|SkipPreviousSite|ListSites| Home] ByPaulSeamons Notation ItisimportanttounderstandthenotationcommonlyusedinEmacsdocumentation.MostofthecommandsusedinEmacsconsistofamodifierkey,in conjuctionwithoneormoreotherkeys.Thefollowingarethecommonmodifierkeys: CTRL -(C)- TheCONTROLkey. META -(M)- DependingupontheterminalthisistheALTkey.YoumayalsousetheESCkeytosendMETA. ESC -(ESC)- TheESCAPEkey. SHIFT -(S)- TheSHIFTkey. InEmacsdocumentationitiscommontouseanabbreviatedsyntaxwhendescribingkeysequences.Insteadoftyping CTRL-xCTRL-c Youwouldtype C-xC-c ThiswouldrepresentholdingdowntheCONTROLkeyandpressingtheletterx,andthenholdingdowntheCONTROLkeyandpressingtheletterc. (M-C-\wouldrepresentholdingdownthetheALTkeyandCONTROLkeyandpressingthe"\"key.YoucouldalsopressandreleasetheESCAPEkey holddowntheCONTROLkeyandtypethe"\"key.) Thefollowingisatableofnotationforotherkeyboardcharacters. BACKSPC TheBACKSPACEkey. SPC TheSPACEbar. ENTER TheEnterkey. RET TheEnterkey. TAB TheTABkey. InsertMode? ThisisalargeplacewhereEmacsdiffersfromtheVieditor.InViyouareeitherinInsertModeoryouarenot.Inordertoexecutecommandsotherthan keyinsertionyouneedtobeoutofInsertionMode.ByusingCTRLtoescapethekeysequences,Emacsallowsyoutousethecommandsatanypoint inyoursession.Forexample,ifyouareinViandareinsertingtextyouwouldhavetotypethefollowingkeysequencetosaveyourfileandreturnto InsertMode: ESC:wi InEmacs(whichisessentiallyalwaysin"InsertMode")youwouldtypethefollowing: C-xC-s Whenviewedfromtheinsertionmodeviewpoint,Vidoesn'treallysaveanykeystrokesoverEmacsasiscommonlyclaimedbyreligiousViadvocates.
    [Show full text]
  • Operated by Triad National Security, LLC for the U.S. Department of Energy's NNSA Container Mythbusters
    Operated by Triad National Security, LLC for the U.S. Department of Energy's NNSA Container Mythbusters Debunking the Nonsense, Dissecting the Misconceptions, and Distilling the Facts of High-Performance Containering Michael Jennings (@mej0) – [email protected] Platforms Team Lead, HPC Systems Group Los Alamos National Laboratory HPC/AI Advisory Council 2019 Swiss Conference HPCXXL 2019 Winter Meeting Lugano, Switzerland Wednesday, 3 April 2019 Operated by Triad National Security, LLC for the U.S. Department of Energy's NNSA UNCLASSIFIED LA-UR-19-XXXXX Los Alamos National Laboratory Introduction • Established in 1943 as “Site Y” of the Manhattan Project • Mission: To solve National Security challenges through Scientific Excellence • One of the largest science and technology institutes in the world, conducting multidisciplinary research in fields such as national security, space exploration, renewable energy, medicine, nanotechnology, and supercomputing. • Funded primarily by the Department of Energy, we also do extensive work for/with the Departments of Defense and Homeland Security, the Intelligence Community, et al. • Our strategy reflects US government priorities including nuclear security, intelligence, defense, emergency response, nonproliferation, counterterrorism, and more. • We help to ensure the safety, security, and effectiveness of the US nuclear stockpile. • Since 1992, the United States no longer performs full-scale testing of nuclear weapons. This has necessitated continuous, ongoing leadership in large-scale simulation capabilities
    [Show full text]
  • Introduction to Linux
    Presentation to U3A - Linux Introduction 8 June 2019 – Terry Schuster - [email protected] What is Linux? https://en.wikipedia.org/wiki/Linux https://www.iotforall.com/linux-operating-system-iot-devices/ In simple terms, Linux is an operating system which was developed to be a home-built version of UNIX, one of the first operating systems which could be run on different brands of mainframe computers with quite different types of hardware. Linux has developed to the extent that it is the leading operating system on servers and other big iron systems such as mainframe computers, and the only OS used on TOP500 supercomputers (since November 2017, having gradually eliminated all competitors). It is used by around 2.3 percent of desktop computers. The Chromebook, which runs the Linux kernel-based Chrome OS, dominates the US K–12 education market. In the mid 2000’s, Linux was quickly seen as a good building block for smartphones, as it provided an out- of-the-box modern, full-featured Operating System with very good device driver support, and that was considered both scalable for the new generation of devices and had the added benefit of being royalty free. It is now becoming very common in IoT devices, such as smart watches/refrigerators, home controllers, etc. etc. BTW, Tux is a penguin character and the official brand character of the Linux kernel. Originally created as an entry to a Linux logo competition, Tux is the most commonly used icon for Linux, although different Linux distributions depict Tux in various styles. The character is used in many other Linux programs and as a general symbol of Linux.
    [Show full text]
  • SUSE Linux Enterprise Server 11 SP4 System Analysis and Tuning Guide System Analysis and Tuning Guide SUSE Linux Enterprise Server 11 SP4
    SUSE Linux Enterprise Server 11 SP4 System Analysis and Tuning Guide System Analysis and Tuning Guide SUSE Linux Enterprise Server 11 SP4 Publication Date: September 24, 2021 SUSE LLC 1800 South Novell Place Provo, UT 84606 USA https://documentation.suse.com Copyright © 2006– 2021 SUSE LLC and contributors. All rights reserved. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or (at your option) version 1.3; with the Invariant Section being this copyright notice and license. A copy of the license version 1.2 is included in the section entitled “GNU Free Documentation License”. For SUSE trademarks, see http://www.suse.com/company/legal/ . All other third party trademarks are the property of their respective owners. A trademark symbol (®, ™ etc.) denotes a SUSE or Novell trademark; an asterisk (*) denotes a third party trademark. All information found in this book has been compiled with utmost attention to detail. However, this does not guarantee complete accuracy. Neither SUSE LLC, its aliates, the authors nor the translators shall be held liable for possible errors or the consequences thereof. Contents About This Guide xi 1 Available Documentation xii 2 Feedback xiv 3 Documentation Conventions xv I BASICS 1 1 General Notes on System Tuning 2 1.1 Be Sure What Problem to Solve 2 1.2 Rule Out Common Problems 3 1.3 Finding the Bottleneck 3 1.4 Step-by-step Tuning 4 II SYSTEM MONITORING 5 2 System Monitoring Utilities 6 2.1 Multi-Purpose Tools 6 vmstat 7
    [Show full text]
  • INSIDE! Double-Sided DVD Double-Sided
    and lots of LINUX LINUX PRO MAGAZINE FREE USB PASSWORD SAFER BOOT DVD other timely Making Secure Boot MANAGER and useful tools work with Linux ISSUE ISSUE 206 Double-Sided DVD JANUARY 2018 JANUARY 2018 JANUARY INSIDE! SAFER Safer Boot Safer UEFI Shim TPM Backup Tools Stacer DDoS Attacks Pi FM Radio Volumio 2 Volumio Radio FM Pi Attacks DDoS Stacer Backup Tools TPM Shim UEFI BOOT Keeping control of the startup process UEFI Tricks Add a custom app that runs from the firmware Automated 5 Backup Tools Pi FM Radio DDoS Attack Stacer Build a stairway Avoiding a denial Clean up your to maker heaven of service nightmare Linux system Issue 206 Jan 2018 FOSSPicks US$ 15.99 CAN$ 17.99 FOSS • qutebrowser 1.0 0 74820 58049 Marke • Storyboarder t • CoreFreq ing • Marketing Free Software Audacity ffmpeg • Fragment synthesizer • Phipps: FOSS Communities Need Equal Rights Tutorials 3 • Digitize Your LPs with Audacity • ffmpeg 01 WWW.LINUXPROMAGAZINE.COM EDITORIAL Welcome TOMORROW’S NEWS Dear Reader, When I started working for this magazine, way back in 2004, of lobbyists and marketing professionals who keep chipping Linux was really picking up momentum. That was back in away at public opinion when everyone else has gone back to those years when every year was supposed to be “the year of their day jobs. the Linux desktop,” and the epic Linux vs. Windows battle Software has no shape or solid edges. The value of a software was revving to a full burn. product is simply what whoever owns it says they will charge One of the best examples of the Linux juggernaut was the city you for it.
    [Show full text]
  • Praise for the Official Ubuntu Book
    Praise for The Official Ubuntu Book “The Official Ubuntu Book is a great way to get you started with Ubuntu, giving you enough information to be productive without overloading you.” —John Stevenson, DZone Book Reviewer “OUB is one of the best books I’ve seen for beginners.” —Bill Blinn, TechByter Worldwide “This book is the perfect companion for users new to Linux and Ubuntu. It covers the basics in a concise and well-organized manner. General use is covered separately from troubleshooting and error-handling, making the book well-suited both for the beginner as well as the user that needs extended help.” —Thomas Petrucha, Austria Ubuntu User Group “I have recommended this book to several users who I instruct regularly on the use of Ubuntu. All of them have been satisfied with their purchase and have even been able to use it to help them in their journey along the way.” —Chris Crisafulli, Ubuntu LoCo Council, Florida Local Community Team “This text demystifies a very powerful Linux operating system . in just a few weeks of having it, I’ve used it as a quick reference a half dozen times, which saved me the time I would have spent scouring the Ubuntu forums online.” —Darren Frey, Member, Houston Local User Group This page intentionally left blank The Official Ubuntu Book Sixth Edition This page intentionally left blank The Official Ubuntu Book Sixth Edition Benjamin Mako Hill Matthew Helmke Amber Graner Corey Burger With Jonathan Jesse, Kyle Rankin, and Jono Bacon Upper Saddle River, NJ • Boston • Indianapolis • San Francisco New York • Toronto • Montreal • London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks.
    [Show full text]