LINUX: Rute User's Tutorial and Exposition

Total Page:16

File Type:pdf, Size:1020Kb

LINUX: Rute User's Tutorial and Exposition LINUX: Rute User’s Tutorial and Exposition Paul Sheer August 14, 2001 Pages up to and including this page are not included by Prentice Hall. 2 “The reason we don’t sell billions and billions of Guides,” continued Harl, after wiping his mouth, “is the expense. What we do is we sell one Guide billions and billions of times. We exploit the multidimensional nature of the Universe to cut down on manufacturing costs. And we don’t sell to penniless hitchhikers. What a stupid notion that was! Find the one section of the market that, more or less by definition, doesn’t have any money, and try to sell to it. No. We sell to the affluent business traveler and his vacationing wife in a billion, billion different futures. This is the most radical, dynamic and thrusting business venture in the entire multidimensional infinity of space-time-probability ever.” ... Ford was completely at a loss for what to do next. “Look,” he said in a stern voice. But he wasn’t certain how far saying things like “Look” in a stern voice was necessarily going to get him, and time was not on his side. What the hell, he thought, you’re only young once, and threw himself out of the window. That would at least keep the element of surprise on his side. ... In a spirit of scientific inquiry he hurled himself out of the window again. Douglas Adams Mostly Harmless Strangely, the thing that least intrigued me was how they’d managed to get it all done. I suppose I sort of knew. If I’d learned one thing from traveling, it was that the way to get things done was to go ahead and do them. Don’t talk about going to Borneo. Book a ticket, get a visa, pack a bag, and it just happens. Alex Garland The Beach vi Chapter Summary 1 Introduction .................................. 1 2 Computing Sub-basics ............................ 5 3 PC Hardware .................................. 15 4 Basic Commands ................................ 25 5 Regular Expressions .............................. 49 6 Editing Text Files ................................ 53 7 Shell Scripting ................................. 61 8 Streams and sed — The Stream Editor ................... 73 9 Processes, Environment Variables ...................... 81 10 Mail ....................................... 97 11 User Accounts and Ownerships ....................... 101 12 Using Internet Services ............................ 111 13 LINUX Resources ................................ 117 14 Permission and Modification Times ..................... 123 15 Symbolic and Hard Links ........................... 127 16 Pre-installed Documentation ......................... 131 17 Overview of the UNIX Directory Layout .................. 135 18 UNIX Devices .................................. 141 19 Partitions, File Systems, Formatting, Mounting .............. 153 20 Advanced Shell Scripting ........................... 171 21 System Services and lpd ........................... 193 22 Trivial Introduction to C ........................... 207 23 Shared Libraries ................................ 233 24 Source and Binary Packages ......................... 237 25 Introduction to IP ............................... 247 26 TCP and UDP .................................. 263 vii Chapter Summary 27 DNS and Name Resolution .......................... 273 28 Network File System, NFS .......................... 285 29 Services Running Under inetd ....................... 291 30 exim and sendmail .............................. 299 31 lilo, initrd, and Booting ......................... 317 32 init, ?getty, and UNIX Run Levels .................... 325 33 Sending Faxes ................................. 333 34 uucp and uux .................................. 337 35 The LINUX File System Standard ...................... 347 36 httpd — Apache Web Server ........................ 389 37 crond and atd ................................. 409 38 postgres SQL Server ............................ 413 39 smbd — Samba NT Server .......................... 425 40 named — Domain Name Server ....................... 437 41 Point-to-Point Protocol — Dialup Networking .............. 453 42 The LINUX Kernel Source, Modules, and Hardware Support ...... 463 43 The X Window System ............................ 485 44 UNIX Security ................................. 511 A Lecture Schedule ................................ 525 B LPI Certification Cross-Reference ...................... 531 C RHCE Certification Cross-Reference .................... 543 D LINUX Advocacy FAQ ............................. 551 E The GNU General Public License Version 2 ................ 573 Index 581 viii Contents Acknowledgments xxxi 1 Introduction 1 1.1 What This Book Covers . 1 1.2 Read This Next. 1 1.3 What Do I Need to Get Started? . 1 1.4 More About This Book . 2 1.5 I Get Frustrated with UNIX Documentation That I Don’t Understand . 2 1.6 LPI and RHCE Requirements . 2 1.7 Not RedHat: RedHat-like ........................... 3 1.8 Updates and Errata . 3 2 Computing Sub-basics 5 2.1 Binary, Octal, Decimal, and Hexadecimal . 5 2.2 Files . 7 2.3 Commands . 8 2.4 Login and Password Change . 9 2.5 Listing Files . 10 2.6 Command-Line Editing Keys . 10 2.7 Console Keys . 11 2.8 Creating Files . 12 2.9 Allowable Characters for File Names . 12 2.10 Directories . 12 3 PC Hardware 15 3.1 Motherboard . 15 3.2 Master/Slave IDE . 19 ix Contents 3.3 CMOS . 20 3.4 Serial Devices . 20 3.5 Modems . 23 4 Basic Commands 25 4.1 The ls Command, Hidden Files, Command-Line Options . 25 4.2 Error Messages . 26 4.3 Wildcards, Names, Extensions, and glob Expressions . 29 4.3.1 File naming . 29 4.3.2 Glob expressions . 32 4.4 Usage Summaries and the Copy Command . 33 4.5 Directory Manipulation . 34 4.6 Relative vs. Absolute Pathnames . 34 4.7 System Manual Pages . 35 4.8 System info Pages . 36 4.9 Some Basic Commands . 36 4.10 The mc File Manager . 40 4.11 Multimedia Commands for Fun . 40 4.12 Terminating Commands . 41 4.13 Compressed Files . 41 4.14 Searching for Files . 42 4.15 Searching Within Files . 43 4.16 Copying to MS-DOS and Windows Formatted Floppy Disks . 44 4.17 Archives and Backups . 45 4.18 The PATH Where Commands Are Searched For . 46 4.19 The -- Option . 47 5 Regular Expressions 49 5.1 Overview . 49 5.2 The fgrep Command . 51 5.3 Regular Expression \{ \} Notation . 51 5.4 + ? \< \> ( ) | Notation . 52 5.5 Regular Expression Subexpressions . 52 x Contents 6 Editing Text Files 53 6.1 vi ......................................... 53 6.2 Syntax Highlighting . 57 6.3 Editors . 57 6.3.1 Cooledit . 58 6.3.2 vi and vim ............................... 58 6.3.3 Emacs . 59 6.3.4 Other editors . 59 7 Shell Scripting 61 7.1 Introduction . 61 7.2 Looping: the while and until Statements . 62 7.3 Looping: the for Statement . 63 7.4 breaking Out of Loops and continueing . 65 7.5 Looping Over Glob Expressions . 66 7.6 The case Statement . 66 7.7 Using Functions: the function Keyword . 67 7.8 Properly Processing Command-Line Args: shift ............. 68 7.9 More on Command-Line Arguments: $@ and $0 .............. 70 7.10 Single Forward Quote Notation . 70 7.11 Double-Quote Notation . 70 7.12 Backward-Quote Substitution . 71 8 Streams and sed — The Stream Editor 73 8.1 Introduction . 73 8.2 Tutorial . 74 8.3 Piping Using | Notation . 74 8.4 A Complex Piping Example . 75 8.5 Redirecting Streams with >& ......................... 75 8.6 Using sed to Edit Streams . 77 8.7 Regular Expression Subexpressions . 77 8.8 Inserting and Deleting Lines . 79 9 Processes, Environment Variables 81 9.1 Introduction . 81 9.2 ps — List Running Processes . 82 9.3 Controlling Jobs . 82 xi Contents 9.4 Creating Background Processes . 83 9.5 killing a Process, Sending Signals . 84 9.6 List of Common Signals . 86 9.7 Niceness of Processes, Scheduling Priority . 87 9.8 Process CPU/Memory Consumption, top ................. 88 9.9 Environments of Processes . 90 10 Mail 97 10.1 Sending and Reading Mail . 99 10.2 The SMTP Protocol — Sending Mail Raw to Port 25 ............ 99 11 User Accounts and Ownerships 101 11.1 File Ownerships . 101 11.2 The Password File /etc/passwd ...................... 102 11.3 Shadow Password File: /etc/shadow ................... 103 11.4 The groups Command and /etc/group ................. 104 11.5 Manually Creating a User Account . 105 11.6 Automatically: useradd and groupadd .................. 106 11.7 User Logins . 106 11.7.1 The login command . 106 11.7.2 The set user, su command . 107 11.7.3 The who, w, and users commands to see who is logged in . 108 11.7.4 The id command and effective UID . 109 11.7.5 User limits . 109 12 Using Internet Services 111 12.1.
Recommended publications
  • Ubuntu Kung Fu
    Prepared exclusively for Alison Tyler Download at Boykma.Com What readers are saying about Ubuntu Kung Fu Ubuntu Kung Fu is excellent. The tips are fun and the hope of discov- ering hidden gems makes it a worthwhile task. John Southern Former editor of Linux Magazine I enjoyed Ubuntu Kung Fu and learned some new things. I would rec- ommend this book—nice tips and a lot of fun to be had. Carthik Sharma Creator of the Ubuntu Blog (http://ubuntu.wordpress.com) Wow! There are some great tips here! I have used Ubuntu since April 2005, starting with version 5.04. I found much in this book to inspire me and to teach me, and it answered lingering questions I didn’t know I had. The book is a good resource that I will gladly recommend to both newcomers and veteran users. Matthew Helmke Administrator, Ubuntu Forums Ubuntu Kung Fu is a fantastic compendium of useful, uncommon Ubuntu knowledge. Eric Hewitt Consultant, LiveLogic, LLC Prepared exclusively for Alison Tyler Download at Boykma.Com Ubuntu Kung Fu Tips, Tricks, Hints, and Hacks Keir Thomas The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas Prepared exclusively for Alison Tyler Download at Boykma.Com Many of the designations used by manufacturers and sellers to distinguish their prod- ucts are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC.
    [Show full text]
  • Muuglines the Manitoba UNIX User Group Newsletter
    MUUGLines The Manitoba UNIX User Group Newsletter Volume 28 No. 10, June 2016 Editor: Bradford C. Vokey Next Meeting: June 14th, 2016, )here to Find the Meeting 7:30 pm University of Winnipeg Room 1M28 Manitoba Hall Main Topic: Gentoo Eric Raine will be presenting on the Gentoo Linux Dist. Differ- ences in installation from Ubuntu will be covered. Also covered is how to configure installation of packages and update. entoo is a free operating s!stem based on either Linux or Free#$D that can be automaticall! optimi%ed and customized for just about any applic- ation or need. RTFM: Termina Control Commands Due to a recent influx of new and novice members 'revor Cordes will be doing an R'") instead of a daemon dash this month. The topic is something ever! *+,- user should master. terminal control commands (i.e.0 ^2 and ^L3 and rudimentar! job control. These little dual ke! presses will streamline !our terminal sessions and make you more efficient. 4ou5ll wonder how you ever got b! without them6 Door %rize'#( )eetings are held in the University of Winnipeg's 'his month we will be giving )anitoba Hall (marked “M” on the map30 along awa! the O8Reill! book #almoral Street south of Ellice Avenue. We can be "Using csh & tcsh"0 found in room 1)@A0 but may occasionall! get b! Paul Du#ois. relocated to nearb! rooms. If there is a change0 it should be conve!ed via a sign on the door to 1)@A. Type Less, Accomplish More. Doors are usuall! open b! 7.CC pm with the meeting starting at 7.DC pm.
    [Show full text]
  • Monitoring Glacial Advance and Retreat of the Skaftafellsjökull Glacier, Iceland
    Monitoring Glacial Advance and Retreat of the Skaftafellsjökull Glacier, Iceland Bryce L. Carmichael Amber E. Smith Elizabeth City State University North Carolina Central University Abstract- Visual documentation of glaciers can provide package gPhoto2 was installed to the Linux board daily, seasonal, and yearly statistics concerning their [www.gphoto.org]. Next, we wrote a set of custom scripts advance and retreat, as well as contribute to historical that ran periodically to capture photographs and archive them. record. Recognizing how glaciers change will improve glacier models, which leads to a better understanding of An all-weather case for the camera had to be climate and ice-sheet interactions. Obtaining frequent constructed in order to provide the device with protection and images of glaciers can be difficult since they are often power when out in the field. The picture feedback was located in remote locations with rugged terrain and harsh required to have protection also, so silica packs were placed in weather conditions. Access can be arduous even during the case to prevent moisture build-up on the camera lens. warm weather months. To overcome this obstacle, we propose building an autonomous imaging device that is II. BACKGROUND powered by solar panels and can withstand the harsh weather. The imaging device will have the ability to The Center for Remote Sensing of Ice Sheets capture images of the glacier at specified times, store them (CReSIS) Science and Technology Center was established by for uploading, and send them over a radio link to an the National Science Foundation (NSF) in 2005. The Internet access point.
    [Show full text]
  • The GNOME Desktop Environment
    The GNOME desktop environment Miguel de Icaza ([email protected]) Instituto de Ciencias Nucleares, UNAM Elliot Lee ([email protected]) Federico Mena ([email protected]) Instituto de Ciencias Nucleares, UNAM Tom Tromey ([email protected]) April 27, 1998 Abstract We present an overview of the free GNU Network Object Model Environment (GNOME). GNOME is a suite of X11 GUI applications that provides joy to users and hackers alike. It has been designed for extensibility and automation by using CORBA and scripting languages throughout the code. GNOME is licensed under the terms of the GNU GPL and the GNU LGPL and has been developed on the Internet by a loosely-coupled team of programmers. 1 Motivation Free operating systems1 are excellent at providing server-class services, and so are often the ideal choice for a server machine. However, the lack of a consistent user interface and of consumer-targeted applications has prevented free operating systems from reaching the vast majority of users — the desktop users. As such, the benefits of free software have only been enjoyed by the technically savvy computer user community. Most users are still locked into proprietary solutions for their desktop environments. By using GNOME, free operating systems will have a complete, user-friendly desktop which will provide users with powerful and easy-to-use graphical applications. Many people have suggested that the cause for the lack of free user-oriented appli- cations is that these do not provide enough excitement to hackers, as opposed to system- level programming. Since most of the GNOME code had to be written by hackers, we kept them happy: the magic recipe here is to design GNOME around an adrenaline response by trying to use exciting models and ideas in the applications.
    [Show full text]
  • Filesystems HOWTO Filesystems HOWTO Table of Contents Filesystems HOWTO
    Filesystems HOWTO Filesystems HOWTO Table of Contents Filesystems HOWTO..........................................................................................................................................1 Martin Hinner < [email protected]>, http://martin.hinner.info............................................................1 1. Introduction..........................................................................................................................................1 2. Volumes...............................................................................................................................................1 3. DOS FAT 12/16/32, VFAT.................................................................................................................2 4. High Performance FileSystem (HPFS)................................................................................................2 5. New Technology FileSystem (NTFS).................................................................................................2 6. Extended filesystems (Ext, Ext2, Ext3)...............................................................................................2 7. Macintosh Hierarchical Filesystem − HFS..........................................................................................3 8. ISO 9660 − CD−ROM filesystem.......................................................................................................3 9. Other filesystems.................................................................................................................................3
    [Show full text]
  • Linux: Come E Perchх
    ÄÒÙÜ Ô ©2007 mcz 12 luglio 2008 ½º I 1. Indice II ½º Á ¾º ¿º ÈÖÞÓÒ ½ º È ÄÒÙÜ ¿ º ÔÔÖÓÓÒÑÒØÓ º ÖÒÞ ×Ó×ØÒÞÐ ÏÒÓÛ× ¾½ º ÄÒÙÜ ÕÙÐ ×ØÖÙÞÓÒ ¾ º ÄÒÙÜ ÀÖÛÖ ×ÙÔÔ ÓÖØØÓ ¾ º È Ð ÖÒÞ ØÖ ÖÓ ÓØ Ù×Ö ¿½ ½¼º ÄÒÙÜ × Ò×ØÐÐ ¿¿ ½½º ÓÑ × Ò×ØÐÐÒÓ ÔÖÓÖÑÑ ¿ ½¾º ÒÓÒ ØÖÓÚÓ ÒÐ ×ØÓ ÐÐ ×ØÖÙÞÓÒ ¿ ½¿º Ó׳ ÙÒÓ ¿ ½º ÓÑ × Ð ××ØÑ ½º ÓÑ Ð ½º Ð× Ñ ½º Ð Ñ ØÐ ¿ ½º ÐÓ ½º ÓÑ × Ò×ØÐÐ Ð ×ØÑÔÒØ ¾¼º ÓÑ ÐØØÖ¸ Ø×Ø ÐÖ III Indice ¾½º ÓÑ ÚÖ Ð ØÐÚ×ÓÒ ¿ 21.1. Televisioneanalogica . 63 21.2. Televisione digitale (terrestre o satellitare) . ....... 64 ¾¾º ÐÑØ ¾¿º Ä 23.1. Fotoritocco ............................. 67 23.2. Grafica3D.............................. 67 23.3. Disegnovettoriale-CAD . 69 23.4.Filtricoloreecalibrazionecolori . .. 69 ¾º ×ÖÚ Ð ½ 24.1.Vari.................................. 72 24.2. Navigazionedirectoriesefiles . 73 24.3. CopiaCD .............................. 74 24.4. Editaretesto............................. 74 24.5.RPM ................................. 75 ¾º ×ÑÔ Ô ´ËÐе 25.1.Montareundiscoounapenna . 77 25.2. Trovareunfilenelsistema . 79 25.3.Vedereilcontenutodiunfile . 79 25.4.Alias ................................. 80 ¾º × ÚÓÐ×× ÔÖÓÖÑÑÖ ½ ¾º ÖÓÛ×Ö¸ ÑÐ ººº ¿ ¾º ÖÛÐРгÒØÚÖÙ× Ð ÑØØÑÓ ¾º ÄÒÙÜ ½ ¿¼º ÓÑ ØÖÓÚÖ ÙØÓ ÖÖÑÒØ ¿ ¿½º Ð Ø×ØÙÐ Ô Ö Ð ×ØÓÔ ÄÒÙÜ ¿¾º ´ÃµÍÙÒØÙ¸ ÙÒ ×ØÖÙÞÓÒ ÑÓÐØÓ ÑØ ¿¿º ËÙÜ ÙÒ³ÓØØÑ ×ØÖÙÞÓÒ ÄÒÙÜ ½¼½ ¿º Á Ó Ò ÄÒÙÜ ½¼ ¿º ÃÓÒÕÙÖÓÖ¸ ÕÙ×ØÓ ½¼ ¿º ÃÓÒÕÙÖÓÖ¸ Ñ ØÒØÓ Ô Ö ½½¿ 36.1.Unaprimaocchiata . .114 36.2.ImenudiKonqueror . .115 36.3.Configurazione . .116 IV Indice 36.4.Alcuniesempidiviste . 116 36.5.Iservizidimenu(ServiceMenu) . 119 ¿º ÃÓÒÕÙÖÓÖ Ø ½¾¿ ¿º à ÙÒ ÖÖÒØ ½¾ ¿º à ÙÒ ÐÙ×ÓÒ ½¿½ ¼º ÓÒÖÓÒØÓ Ò×ØÐÐÞÓÒ ÏÒÓÛ×È ÃÍÙÒØÙ º½¼ ½¿¿ 40.1.
    [Show full text]
  • State of the Art: Where We Are with the Ext3 Filesystem
    State of the Art: Where we are with the Ext3 filesystem Mingming Cao, Theodore Y. Ts’o, Badari Pulavarty, Suparna Bhattacharya IBM Linux Technology Center {cmm, theotso, pbadari}@us.ibm.com, [email protected] Andreas Dilger, Alex Tomas, Cluster Filesystem Inc. [email protected], [email protected] Abstract 1 Introduction Although the ext2 filesystem[4] was not the first filesystem used by Linux and while other filesystems have attempted to lay claim to be- ing the native Linux filesystem (for example, The ext2 and ext3 filesystems on Linux R are when Frank Xia attempted to rename xiafs to used by a very large number of users. This linuxfs), nevertheless most would consider the is due to its reputation of dependability, ro- ext2/3 filesystem as most deserving of this dis- bustness, backwards and forwards compatibil- tinction. Why is this? Why have so many sys- ity, rather than that of being the state of the tem administrations and users put their trust in art in filesystem technology. Over the last few the ext2/3 filesystem? years, however, there has been a significant amount of development effort towards making There are many possible explanations, includ- ext3 an outstanding filesystem, while retaining ing the fact that the filesystem has a large and these crucial advantages. In this paper, we dis- diverse developer community. However, in cuss those features that have been accepted in our opinion, robustness (even in the face of the mainline Linux 2.6 kernel, including direc- hardware-induced corruption) and backwards tory indexing, block reservation, and online re- compatibility are among the most important sizing.
    [Show full text]
  • Linux Hardware Compatibility HOWTO
    Linux Hardware Compatibility HOWTO Steven Pritchard Southern Illinois Linux Users Group [email protected] 3.1.5 Copyright © 2001−2002 by Steven Pritchard Copyright © 1997−1999 by Patrick Reijnen 2002−03−28 This document attempts to list most of the hardware known to be either supported or unsupported under Linux. Linux Hardware Compatibility HOWTO Table of Contents 1. Introduction.....................................................................................................................................................1 1.1. Notes on binary−only drivers...........................................................................................................1 1.2. Notes on commercial drivers............................................................................................................1 1.3. System architectures.........................................................................................................................1 1.4. Related sources of information.........................................................................................................2 1.5. Known problems with this document...............................................................................................2 1.6. New versions of this document.........................................................................................................2 1.7. Feedback and corrections..................................................................................................................3 1.8. Acknowledgments.............................................................................................................................3
    [Show full text]
  • Proceedings of the 4Th Annual Linux Showcase & Conference, Atlanta
    USENIX Association Proceedings of the 4th Annual Linux Showcase & Conference, Atlanta Atlanta, Georgia, USA October 10 –14, 2000 THE ADVANCED COMPUTING SYSTEMS ASSOCIATION © 2000 by The USENIX Association All Rights Reserved For more information about the USENIX Association: Phone: 1 510 528 8649 FAX: 1 510 548 5738 Email: [email protected] WWW: http://www.usenix.org Rights to individual papers remain with the author or the author's employer. Permission is granted for noncommercial reproduction of the work for educational or research purposes. This copyright notice must be included in the reproduced paper. USENIX acknowledges all trademarks herein. The State of the Arts - Linux Tools for the Graphic Artist Atlanta Linux Showcase 2000 by Michael J. Hammel - The Graphics Muse [email protected] A long time ago, in a nerd’s life far, far away.... I can trace certain parts of my life back to certain events. I remember how getting fired from a dormitory cafeteria job forced me to focus more on completing my CS degree, which in turn led to working in high tech instead of food service. I can thank the short, fat, bald egomaniac in charge there for pushing my life in the right direction. I can also be thankful he doesn’t read papers like this. Like that fortuitous event, the first time I got my hands on a Macintosh and MacPaint - I don’t even remember if that was the tools name - was when my love affair with computer art was formed. I’m not trained in art. In fact, I can’t draw worth beans.
    [Show full text]
  • Alternative File Manager for Gnome
    C@ELOLJ<I Gnome Commander 8ck\ieXk`m\]`c\dXeX^\i]fi>efd\ ;@M@;<8E; :FEHL<I MXc\ipJ`Yi`bfm#=fkfc`X Twenty years ago, Peter Norton created a simple file manager with a cussed at regular intervals whether to implement a split-view feature for Nauti- split-view display. Can Gnome Commander inherit the veteran’s crown? lus – see the box titled “Split View” – but thus far, no definitive results have BY CHRISTIAN MEYER been forthcoming [2]. The first time Gnome Commander nome Commander integrates structure, this can really clutter up your launches, you will see a clear-cut win- seamlessly with the Gnome desktop with excess windows. Thus, a dow with a toolbar that includes naviga- >desktop, and in contrast to the split-view file manager, such as Gnome tion buttons for fast scrolling, to launch standard Gnome file manager, Nautilus, Commander [1], can be a blessing, espe- file operations (such as copying, mov- it offers a split-view mode – with two di- cially if you frequently copy and move ing, or deleting), and to edit and mail rectories in one window – that simplifies files and folders. copying and moving files. The ability to see Split View the source and target File managers typically display the contents of a single direc- Gf`ekjf]M`\n directories in the tory in each window. In split-view mode, a feature that Gnome One of the most strongly criticized fea- same window (for Commander and other programs offer, the program displays tures of Gnome is the “spatial view” ap- example, see Figure two folders in a single window (Figure 1).
    [Show full text]
  • Op E N So U R C E Yea R B O O K 2 0
    OPEN SOURCE YEARBOOK 2016 ..... ........ .... ... .. .... .. .. ... .. OPENSOURCE.COM Opensource.com publishes stories about creating, adopting, and sharing open source solutions. Visit Opensource.com to learn more about how the open source way is improving technologies, education, business, government, health, law, entertainment, humanitarian efforts, and more. Submit a story idea: https://opensource.com/story Email us: [email protected] Chat with us in Freenode IRC: #opensource.com . OPEN SOURCE YEARBOOK 2016 . OPENSOURCE.COM 3 ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ ...... ........ .. .. .. ... .... AUTOGRAPHS . ... .. .... .. .. ... .. ........ OPENSOURCE.COM...... ........ .. .. .. ... .... ........ WRITE FOR US ..... .. .. .. ... .... 7 big reasons to contribute to Opensource.com: Career benefits: “I probably would not have gotten my most recent job if it had not been for my articles on 1 Opensource.com.” Raise awareness: “The platform and publicity that is available through Opensource.com is extremely 2 valuable.” Grow your network: “I met a lot of interesting people after that, boosted my blog stats immediately, and 3 even got some business offers!” Contribute back to open source communities: “Writing for Opensource.com has allowed me to give 4 back to a community of users and developers from whom I have truly benefited for many years.” Receive free, professional editing services: “The team helps me, through feedback, on improving my 5 writing skills.” We’re loveable: “I love the Opensource.com team. I have known some of them for years and they are 6 good people.” 7 Writing for us is easy: “I couldn't have been more pleased with my writing experience.” Email us to learn more or to share your feedback about writing for us: https://opensource.com/story Visit our Participate page to more about joining in the Opensource.com community: https://opensource.com/participate Find our editorial team, moderators, authors, and readers on Freenode IRC at #opensource.com: https://opensource.com/irc .
    [Show full text]
  • Hwb: the Hardware Book (Offline)
    HwB: The Hardware Book (Offline) Welcome to the Hardware Book. Internet's largest free collection of connector pinouts and cable descriptions. Newsflash! A new version of The Hardware Book has been released as of 2001-06-08! See News for more details. This is an offline version, the latest release of HwB can be found at http://www.hardwarebook.net/. Connectors Pinouts for connectors, buses etc. Cables How to build serial cables and many other cables. Adapters How to build adapters. Circuits Misc circuits (active filters etc). Tables Misc tables with info. (AWG..) WWW Links Links to other electronic resources. News News information about The Hardware Book. Wanted Information we are currently looking for. About Who did this? And why? Comment Send your comments to the author. Copyright © The Hardware Book Team 1996-2001. May be copied and redistributed, partially or in whole, as apropriate. Document last modified: 2001-06-08 file:///C|/tmp/tech/HwB/index.html [6/14/2001 11:59:19 PM] HwB: Connector Menu (Offline) [ Audio/Video | Buses | Cartridges/Expansions | Cellular Phones | Memories | Misc | Networks | Parallel | PC | Power Supply | Serial | Storage | Mice/Keyboards/Joysticks ] What does the information that is listed for each connector mean? See the tutorial. Audio/Video Audio ActionMedia 2 Audio/Video Capture Amiga 1000 RF Monitor Apple AudioVision CBM 1902A NeoGeo Audio/Video Sony RGB Multi Input TI-99/4A Video/Audio Consoles Atari Jaguar A/V N64 Video PlayStation A/V Sega Dreamcast A/V Sega Genesis 2/32X/Nomad A/V Sega Genesis/Master
    [Show full text]