Real Time in Embedded Linux Systems

Total Page:16

File Type:pdf, Size:1020Kb

Real Time in Embedded Linux Systems Real Time in Embedded Linux Systems Real Time in Embedded Linux Systems Michael Opdenacker Free Electrons http://free-electrons.com Created with OpenOffice.org 2.0 Thanks to Nicolas Rougier (Copyright 2003, http://webloria.loria.fr/~rougier/) for the Tux image Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 1 Rights to copy Attribution ± ShareAlike 2.0 © Copyright 2004-2005 You are free Michael Opdenacker to copy, distribute, display, and perform the work [email protected] to make derivative works to make commercial use of the work Document sources, updates and translations: Under the following conditions http://free-electrons.com/articles/realtime Attribution. You must give the original author credit. Corrections, suggestions, contributions and Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license translations are welcome! identical to this one. For any reuse or distribution, you must make clear to others the license terms of this work. Any of these conditions can be waived if you get permission from the copyright holder. Your fair use and other rights are in no way affected by the above. License text: http://creativecommons.org/licenses/by-sa/2.0/legalcode Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 2 Best viewed with... This document is best viewed with a recent PDF reader or with OpenOffice.org itself! Take advantage of internal or external hyperlinks. So, don't hesitate to click on them! Find pages quickly thanks to automatic search Use thumbnails to navigate in the document in a quick way If you're reading a paper or HTML copy, you should get your copy in PDF or OpenOffice.org format on http://free-electrons.com/articles/realtime! Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 3 Contents Introduction Reducing latency in Linux Linux hard real-time extensions Commercial Linux real-time distributions Conclusion References Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 4 Real Time in Embedded Linux Systems Introduction Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 5 Hard Real Time A system is considered as a hard real time if it can answer to an internal or external stimulus within a given maximum amount of time. ªGuaranteed worst caseº Hard real time systems are used wherever failing to react in time can cause a system failure or damage, or put its users in danger. Typical examples Industrial process control Transportation Medicine (pacemakers, etc.) Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 6 Soft Real Time A system is considered as soft real time if it is built to react to stimuli as quickly as it can. ªBest effortº However, if the system loses events or fails to process them in time, there is no catastrophic consequence on its operation. There is just a degradation in quality. Typical examples Audio, video Airline reservation systems Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 7 Linux and Real Time Linux cannot be considered as a hard real time system There are long sections of code where all interrupts are masked Kernel code (system calls) not preemptible until they complete or decide to release the processor by calling the scheduler. Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 8 Typical response time A Linux system can be considered as soft real time if it can react within a few hundreds of µs in most cases. A Linux system can be considered as hard real time if it can react within a few tens of µs in all cases. Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 9 Linux 2.6 improvements Linux 2.6 improves this by offering a preemptible option (CONFIG_PREEMPT) Kernel code can be interrupted at almost any time (except when spinlocks are held) This reduces latency for high priority processes Implications for driver writers Anything can happen between 2 instructions Uniprocessor machines behave like SMP ones. No issue for clean drivers written with SMP in mind. Caution with per-CPU variables Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 10 Other Linux 2.6 improvements Much more efficient scheduler Can be built with no virtual memory support. Note: lots of RTOS systems don©t use an MMU, even if one is available in the CPU. MMU management can add too much overhead. Improved POSIX threads (now available in mainstream) POSIX signals can©t be lost Make it easier to set task priorities and schedule periodic tasks with precision (useful for polling resources) Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 11 Low latency patches Linux 2.4 approach: add more scheduler calls throughout the code. Addressed by the preemptible option in 2.6. Voluntary preemption patch (Ingo Molnar) http://people.redhat.com/mingo/voluntary-preempt/ Reduces latency by calling cond_reschedule() in the might_sleep() calls (used for debugging). However, Andrew Morton argued that it©s redundant with the preemptible option. See http://lwn.net/Articles/92806/ for details. August 2004: Some audio users still complain that Linux 2.6 latency is still not sufficient, even with the low latency patches. Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 12 Real Time in Embedded Linux Systems Linux hard real-time extensions Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 13 RTLinux First real-time extension for Linux However, the author filed a software patent covering the addition of real-time support to general operating systems as implemented in RTLinux. ªRTLinux Open Patent (!) Licenseº: 2 conditions for royalty-free use of this license Either using only GNU GPL software. No room for proprietary software or even other free software (BSD, Apache...) Or using an unmodified version of RTLinux. See http://www.fsmlabs.com/openpatentlicense.html FSF: RTLinux and distributing RTLinux violates the GPL license Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 14 Other RTLinux issues Community unfriendly. Example: http://www.rtlinux.org/ and http://www.realtimelinux.org/ now redirect to http://www.fsmlabs.com/ The patent issue and uncertainty drew many developers away and frightened users. Linux RTAI attracts much more attention, developers and users. Offers 2 products RTLinuxPro: much more advertised. In particular, includes major rewrites to the original common code base. RTLinuxFree: doesn©t include the RTLinuxPro improvements... See http://www.fsmlabs.com/rtlinuxfree.html If you need commercial RT distributions, better use the other ones (Real Free Software with no patent burden). Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 15 The RTAI project http://www.rtai.org/ Real-Time Application Interface for Linux Dipartimento di Ingegneria Aerospaziale - Politecnico di Milano (DIAPM) Founded in 1999, by Prof. Paolo Montegazza (long time contributor to RTLinux). 1.x series for Linux 2.2 Supports Linux 2.6 since April 2004 (3.1 series) Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 16 RTAI strengths Community project (mainly European contributors now). Large user base. Excellent documentation: beginners guide, articles, conference pages, user and reference manuals... Supported architectures (+ SMP support) x86, PowerPC, ARM (StrongARM; ARM7: clps711x-family, Cirrus Logic EP7xxx, CS89712, PXA25x), MIPS, CRIS (ongoing) License: LGPL (only requires RTAI source changes to be shared) Modularity Support for POSIX and other RTOS APIs (through Xenomai) Hard real-time support in user space Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 17 System architecture User land Linux process Linux process (data acquisition) (GUI) Real-time Kernel modules task 3 Real-time FIFO Linux Kernel Real-time Real-time task 1 task 2 Linux interrupt handlers Software interrupts Real-time kernel Hardware interrupts Hardware. Interrupt Controller Real Time in Embedded Linux Systems © Copyright 2004-2005, Michael Opdenacker Creative Commons Attribution-ShareAlike 2.0 license http://free-electrons.com Nov 25, 2005 18 RTAI concepts RTAI adds a layer between the Linux kernel and the hardware The RTAI kernel manages real-time tasks according to their priorities. The Linux kernel is also a real-time task, with the lowest priority. All non real-time interrupts are handed out to the Linux kernel.
Recommended publications
  • Ebook - Informations About Operating Systems Version: August 15, 2006 | Download
    eBook - Informations about Operating Systems Version: August 15, 2006 | Download: www.operating-system.org AIX Internet: AIX AmigaOS Internet: AmigaOS AtheOS Internet: AtheOS BeIA Internet: BeIA BeOS Internet: BeOS BSDi Internet: BSDi CP/M Internet: CP/M Darwin Internet: Darwin EPOC Internet: EPOC FreeBSD Internet: FreeBSD HP-UX Internet: HP-UX Hurd Internet: Hurd Inferno Internet: Inferno IRIX Internet: IRIX JavaOS Internet: JavaOS LFS Internet: LFS Linspire Internet: Linspire Linux Internet: Linux MacOS Internet: MacOS Minix Internet: Minix MorphOS Internet: MorphOS MS-DOS Internet: MS-DOS MVS Internet: MVS NetBSD Internet: NetBSD NetWare Internet: NetWare Newdeal Internet: Newdeal NEXTSTEP Internet: NEXTSTEP OpenBSD Internet: OpenBSD OS/2 Internet: OS/2 Further operating systems Internet: Further operating systems PalmOS Internet: PalmOS Plan9 Internet: Plan9 QNX Internet: QNX RiscOS Internet: RiscOS Solaris Internet: Solaris SuSE Linux Internet: SuSE Linux Unicos Internet: Unicos Unix Internet: Unix Unixware Internet: Unixware Windows 2000 Internet: Windows 2000 Windows 3.11 Internet: Windows 3.11 Windows 95 Internet: Windows 95 Windows 98 Internet: Windows 98 Windows CE Internet: Windows CE Windows Family Internet: Windows Family Windows ME Internet: Windows ME Seite 1 von 138 eBook - Informations about Operating Systems Version: August 15, 2006 | Download: www.operating-system.org Windows NT 3.1 Internet: Windows NT 3.1 Windows NT 4.0 Internet: Windows NT 4.0 Windows Server 2003 Internet: Windows Server 2003 Windows Vista Internet: Windows Vista Windows XP Internet: Windows XP Apple - Company Internet: Apple - Company AT&T - Company Internet: AT&T - Company Be Inc. - Company Internet: Be Inc. - Company BSD Family Internet: BSD Family Cray Inc.
    [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]
  • Introduction to FOSS (Free and Open Source Software) Department Elective – Syllabi Department of Computer Engineering, MNIT Jaipur
    Introduction to FOSS (Free and Open Source Software) Department Elective – Syllabi Department of Computer Engineering, MNIT Jaipur 1. Unit 1 – Introduction to the FOSS philosophy (2 hrs) Overview of Free/Open Source Software, Definition of FOSS & GNU, History of GNU/Linux and the Free Software Movement, Advantages of Free Software and GNU/Linux, FOSS usage, trends and potential: global and Indian; Popular FOSS alternatives to non-free software (GIMP, OpenOffice, GAIM, Firefox, Thunderbird etc.) 2. Unit 2 – GNU/Linux Basics (8 hrs) GNU/Linux OS installation, detecting hardware, configuring disk partitions & file systems and install a GNU/Linux distribution, Basic shell commands - logging in, listing files, editing files, copying/moving files, viewing file contents, changing file modes and permissions, process management, User and group management, file ownerships and permissions, PAM authentication, Introduction to common system configuration files & log files, Configuring networking, basics of TCP/IP networking and routing, connecting to the Internet (through dialup, DSL, Ethernet, leased line and Wifi). Configuring additional hardware - sound cards, displays & display cards, network cards, modems, USB drives, CD writers. 3. Unit 3 – GNU/Linux Advanced (8 hrs) Understanding the OS boot up process; GNU/Linux distributions – case study of Fedora Core, Debian and Gentoo; basic understanding of the Linux kernel, kernel configuration, installing Linux from Scratch, understanding the Gnome and KDE environments and their components, Various
    [Show full text]
  • Linux from Scratch 版本 R11.0-36-中⽂翻译版 发布于 2021 年 9 ⽉ 21 ⽇
    Linux From Scratch 版本 r11.0-36-中⽂翻译版 发布于 2021 年 9 ⽉ 21 ⽇ 由 Gerard Beekmans 原著 总编辑:Bruce Dubbs Linux From Scratch: 版本 r11.0-36-中⽂翻译版 : 发布于 2021 年 9 ⽉ 21 ⽇ 由 由 Gerard Beekmans 原著和总编辑:Bruce Dubbs 版权所有 © 1999-2021 Gerard Beekmans 版权所有 © 1999-2021, Gerard Beekmans 保留所有权利。 本书依照 Creative Commons License 许可证发布。 从本书中提取的计算机命令依照 MIT License 许可证发布。 Linux® 是Linus Torvalds 的注册商标。 Linux From Scratch - 版本 r11.0-36-中⽂翻译版 ⽬录 序⾔ .................................................................................................................................... viii i. 前⾔ ............................................................................................................................ viii ii. 本书⾯向的读者 ............................................................................................................ viii iii. LFS 的⽬标架构 ............................................................................................................ ix iv. 阅读本书需要的背景知识 ................................................................................................. ix v. LFS 和标准 ..................................................................................................................... x vi. 本书选择软件包的逻辑 .................................................................................................... xi vii. 排版约定 .................................................................................................................... xvi viii. 本书结构 .................................................................................................................
    [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]
  • Linux from Scratch Version 6.2
    Linux From Scratch Version 6.2 Gerard Beekmans Linux From Scratch: Version 6.2 by Gerard Beekmans Copyright © 1999–2006 Gerard Beekmans Copyright (c) 1999–2006, Gerard Beekmans All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: • Redistributions in any form must retain the above copyright notice, this list of conditions and the following disclaimer • Neither the name of “Linux From Scratch” nor the names of its contributors may be used to endorse or promote products derived from this material without specific prior written permission • Any material derived from Linux From Scratch must contain a reference to the “Linux From Scratch” project THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Linux From Scratch - Version 6.2 Table of Contents Preface
    [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]
  • Cucumber Linux Distribution Scott Court February 16, 2018 Who Am I?
    An Overview of How I Created the Cucumber Linux Distribution Scott Court February 16, 2018 Who am I? What is Cucumber Linux? ● A Linux distribution built entirely from source, from scratch ● An independent distribution: it’s not based on any other Linux distribution. ● Inspired by: a mixture of Slackware and Linux from Scratch. ● Architectures: i686 and x86_64 ● Package manager: pkgtools (borrowed from Slackware; uses tar archives as packages like Pacman). ● License: MIT ● Mission: provide a Linux distribution that follows the Unix Philosophy with a focus on simplicity, stability and security, and is usable as an every day, general purpose operating system. What can it Do? ● It’s functional as both a server and desktop operating system. ● Server Operating System: – Contains a fully functional LAMP stack as well as SSH, mail, DNS, FTP and Rsync servers. – Runs the web server and mail server for cucumberlinux.com. – Runs the primary mirror for Cucumber Linux (http and rsync). ● Desktop Operating System: – Comes with the XFCE desktop environment, a web browser, a mail client and an office suite. – It’s running this presentation right now. May 2016 – How it Began ● I had just completed my freshman year of college. ● I was looking for a project to work on that Summer. ● I had grown unhappy with the direction most every other Linux distribution was going in (namely the exodus from Sysvinit to Systemd). ● I had always had an interest in operating system development. ● So I set out to make my own Linux distribution, without Systemd. May 2016 – July 2016 ● May, June and July of 2016 were spent doing research and trying out different techniques for building a Linux system from scratch.
    [Show full text]
  • Building Embedded Linux Systems ,Roadmap.18084 Page Ii Wednesday, August 6, 2008 9:05 AM
    Building Embedded Linux Systems ,roadmap.18084 Page ii Wednesday, August 6, 2008 9:05 AM Other Linux resources from O’Reilly Related titles Designing Embedded Programming Embedded Hardware Systems Linux Device Drivers Running Linux Linux in a Nutshell Understanding the Linux Linux Network Adminis- Kernel trator’s Guide Linux Books linux.oreilly.com is a complete catalog of O’Reilly’s books on Resource Center Linux and Unix and related technologies, including sample chapters and code examples. ONLamp.com is the premier site for the open source web plat- form: Linux, Apache, MySQL, and either Perl, Python, or PHP. Conferences O’Reilly brings diverse innovators together to nurture the ideas that spark revolutionary industries. We specialize in document- ing the latest tools and systems, translating the innovator’s knowledge into useful skills for those in the trenches. Visit con- ferences.oreilly.com for our upcoming events. Safari Bookshelf (safari.oreilly.com) is the premier online refer- ence library for programmers and IT professionals. Conduct searches across more than 1,000 books. Subscribers can zero in on answers to time-critical questions in a matter of seconds. Read the books on your Bookshelf from cover to cover or sim- ply flip to the page you need. Try it today for free. main.title Page iii Monday, May 19, 2008 11:21 AM SECOND EDITION Building Embedded Linux SystemsTomcat ™ The Definitive Guide Karim Yaghmour, JonJason Masters, Brittain Gilad and Ben-Yossef, Ian F. Darwin and Philippe Gerum Beijing • Cambridge • Farnham • Köln • Sebastopol • Taipei • Tokyo Building Embedded Linux Systems, Second Edition by Karim Yaghmour, Jon Masters, Gilad Ben-Yossef, and Philippe Gerum Copyright © 2008 Karim Yaghmour and Jon Masters.
    [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]
  • Download Article (PDF)
    Advances in Social Science, Education and Humanities Research, volume 287 1st International Conference on Education and Social Science Research (ICESRE 2018) DEVELOPMENT OF LINUX UBUNTU OPEN SOURCE DISTRIBUTION BASED OPEN SOURCE DISTRIBUTION SYSTEM TO MINIMIZE STUDENTS 'SOFTWARE STUDY Achmad Buchori Nur Irfan Wibowo Siti Kholifah University of PGRI Semarang University of PGRI Semarang STEKOM Semarang Semarang, Indonesia Semarang, Indonesia Semarang, Indonesia [email protected] [email protected] [email protected] Abstract-This study aims to develop The Zero-based is present in the world of information technology not Ubuntu Open Source Distribution Operating System to only an Operating System, but also a trigger for the minimize software piracy among students. Distribution thought revolution in the software industry. Linux as Zero Development is implemented on Ubuntu 18.04 Linux a product of the development of an open source with pinguy builder software, all functional requirements have been successfully implemented in accordance with the environment (open code) in the world of software design. The planning used in this study is the development programming and development, has been proven as a and use of the waterfall development model with stages, stable Operating System [4]. Linux can be used as an namely analysis, design, program making, program testing, alternative information technology solution, this is implementation, to the stage of validity testing, practicality because Linux is "free" and has high quality so it does and effectiveness. The test was carried out using a validity not need to continue to depend on ready-made questionnaire, practicality and user satisfaction commercial software products made by certain questionnaire.
    [Show full text]