Climbing Mont Blanc and Scalability

Total Page:16

File Type:pdf, Size:1020Kb

Climbing Mont Blanc and Scalability Climbing Mont Blanc and Scalability Christian Chavez Master of Science in Computer Science Submission date: July 2016 Supervisor: Lasse Natvig, IDI Norwegian University of Science and Technology Department of Computer and Information Science Problem Statement Climbing Mont Blanc and Scalability Climbing Mont Blanc (CMB) is a system for evaluation of programs executed on modern heterogeneous multi-cores such as the Exynos Octa chips used in, e.g., Samsung Galaxy S5 and S6 mobile phones, see https://www.ntnu.edu/idi/card/cmb. CMB evaluates both performance and energy efficiency and provides the possibility of performance rank- ing lists and online competitions. A first version of the system is available and under trial use. This master thesis project is focused on improving the system with increased scalability so that the system can handle more user submissions per hour. The project involves the following subtasks: 1. Study the existing solution in CMB for automatic system monitoring and recovery and suggest improvements. 2. Describe and implement a dispatcher in the current CMB system that will allow the use of multiple XU3 backends to serve concurrent user submissions. 3. Test the dispatcher with two or three XU3 boards. Implement a simple script for generating a synthetic load (simulating users and submission) to be able to evaluate the scalability of a new CMB variant using the developed dispatcher. 4. Describe how the dispatcher can be used to allow different boards than the XU3 to be used together with XU3 boards. Discuss what effects this will have on other parts of the system. If time permits: 5. Propose possible throttling techniques for cases where CMB gets too many/frequent submissions from a single user, or in total from all active users. 6. Propose compilation/Makefile improvements, and the possibility of a makefile that can be edited by problem-setter through admin-interface. 7. Propose how more detailed statistics such as performance counter values can be given as feedback to the CMB user. 8. Propose the addition of more programming languages and libraries. 9. Propose an extension of the dispatcher into a load-balancing broker. 10. Implement some of the proposed solutions after approval by, and in collaboration with the CMB team. The master thesis project is part of the EECS Strategic Research project at IME (www. ntnu.edu/ime/eecs). Supervisor: Prof. Lasse Natvig i Abstract This thesis details a proposed system implementation upgrade for the CMB system, accessible at climb. idi.ntnu.no, which profiles C/C++ code for its en- ergy efficiency on an Odroid-XU3 board, which utilises a Samsung Exynos 5 Octa CPU, and has an ARM Mali-T628 GPU. Our proposed system implementa- tion improves the robustness of the code base and its execution, in addition to permitting an increased throughput of submissions profiled by the system with the implementation’s dispatcher which allows the sys- tem to utilise several Odroid-XU3 backends for the energy and timing measurement profiling. Our tests show that our implementation can achieve more than 4x speedup with “Hello World” submissions using a parallelized web server, and around 2x speedup with “Shortest Path” submissions using a serial web server. ii Preface I have many I want to acknowledge for all their help, support, and comradeship during my time in academia (not just for the duration of this master project, at the end of the line), but individuals of note include the following: • Lasse Natvig, my supervisor for this Master project, for his patience, wisdom, and guidance through the course of this project. • IDI’s Technical group, especially Arne Dag Fidjestøl, Jan Grønsberg, and Erik Houmb, for their support and tips in the development of this project’s proposed system implementation. • Sindre Magnussen, for his help in understanding and learning the workings of the CMB system. • Dag Frode Solberg, Christoffer Viken, (and the rest of the crowd from NTNU’s PVV), for all those hours, spent as my rubber ducks and coming with tips and guidance when my technical competence was insufficient. • Finn Inderhaug Holme, for saving my bacon when the power connections of the equipment in Trondheim had to be disconnected and reconnected after I had moved to Oslo due to the delays incurred during this project. • My family for their support and love throughout. • And anyone else whose notable assistance may have (temporarily!) been forgotten during the time of this writing. Note: This report is rather long and was not condensed down as is the norm, due to the time constraints described on the next page. However, I want to make it clear that if you care about trees, you should not print this report in its entirety. Chapters5, 6, and AppendixesA,C,D, are all rather long, and especially boring to read on paper. iii The main challenge faced during this project At the outset of this 21-week, contractually decided period allotted for this master project, Celery was chosen by the author of this project with the support of the supervisor, Lasse Natvig, to be a promising and efficient way to solve a majority of the challenges of this project. However, on the 15th of March, in a meeting with a member of the institutes’s (IDI’s) Technical Group (Arne Dag Fidjestøl), and the other master student currently working on the CMB project (Sindre Magnussen), it was concluded that Celery, while fit for the task, was introducing more complexity into the system, than what was currently needed. This conclusion was based on the fact that the earlier project future use estimates of the CMB system were too ambitious, and thus the CMB system did not need to support so potentially high frequencies and concurrently submitted submissions by its user base. Therefore, in week 10 of this project (start of the project’s 21-week allotted time was the 11th of January), it was decided that a proposed implementation based upon the use of Celery, would be of little use to future iterations of the CMB system, at this time. Thus, the author of this project has reversed all efforts of implementing the use of Celery into CMB and has instead landed upon (and implemented) the proposed system implementa- tion described in Chapter4. In addition to compensation for a three week documented sick-leave, this project has received an extension of two additional weeks to compensate for this setback. On top of all that, the author of this paper had to move residence from Trondheim to Oslo in the last four weeks of this project, as the move had been planned and scheduled before the delays happened and the compensation was given. The author of this paper has had to omit goals and desired implementations/improve- ments of this project (and paper research), due to this time-constraining setback, but wants to state that had this project been granted 4-6 more weeks, the complete (or near- complete) implementation of both the database, and automatic system monitoring and recovery (described in Chapters4 and9) may well have been realized. Abbreviations and Glossary ARM = Advanced RISC Machine (http://www.arm.com/) BSC = Barcelona Supercomputing Center CMB = Climbing Mont Blanc https://climb.idi.ntnu.no/ HPC = High-Performance Computing MB = Mont-Blanc (The EU Project: https://www.montblanc-project.eu/) SoC = System(s)-on-Chip VM = Virtual Machine iv Table of Contents Problem Statementi Abstract ii Preface iii Abbreviations and Glossary iv Table of Contentsv List of Tables ix List of Figuresx List of Listings1 1 Introduction3 1.1 Motivation...................................3 1.2 Project Goals..................................4 1.2.1 Automatic System Monitoring and Recovery............5 1.2.2 The Dispatcher.............................5 1.3 Thesis Structure................................5 2 Background7 2.1 Mont-Blanc, The EU Project.........................7 2.2 The Climbing Mont Blanc System......................8 2.3 Odroid-XU3...................................9 2.4 Concurrency Softwares Considered......................9 2.4.1 ZeroMQ................................. 10 2.4.2 Celery.................................. 11 v 3 Related Work 15 3.1 Online Judges - Websites for Competitive Programming.......... 15 3.2 Backend Parallelization Projects....................... 16 4 Proposed System Solution 19 4.1 The outset state of CMB........................... 19 4.1.1 Proposed solution to environment variables/settings........ 22 4.2 Automatic system monitoring and recovery................. 23 4.3 Upgrade from Python 2.7 to 3.4........................ 26 4.3.1 Git submodules............................. 27 4.4 Database changes................................ 27 4.4.1 Changes necessitated by the Dispatcher............... 28 4.4.2 Potential changes for software language support........... 29 4.5 The Dispatcher................................. 29 4.6 The Backend.................................. 31 5 Server Installation Instructions 35 5.1 Getting the Code................................ 36 5.2 Install Instructions and Pre-Requisites.................... 37 5.3 Starting the Server............................... 39 5.3.1 Start-up Script Differences...................... 39 6 Backend Installation Instructions 40 6.1 Install Instructions and Pre-Requisites.................... 41 6.2 Getting the code................................ 44 6.3 Starting the Backend.............................. 46 7 Methodology 47 7.1 Hardware & Hardware Set-Up......................... 47 7.1.1 CMB Server............................... 48 7.1.2 Backends................................ 48 7.2 Software
Recommended publications
  • Dockerdocker
    X86 Exagear Emulation • Android Gaming • Meta Package Installation Year Two Issue #14 Feb 2015 ODROIDMagazine DockerDocker OS Spotlight: Deploying ready-to-use Ubuntu Studio containers for running complex system environments • Interfacing ODROID-C1 with 16 Channel Relay Play with the Weather Board • ODROID-C1 Minimal Install • Device Configuration for Android Development • Remote Desktop using Guacamole What we stand for. We strive to symbolize the edge of technology, future, youth, humanity, and engineering. Our philosophy is based on Developers. And our efforts to keep close relationships with developers around the world. For that, you can always count on having the quality and sophistication that is the hallmark of our products. Simple, modern and distinctive. So you can have the best to accomplish everything you can dream of. We are now shipping the ODROID U3 devices to EU countries! Come and visit our online store to shop! Address: Max-Pollin-Straße 1 85104 Pförring Germany Telephone & Fax phone : +49 (0) 8403 / 920-920 email : [email protected] Our ODROID products can be found at http://bit.ly/1tXPXwe EDITORIAL ow that ODROID Magazine is in its second year, we’ve ex- panded into several social networks in order to make it Neasier for you to ask questions, suggest topics, send article submissions, and be notified whenever the latest issue has been posted. Check out our Google+ page at http://bit.ly/1D7ds9u, our Reddit forum at http://bit. ly/1DyClsP, and our Hardkernel subforum at http://bit.ly/1E66Tm6. If you’ve been following the recent Docker trends, you’ll be excited to find out about some of the pre-built Docker images available for the ODROID, detailed in the second part of our Docker series that began last month.
    [Show full text]
  • 18 Free Ways to Download Any Video Off the Internet Posted on October 2, 2007 by Aseem Kishore Ads by Google
    http://www.makeuseof.com/tag/18-free-ways-to-download-any-video-off-the-internet/ 18 Free Ways To Download Any Video off the Internet posted on October 2, 2007 by Aseem Kishore Ads by Google Download Videos Now download.cnet.com Get RealPlayer® & Download Videos from the web. 100% Secure Download. Full Movies For Free www.YouTube.com/BoxOffice Watch Full Length Movies on YouTube Box Office. Absolutely Free! HD Video Players from US www.20north.com/ Coby, TV, WD live, TiVo and more. Shipped from US to India Video Downloading www.VideoScavenger.com 100s of Video Clips with 1 Toolbar. Download Video Scavenger Today! It seems like everyone these days is downloading, watching, and sharing videos from video-sharing sites like YouTube, Google Video, MetaCafe, DailyMotion, Veoh, Break, and a ton of other similar sites. Whether you want to watch the video on your iPod while working out, insert it into a PowerPoint presentation to add some spice, or simply download a video before it’s removed, it’s quite essential to know how to download, convert, and play these videos. There are basically two ways to download videos off the Internet and that’s how I’ll split up this post: either via a web app or via a desktop application. Personally, I like the web applications better simply because you don’t have to clutter up and slow down your computer with all kinds of software! UPDATE: MakeUseOf put together an excellent list of the best websites for watching movies, TV shows, documentaries and standups online.
    [Show full text]
  • Building a Scalable Index and a Web Search Engine for Music on the Internet Using Open Source Software
    Department of Information Science and Technology Building a Scalable Index and a Web Search Engine for Music on the Internet using Open Source software André Parreira Ricardo Thesis submitted in partial fulfillment of the requirements for the degree of Master in Computer Science and Business Management Advisor: Professor Carlos Serrão, Assistant Professor, ISCTE-IUL September, 2010 Acknowledgments I should say that I feel grateful for doing a thesis linked to music, an art which I love and esteem so much. Therefore, I would like to take a moment to thank all the persons who made my accomplishment possible and hence this is also part of their deed too. To my family, first for having instigated in me the curiosity to read, to know, to think and go further. And secondly for allowing me to continue my studies, providing the environment and the financial means to make it possible. To my classmate André Guerreiro, I would like to thank the invaluable brainstorming, the patience and the help through our college years. To my friend Isabel Silva, who gave me a precious help in the final revision of this document. Everyone in ADETTI-IUL for the time and the attention they gave me. Especially the people over Caixa Mágica, because I truly value the expertise transmitted, which was useful to my thesis and I am sure will also help me during my professional course. To my teacher and MSc. advisor, Professor Carlos Serrão, for embracing my will to master in this area and for being always available to help me when I needed some advice.
    [Show full text]
  • Argosoft Mail Server Pro User Guide
    http://www.argosoft.com Argosoft Mail Server Pro User Guide June 2002 1 Introduction Thank you for choosing Argosoft Mail Server Pro. This lightweight and extremely affordable mail server is robust, stable, easy to configure, easy to manage and is fully capable of competing head to head with any mail server on the market. It can perform all basic e-mail tasks, and much more. It is fully functional mail system, which supports most popular protocols, SMTP, POP3, Finger, and has a built-in Web server, to give users quick and easy access to their email via any Web browser, which supports HTTP 1.0 or later. The web interface can also be used to administer the mail server. While this easy to use mail server is pretty much obvious in terms of use there are few little things that even a seasoned e-mail expert may not stumble across immediately. This document is basic guide to getting started! Features • Has true support of multiple domains - you can create accounts with the same name, which belong to different domains • Supports multiple IP homes (virtual domains) • Has built in mailing list server • Has WAP interface • Allows setup of domain administrators - users who can change domain related information via the Web interface; • Filtering of mail according to IP addresses of server which attempts to relay mail to local users • ORDB and MAPS support • Supports distribution lists; • Supports auto responders; • Supports basic filters; • Unlimited message size (there is a limit of 5 Megs for freeware version); • Can listen on single IP address, rather than all addresses available on your computer; • Has built-in web server.
    [Show full text]
  • Lightweight Distros on Test
    GROUP TEST LIGHTWEIGHT DISTROS LIGHTWEIGHT DISTROS GROUP TEST Mayank Sharma is on the lookout for distros tailor made to infuse life into his ageing computers. On Test Lightweight distros here has always been a some text editing, and watch some Linux Lite demand for lightweight videos. These users don’t need URL www.linuxliteos.com Talternatives both for the latest multi-core machines VERSION 2.0 individual apps and for complete loaded with several gigabytes of DESKTOP Xfce distributions. But the recent advent RAM or even a dedicated graphics Does the second version of the distro of feature-rich resource-hungry card. However, chances are their does enough to justify its title? software has reinvigorated efforts hardware isn’t supported by the to put those old, otherwise obsolete latest kernel, which keeps dropping WattOS machines to good use. support for older hardware that is URL www.planetwatt.com For a long time the primary no longer in vogue, such as dial-up VERSION R8 migrators to Linux were people modems. Back in 2012, support DESKTOP LXDE, Mate, Openbox who had fallen prey to the easily for the i386 chip was dropped from Has switching the base distro from exploitable nature of proprietary the kernel and some distros, like Ubuntu to Debian made any difference? operating systems. Of late though CentOS, have gone one step ahead we’re getting a whole new set of and dropped support for the 32-bit SparkyLinux users who come along with their architecture entirely. healthy and functional computers URL www.sparkylinux.org that just can’t power the newer VERSION 3.5 New life DESKTOP LXDE, Mate, Xfce and others release of Windows.
    [Show full text]
  • The GNOME Census: Who Writes GNOME?
    The GNOME Census: Who writes GNOME? Dave Neary & Vanessa David, Neary Consulting © Neary Consulting 2010: Some rights reserved Table of Contents Introduction.........................................................................................3 What is GNOME?.............................................................................3 Project governance...........................................................................3 Why survey GNOME?.......................................................................4 Scope and methodology...................................................................5 Tools and Observations on Data Quality..........................................7 Results and analysis...........................................................................10 GNOME Project size.......................................................................10 The Long Tail..................................................................................11 Effects of commercialisation..........................................................14 Who does the work?.......................................................................15 Who maintains GNOME?................................................................17 Conclusions........................................................................................22 References.........................................................................................24 Appendix 1: Modules included in survey...........................................25 2 Introduction What
    [Show full text]
  • Gutenprint 5.0 User's Manual and Release Notes
    Gutenprint 5.0 User's Manual Robert Krawitz March 4, 2007 Gutenprint 5.0 User's Manual Copyright © 2000-2007 Robert Krawitz 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 no invariant sections, no Front-Cover texts, and no Back-Cover texts. Gutenprint 5.0 is licensed in its entirety under the terms of the GNU General Public License. The CUPS code (in src/cups) is licensed under the terms of the GNU General Public License version 2; the balance of the code is licensed under the terms of the GNU General Public License version 2 or any later version published by the Free Software Foundation. EPSON, ESC/P, and Stylus are registered trademarks of Seiko Epson Corp. ESC/P2 is a trademark of Seiko Epson Corp. All other product names are trademarks and/or registered trademarks of their vendors. 2 Gutenprint 5.0 User's Manual 03/04/2007 Table of Contents 1) Introduction............................................................................................................................................5 1.1) What is Gutenprint?.......................................................................................................................5 1.2) History of Gutenprint.....................................................................................................................5 1.2.1) The early years: Gimp-Print 3.x and 4.0................................................................................5
    [Show full text]
  • The Glib/GTK+ Development Platform
    The GLib/GTK+ Development Platform A Getting Started Guide Version 0.8 Sébastien Wilmet March 29, 2019 Contents 1 Introduction 3 1.1 License . 3 1.2 Financial Support . 3 1.3 Todo List for this Book and a Quick 2019 Update . 4 1.4 What is GLib and GTK+? . 4 1.5 The GNOME Desktop . 5 1.6 Prerequisites . 6 1.7 Why and When Using the C Language? . 7 1.7.1 Separate the Backend from the Frontend . 7 1.7.2 Other Aspects to Keep in Mind . 8 1.8 Learning Path . 9 1.9 The Development Environment . 10 1.10 Acknowledgments . 10 I GLib, the Core Library 11 2 GLib, the Core Library 12 2.1 Basics . 13 2.1.1 Type Definitions . 13 2.1.2 Frequently Used Macros . 13 2.1.3 Debugging Macros . 14 2.1.4 Memory . 16 2.1.5 String Handling . 18 2.2 Data Structures . 20 2.2.1 Lists . 20 2.2.2 Trees . 24 2.2.3 Hash Tables . 29 2.3 The Main Event Loop . 31 2.4 Other Features . 33 II Object-Oriented Programming in C 35 3 Semi-Object-Oriented Programming in C 37 3.1 Header Example . 37 3.1.1 Project Namespace . 37 3.1.2 Class Namespace . 39 3.1.3 Lowercase, Uppercase or CamelCase? . 39 3.1.4 Include Guard . 39 3.1.5 C++ Support . 39 1 3.1.6 #include . 39 3.1.7 Type Definition . 40 3.1.8 Object Constructor . 40 3.1.9 Object Destructor .
    [Show full text]
  • Primaria Digital. Aulas Digitales Móviles. Manual General Introductorio 1
    ARGENTINA Primaria Digital. Aulas Digitales Móviles. Manual General Introductorio 1 Dirección de Gestión Educativa; Dirección de Educación Primaria Presenta los lineamientos del Plan Primaria Digital y cuenta con tres partes. En ellas se detallan la política de integración del país, sus objetivos, y una propuesta pedagógica para llevarla a cabo. También se trata la importancia de las Aulas Digitales móviles en la escuela primaria, sus ventajas e interacción, y se brinda una orientación para su uso. 01/08/2018 AULAS DIGITALES MÓVILES Instructivo técnico Equipo Técnico Jurisccional - Dirección Provincial de Tecnologías Educativas Ministerio de Educación Autoridades Presidente de la Nación Ing. Mauricio Macri Ministro de Educación y Deportes Lic. Esteban Bullrich Jefe de Gabinete Dr. Diego Sebastián Marías Secretario de Gestión Educativa Lic. Maximiliano Gulmanelli Secretaria de Innovación y Calidad Educativa Lic. María de las Mercedes Miguel Subsecretario de Coordinación Administrativa Sr. Félix Lacroze Gerente general Educ.ar S.E. Lic. Guillermo Fretes Directora de Educación Digital y Contenidos Multiplataforma Lic. María Florencia Ripani Director en Gestión de programas Ing. Mauro Iván Nunes Equipo Técnico Jurisccional - Dirección Provincial de Tecnologías Educativas Ministerio de Educación Argentina. Ministerio de Educación de la Nación Manual de primaria digital : instructivo técnico. - 1.a ed. - Ciudad Autónoma de Buenos Aires : Ministerio de Educación de la Nación, 2016. 39 p. : il. ; 28x20 cm. ISBN 978-950-00-1120-4 1. Formación
    [Show full text]
  • Foobar Resume Playback After Playing Different Song
    Foobar Resume Playback After Playing Different Song Orphic and cowardly Sammy always chitters nominatively and presuming his assagai. Yacov never reest any titubations grunt therefor, is Shelby recessed and statist enough? Rutter reifies blushingly if feldspathoid Tudor nicks or out. Hit Spacebar again and playback will pause from long end justify the gap. This resume playback after the song played one of foobar is played track begins on? Retrieve upcoming album releases and concerts. What more assured of songs play it is after download additional options like foobar and. The songs to operate; using plugins you can upgrade to! Return a bounty of plays that the user has building since the app has started. Just play songs you can. Dangerous will resume playback after i played songs with different protocol spoken, song has an. Winyl interface is simple and to the point, and not the exact beginning? Out that contain lossy data insights to playback resume from your experience possible solutions for me? That plays it play songs and resume position that helps you have. No offense, the Western European cities suffered a lump, will drain of your help. Dust in winamp, it is playing records for you in some artists and even offline music on your. For different players on windows switch to play history over written as far i played track after player! You do not have permission to remove this product association. So what is early is failure situation? You sure is characterised by default ui improvements over time, which is use resume playing mode. Otherwise superb roon experience.
    [Show full text]
  • Clutter Version 1.10.0, Updated 9 May 2012
    Guile-GNOME: Clutter version 1.10.0, updated 9 May 2012 Matthew Allum and OpenedHand LTD Intel Corporation This manual is for (gnome clutter) (version 1.10.0, updated 9 May 2012) Copyright 2006,2007,2008 OpenedHand LTD Copyright 2009,2010,2011,2012 Intel Corporation Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You may obtain a copy of the GNU Free Documentation License from the Free Software Foundation by visiting their Web site or by writing to: The Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA i Short Contents 1 Overview :::::::::::::::::::::::::::::::::::::::::::: 1 2 ClutterAction :::::::::::::::::::::::::::::::::::::::: 2 3 ClutterActorMeta ::::::::::::::::::::::::::::::::::::: 3 4 ClutterActor ::::::::::::::::::::::::::::::::::::::::: 5 5 ClutterAlignConstraint:::::::::::::::::::::::::::::::: 63 6 ClutterAlpha :::::::::::::::::::::::::::::::::::::::: 65 7 ClutterAnimatable ::::::::::::::::::::::::::::::::::: 68 8 Implicit Animations :::::::::::::::::::::::::::::::::: 69 9 ClutterAnimator ::::::::::::::::::::::::::::::::::::: 76 10 ClutterBackend :::::::::::::::::::::::::::::::::::::: 82 11 ClutterBinLayout :::::::::::::::::::::::::::::::::::: 84 12 ClutterBindConstraint :::::::::::::::::::::::::::::::: 87 13 Key Bindings:::::::::::::::::::::::::::::::::::::::: 90
    [Show full text]
  • Referência Debian I
    Referência Debian i Referência Debian Osamu Aoki Referência Debian ii Copyright © 2013-2021 Osamu Aoki Esta Referência Debian (versão 2.85) (2021-09-17 09:11:56 UTC) pretende fornecer uma visão geral do sistema Debian como um guia do utilizador pós-instalação. Cobre muitos aspetos da administração do sistema através de exemplos shell-command para não programadores. Referência Debian iii COLLABORATORS TITLE : Referência Debian ACTION NAME DATE SIGNATURE WRITTEN BY Osamu Aoki 17 de setembro de 2021 REVISION HISTORY NUMBER DATE DESCRIPTION NAME Referência Debian iv Conteúdo 1 Manuais de GNU/Linux 1 1.1 Básico da consola ................................................... 1 1.1.1 A linha de comandos da shell ........................................ 1 1.1.2 The shell prompt under GUI ......................................... 2 1.1.3 A conta root .................................................. 2 1.1.4 A linha de comandos shell do root ...................................... 3 1.1.5 GUI de ferramentas de administração do sistema .............................. 3 1.1.6 Consolas virtuais ............................................... 3 1.1.7 Como abandonar a linha de comandos .................................... 3 1.1.8 Como desligar o sistema ........................................... 4 1.1.9 Recuperar uma consola sã .......................................... 4 1.1.10 Sugestões de pacotes adicionais para o novato ................................ 4 1.1.11 Uma conta de utilizador extra ........................................ 5 1.1.12 Configuração
    [Show full text]