Linfun Documentation Release 0.0.1

Total Page:16

File Type:pdf, Size:1020Kb

Linfun Documentation Release 0.0.1 linfun Documentation Release 0.0.1 rob green Jul 18, 2018 Contents 1 Chapter 5. PACKAGE MANAGEMENT SYSTEMS3 1.1 Chapter 5.1................................................3 1.2 Chapter 5.2................................................3 1.3 Chapter 5.3 Software Packaging Concepts................................3 1.4 Chapter 5.4 Why Use Packages.....................................4 1.5 Chapter 5.5 Package Types........................................4 1.6 Chapter 5.6 Available Package Management Systems..........................4 1.7 Chapter 5.7 Packaging Tool Levels and Variables............................4 1.8 Chapter 5.8 Package Sources.......................................5 1.9 Chapter 5.9 Creating Package Sources..................................5 1.10 Chapter 5.10 Revision Control Systems.................................5 1.11 Chapter 5.12 The Linux Kernel and the Birth of git...........................6 1.12 Chapter 5.13 How git Works. ......................................6 2 Chapter 6. THE RED HAT PACKAGE MANAGER RPM7 2.1 Chapter 6.3................................................7 2.2 Chapter 6.4................................................7 2.3 Chapter 6.5................................................8 2.4 Chapter 6.6................................................8 3 Chapter 7. DPKG 9 3.1 Chapter 7.3 DPKG Essentials......................................9 3.2 Chapter 7.4 Package File Names.....................................9 3.3 Chapter 7.5 Source Packages I...................................... 10 3.4 Chapter 7.5b Source Packages II..................................... 10 3.5 Chapter 7.6 DPKG Queries....................................... 10 3.6 Chapter 7.7 Installing/Upgrading/Uninstalling Packages........................ 10 4 Chapter 10. APT 13 4.1 Chapter 10.3 What is APT?....................................... 13 4.2 Chapter 10.4 apt-get........................................... 13 4.3 Chapter 10.5 Queries using apt-cache.................................. 13 4.4 Chapter 10.6a Installing/ removing/ upgrading I............................ 14 4.5 Chapter 10.6b Installing/ removing/ upgrading II............................ 14 5 Chapter 11. SYSTEM MONITORING 15 5.1 Chapter 11.3 Available Monitoring Tools I............................... 15 i 5.2 Chapter 11.3 Available Monitoring Tools III.............................. 15 5.3 Chapter 11.3 Available Monitoring Tools IV.............................. 16 5.4 Chapter 11.4 The /proc and /sys Psuedo-filesystems.......................... 16 5.5 Chapter 11.5 /proc basics........................................ 16 5.6 Chapter 11.6 A survey of /proc I..................................... 17 5.7 Chapter 11.6.b A survey of /proc II................................... 17 5.8 Chapter 11.6.c A survey of /proc III................................... 18 5.9 Chapter 11.6.d A survey of /proc IV................................... 18 5.10 Chapter 11.7.a /proc/sys I........................................ 19 5.11 Chapter 11.7.b /proc/sys II........................................ 20 5.12 Chapter 11.7.c /proc/sys III....................................... 20 5.13 Chapter 11.8 /sys Basics......................................... 20 5.14 Chapter 11.9.a A Survey of /sys I.................................... 20 5.15 Chapter 11.9.b A Survey of /sys II.................................... 21 5.16 Chapter 11.9.c A Survey of /sys III................................... 21 5.17 Chapter 11.9.c A Survey of /sys IV................................... 21 5.18 Chapter 11.10.a sar I........................................... 22 5.19 Chapter 11.10.b sar II.......................................... 22 5.20 Chapter 11.10.c sar III.......................................... 22 6 Chapter 12 Monitoring Tools (processes) 25 6.1 Chapter 12.4 Viewing process states with ps.............................. 25 6.2 Chapter 12.5 BSD option format for ps ................................. 25 6.3 Chapter 12.6 ps Output fields I...................................... 26 6.4 Chapter 12.6.b ps Output fields II.................................... 26 6.5 Chapter 12.7.a UNIX Output fields for ps I............................... 27 6.6 Chapter 12.7.b UNIX Option format for ps II.............................. 27 6.7 Chapter 12.8 Customizing the ps Output................................ 28 6.8 Chapter 12.9 Using pstree........................................ 28 6.9 Chapter 12.10 Viewing System Loads with top............................. 29 6.10 Chapter 12.11 top Options I....................................... 29 6.11 Chapter 12.11 top Options II....................................... 30 7 Chapter 13. Memory: Monitoring Usage and Tuning 31 7.1 Chapter 13.3 Memory Tuning Considerations:............................. 31 7.2 Chapter 13.4 Memory Monitoring Tools:................................ 31 7.3 Chapter 13.5.a /proc/sys/vm I.................................... 32 7.4 Chapter 13.5.b /proc/sys/vm II (ENTRIES)............................ 32 7.5 Chapter 13.6.a vmstat I.......................................... 33 7.6 Chapter 13.6.b vmstat II......................................... 34 7.7 Chapter 13.6.c vmstat III......................................... 34 7.8 Chapter 13.6.d vmstat IV......................................... 35 7.9 Chapter 13.6.e vmstat V......................................... 35 7.10 Chapter 13.6.f vmstat VI......................................... 36 7.11 Chapter 13.6.g vmstat VII........................................ 36 7.12 Chapter 13.7.a /proc/meminfo I..................................... 36 7.13 Chapter 13.7.b /proc/meminfo II..................................... 37 7.14 Chapter 13.8.a OOM Killer I....................................... 37 7.15 Chapter 13.8.a OOM Killer II...................................... 38 8 KNOWLEDGE CHECK Q&A 39 8.1 CHAPTER 5 KNOWLEDGE CHECK Q&A.............................. 39 8.2 CHAPTER 6 KNOWLEDGE CHECK Q&A.............................. 39 8.3 CHAPTER 7 KNOWLEDGE CHECK Q&A.............................. 39 ii 8.4 CHAPTER 10 KNOWLEDGE CHECK Q&A............................. 39 8.5 CHAPTER 11 KNOWLEDGE CHECK Q&A............................. 40 8.6 CHAPTER 12 KNOWLEDGE CHECK Q&A............................. 40 9 License 43 10 Help 45 11 IndIces and tables 47 iii iv linfun Documentation, Release 0.0.1 SYS ADMIN: Contents 1 linfun Documentation, Release 0.0.1 2 Contents CHAPTER 1 Chapter 5. PACKAGE MANAGEMENT SYSTEMS 1.1 Chapter 5.1 1.2 Chapter 5.2 1.3 Chapter 5.3 Software Packaging Concepts Package management systems supply the tools that allow system administrators to automate installing, upgrading, configuring and removing software packages in a known, predictable and consistent manner. These systems: Gather and compress associated software files into a single package (archive), which may require one or more other packages to be installed first. Allow for easy software installation or removal. Can verify file integrity via an internal database. Can authenticate the origin of packages. Facilitate upgrades. Group packages by logical features. Manage dependencies between packages. A given package may contain executable files, data files, documentation, installation scripts and configuration files. Also included are metadata attributes such as version numbers, checksums, vendor information, dependencies, de- scriptions, etc. Upon installation, all that information is stored locally into an internal database which can be conveniently queried for version status and update information. 3 linfun Documentation, Release 0.0.1 1.4 Chapter 5.4 Why Use Packages Software package management systems are widely seen as one of the biggest advancements Linux brought to enter- prise IT environments. By keeping track of files and metadata in an automated, predictable and reliable way, system administrators can use package management systems to make their installation processes scale to thousands of systems without requiring manual work on each individual system. Features include: Automation: No need for manual installs and upgrades. Scalability: Install packages on one system, or 10,000 systems. Repeatability and predictability. Security and auditing. 1.5 Chapter 5.5 Package Types Packages come in several different types: Binary packages contain files ready for deployment, including executable files and libraries. These are architecture- dependent and must be compiled for each type of machine. Source packages are used to generate binary packages; one should always be able to rebuild a binary package (for example, by using rpmbuild –rebuild on RPM-based systems) from the source package. One source package can be used for multiple architectures. Architecture-independent packages contain files and scripts that run under script interpreters, as well as documentation and configuration files. Meta-packages are essentially groups of associated packages that collect everything needed to install a relatively large subsystem, such as a desktop environment, or an office suite, etc. Binary packages are the ones that system administrators have to deal with most of the time. On 64-bit systems that can run 32-bit programs, one may have two binary packages installed for a given program, perhaps one with x86_64 or amd64 in its name, and the other with i386 or i686 in its name. Source packages can be helpful in keeping track of changes and source code used to come up with binary packages. They are usually not installed on a system by default, but can always be retrieved from the vendor. 1.6 Chapter 5.6 Available Package Management
Recommended publications
  • Open Source Software Notice
    OPEN SOURCE SOFTWARE NOTICE DCS Touch Display Software V2.00.XXX Schüco International KG Karolinenstraße 1-15 33609 Bielefeld OPEN SOURCE SOFTWARE NOTICE Seite 1 von 32 10000507685_02_EN OPEN SOURCE SOFTWARE NOTICE This document contains information about open source software for this product. The rights granted under open source software licenses are granted by the respective right holders. In the event of conflicts between SCHÜCO’S license conditions and the applicable open source licenses, the open source license conditions take precedence over SCHÜCO’S license conditions with regard to the respective open source software. You are allowed to modify SCHÜCO’S proprietary programs and to conduct reverse engineering for the purpose of debugging such modifications, to the extent such programs are linked to libraries licensed under the GNU Lesser General Public License. You are not allowed to distribute information resulting from such reverse engineering or to distribute the modified proprietary programs. The rightholders of the open source software require to refer to the following disclaimer, which shall apply with regard to those rightholders: Warranty Disclaimer THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED ON AN "AS IS" BASIS AND IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY OF ANY KIND, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. OPEN SOURCE SOFTWARE NOTICE Seite 2 von 32 10000507685_02_EN Copyright Notices and License Texts (please see the source code for all details) Software: iptables Copyright notice: Copyright (C) 1989, 1991 Free Software Foundation, Inc. Copyright Google, Inc.
    [Show full text]
  • Mysql and Linux/Unix Abstract
    MySQL and Linux/Unix Abstract This is the MySQL Linux extract from the MySQL 5.6 Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. Document generated on: 2021-09-23 (revision: 70881) Table of Contents Preface and Legal Notices ............................................................................................................ v 1 Installing MySQL on Unix/Linux Using Generic Binaries ............................................................... 1 2 Installing MySQL on Linux ......................................................................................................... 5 2.1 Installing MySQL on Linux Using the MySQL Yum Repository ........................................... 6 2.2 Replacing a Third-Party Distribution of MySQL Using the MySQL Yum Repository .............. 9 2.3 Installing MySQL on Linux Using the MySQL APT Repository ......................................... 11 2.4 Installing MySQL on Linux Using the MySQL SLES Repository ....................................... 11 2.5 Installing MySQL on Linux Using RPM Packages from Oracle ......................................... 12 2.6 Installing MySQL on Linux Using Debian Packages from Oracle ...................................... 15 2.7 Installing MySQL on Linux from the Native Software Repositories .................................... 16 2.8 Deploying MySQL on Linux with Docker .......................................................................
    [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]
  • Red Hat Developer Toolset 9 User Guide
    Red Hat Developer Toolset 9 User Guide Installing and Using Red Hat Developer Toolset Last Updated: 2020-08-07 Red Hat Developer Toolset 9 User Guide Installing and Using Red Hat Developer Toolset Zuzana Zoubková Red Hat Customer Content Services Olga Tikhomirova Red Hat Customer Content Services [email protected] Supriya Takkhi Red Hat Customer Content Services Jaromír Hradílek Red Hat Customer Content Services Matt Newsome Red Hat Software Engineering Robert Krátký Red Hat Customer Content Services Vladimír Slávik Red Hat Customer Content Services Legal Notice Copyright © 2020 Red Hat, Inc. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/ . In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp.
    [Show full text]
  • Chapter 7 Package Management
    Chapter 7 Package Management CERTIFICATION OBJECTIVES 7.01 The Red Hat Package Manager ✓ Two-Minute Drill 7.02 More RPM Commands Q&A Self Test 7.03 Dependencies and the yum Command 7.04 More Package Management Tools fter installation is complete, systems are secured, filesystems are configured, and other initial setup tasks are completed, you still have work to do. Almost certainly before your system is in the state you desire, you will be required to install or remove packages. To make sure the right updates are installed, you need to know how to get a system working with ARed Hat Subscription Management (RHSM) or the repository associated with a rebuild distribution. To accomplish these tasks, you need to understand how to use the rpm and yum commands in detail. Although these are “just” two commands, they are rich in detail. Entire books have been dedicated to the rpm command, such as the Red Hat RPM Guide by Eric 344 Chapter 7 Package Management Foster-Johnson. For many, that degree of in-depth knowledge of the rpm command is no longer necessary, given the capabilities of the yum command and the additional package management tools provided in RHEL 7. CERTIFICATION OBJECTIVE 7.01 The Red Hat Package Manager One of the major duties of a system administrator is software management. New applications are installed. Services are updated. Kernels are patched. Without the right tools, it can be difficult to figure out what software is on a system, what is the latest update, and what applications depend on other software.
    [Show full text]
  • Ubuntu Server Guide Basic Installation Preparing to Install
    Ubuntu Server Guide Welcome to the Ubuntu Server Guide! This site includes information on using Ubuntu Server for the latest LTS release, Ubuntu 20.04 LTS (Focal Fossa). For an offline version as well as versions for previous releases see below. Improving the Documentation If you find any errors or have suggestions for improvements to pages, please use the link at thebottomof each topic titled: “Help improve this document in the forum.” This link will take you to the Server Discourse forum for the specific page you are viewing. There you can share your comments or let us know aboutbugs with any page. PDFs and Previous Releases Below are links to the previous Ubuntu Server release server guides as well as an offline copy of the current version of this site: Ubuntu 20.04 LTS (Focal Fossa): PDF Ubuntu 18.04 LTS (Bionic Beaver): Web and PDF Ubuntu 16.04 LTS (Xenial Xerus): Web and PDF Support There are a couple of different ways that the Ubuntu Server edition is supported: commercial support and community support. The main commercial support (and development funding) is available from Canonical, Ltd. They supply reasonably- priced support contracts on a per desktop or per-server basis. For more information see the Ubuntu Advantage page. Community support is also provided by dedicated individuals and companies that wish to make Ubuntu the best distribution possible. Support is provided through multiple mailing lists, IRC channels, forums, blogs, wikis, etc. The large amount of information available can be overwhelming, but a good search engine query can usually provide an answer to your questions.
    [Show full text]
  • The GNU General Public License (GPL) Does Govern All Other Use of the Material That Constitutes the Autoconf Macro
    Notice About this document The following copyright statements and licenses apply to software components that are distributed with various versions of the StorageGRID PreGRID Environment products. Your product does not necessarily use all the software components referred to below. Where required, source code is published at the following location: ftp://ftp.netapp.com/frm-ntap/opensource/ 215-10078_A0_ur001-Copyright 2015 NetApp, Inc. All rights reserved. 1 Notice Copyrights and licenses The following component is subject to the BSD 1.0 • Free BSD - 44_lite BSD 1.0 Copyright (c) 1982, 1986, 1990, 1991, 1993 The Regents of the University of California. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. • All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Berkeley and its contributors. • Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE REGENTS 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.
    [Show full text]
  • MCC Interim Linux
    MCC Interim Linux The MCC Distribution of the Linux Op erating System Version April c Copyright University of Manchester Published by Manchester Computing Centre University of Manchester Permission is granted to use any parts of this do cument for nonprot purp oses provided credit is given to the University of Manchester whose supp ort has made this pro ject p ossible Chapter Intro duction Intro duction The MCC Interim versions of Linux are designed to allow p eople who are not Unix exp erts to install a version of the Linux op erating system on a PC The installed system should b e self contained but easy to extend What is Linux Linux is an op erating system written by the Finnish programmer Linus B Torvalds It lo oks like the Unix op erating system and the source of the entire system is available Binaries and source can b e distributed freely under the terms of the GNU Public License See Section Copyright and conditions of distribution page Programs from the various System V and BSD versions of Unix should compile and run under Linux with few changes Linux aims to conform as closely as it can to the various posix iso and ansi standards Linux runs only on machines which have pro cessors compatible with the Intel or If you intend to run Linux your computer must have appropriate hardware and sucient resources You must have at least Mb of memory to run Linux For go o d p erformance you need at least Mb of memory and the X window system p erforms slowly without at least Mb Linux requires an isa or eisa bus It runs on systems
    [Show full text]
  • Licensing Information User Manual Oracle® ILOM Firmware
    Licensing Information User Manual ® Oracle ILOM Firmware Release 4.0.x Last Updated: December 2019 Part No: E81116-07 December 2019 Licensing Information User Manual Oracle ILOM Firmware Release 4.0.x Part No: E81116-07 Copyright © 2018, 2019, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • Licensing Information User Manual Oracle® ILOM
    Licensing Information User Manual ® Oracle ILOM Firmware Release 3.2.x October 2018 Part No: E62005-12 October 2018 Licensing Information User Manual Oracle ILOM Firmware Release 3.2.x Part No: E62005-12 Copyright © 2016, 2018, Oracle and/or its affiliates. License Restrictions Warranty/Consequential Damages Disclaimer This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. Warranty Disclaimer The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. Restricted Rights Notice If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs (including any operating system, integrated software, any programs embedded, installed or activated on delivered hardware, and modifications of such programs) and Oracle computer documentation or other Oracle data delivered to or accessed by U.S. Government
    [Show full text]
  • Install Gnome Software Center Arch
    Install gnome software center arch Upstream URL: License(s): GPL2. Maintainers: Jan Steffens. Package Size: MB. Installed Size: Installed Size​: ​ MB. gnome-software will be available as a preview in It can install, remove applications on systems with PackageKit. It can install updates on Gnome software will not start / Applications & Desktop. A quick video on Gnome Software Center in Arch Linux. Gnome unstable repository. There is a component called Polkit that is used by many applications to request root permissions to do things (it can do so because it's a. GNOME Software on #archlinux with native PackageKit backend, and this is a gui for installing software, ala ubuntu software manager, but distro This is some kind of Ubuntu Software Centre, with comments and all that. Need help installing Gnome Software Center for Arch Linux? Here are some instructions: Click DOWNLOAD HERE in the menu. Download the file. Make the file. I had to install it with along with packagekit. This is what's missing to make Antergos *the* beginner-friendly Arch-based distro, or general So, it is not a bad idea for the “Gnome Software Center” to include by default. GNOME software software center graphic that we will find the default in future releases of Fedora in addition to being installed in Arch Linux Please help me to install GNOME Software on. GNOME Software Will Work On Arch Linux With PackageKit the Alpm/Pacman back-end for using this GNOME application to install and. From: Sriram Ramkrishna ; To: desktop-devel-list devel-list gnome org>; Subject: gnome- software/packagekit.
    [Show full text]
  • Opensuse Leap 15.3 Start-Up Start-Up Opensuse Leap 15.3
    openSUSE Leap 15.3 Start-Up Start-Up openSUSE Leap 15.3 Publication Date: June 22, 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 https://www.suse.com/company/legal/ . All other third-party trademarks are the property of their respective owners. Trademark symbols (®, ™ etc.) denote trademarks of SUSE and its aliates. Asterisks (*) denote third-party trademarks. 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 xi 2 Improving the documentation xii 3 Documentation conventions xiii 4 Source code xiv 5 Acknowledgments xiv I INSTALLATION 1 1 Installation Quick Start 2 1.1 Welcome to openSUSE Leap 2 Minimum system requirements 2 • Installing openSUSE Leap 2 2 Boot parameters 17 2.1 Using the default boot parameters 17 2.2 PC (AMD64/Intel 64/Arm AArch64) 17 The boot screen on machines equipped with traditional
    [Show full text]