Red Hat System Administrator I

Total Page:16

File Type:pdf, Size:1020Kb

Red Hat System Administrator I RED HAT SYSTEM ADMINISTRATOR I Written by Arthur Berezin 054-2266463 [email protected] Red Hat System Administrator I Written by Arthur Berezin 054-2266463 [email protected] Unit One GNOME DESKTOP Gnome gedit Written by Arthur Berezin 054-2266463 [email protected] GNOME ● GNOME is default graphical environment ● Lets you use your mouse and keyboard ● Includes integrated apps ● Nautilus File Manager ● Gedit Text Editor ● and many more... Written by Arthur Berezin 054-2266463 [email protected] GNOME ● Panel ● Applet ● Work Space Written by Arthur Berezin 054-2266463 [email protected] GNOME Switch workspace with keyboard ctrl + alt + [ Left Arrow | Right Arrow] or ● Switch Work Space Written by Arthur Berezin 054-2266463 [email protected] GNOME ● Linux is knows for it's Command Line ● Why graphical Environment ? ● Some things are easier ● Useful to understand differences ● Support users as Sysadmin ● The command line is very important Written by Arthur Berezin 054-2266463 [email protected] Password ● Regular User Requirements: ● Must have 6 chars ● Must not be based on dictionary word ● Must be complex (Chars, Caps, Nums) ● User root may set any password ● To himself ● Any other user Written by Arthur Berezin 054-2266463 [email protected] Password ● Change Password Using GUI ● Or # passwd in Bash Written by Arthur Berezin 054-2266463 [email protected] Text Configuration Files ● Linux basic design principle ● Easier for humans ● Simple editor can fix problems ● Most programs use text configuration files Written by Arthur Berezin 054-2266463 [email protected] gedit ● Graphical tool for editing text files ● Command Line Editors: ● vi ● vim ● nano Written by Arthur Berezin 054-2266463 [email protected] Unit Two MANAGE FILES Nautilus Remote Storage Written by Arthur Berezin 054-2266463 [email protected] Nautilus ● Gnome file manager ● Explore file-system ● View file properties ● Manipulate files – Copy, Delete, Move,Cut, Paste.. ● Applications > System Tools > File Broser Written by Arthur Berezin 054-2266463 [email protected] Nautilus ● Default view: Spatial mode ● Open folders in new windows ● May be changed to Browser Mode – System > Preferences > File Managment ● Behavior > Always Open In Browser Windows Written by Arthur Berezin 054-2266463 [email protected] Written by Arthur Berezin 054-2266463 [email protected] Nautilus ● Allows access to remote systems ● FTP ● Windows Shares ● SSH (remote login) ● NFS (Network File-system) Written by Arthur Berezin 054-2266463 [email protected] Nautilus ● Nautilus tips: ● List View [ View > List | CTRL + 2 ] ● Hidden Files – Name begins with (.) period – View > Show Hidden Files ● Drag and Drop – Same Partition: Move – Different Partition: Copy ● Command Line: ls(List), mv(Move),cp(Copy), mkdir Written by Arthur Berezin 054-2266463 [email protected] Nautilus ● Nfs shares withWritten autofs by Arthur Berezin in /net/host 054-2266463 [email protected] Unit Three GETTING HELP Local Documentation On-Line Red Hat Documentation Getting most from Support Written by Arthur Berezin 054-2266463 [email protected] Local Documentation ● Man pages ● Most commonly used ● Documenting commands and configuration files ● Decided into chapters ● GNU Info ● Hypertext books ● Gnome help system ● For desktop environment ● Hypertext books Written by Arthur Berezin 054-2266463 [email protected] Gnome Help Browser Written by Arthur Berezin 054-2266463 [email protected] GNU Info ● To access open GNOME help browser ● Go to > GNU Info Pages ● Search info:[node name] – For example info:GRUB Written by Arthur Berezin 054-2266463 [email protected] Man pages ● On GNOME help Brewser ● Search man:man-page ● Same items on different pages can appear ● Specify chapter ● Man:passwd(5) ● Command Line: man, info ● More documentation in /usr/share/doc Written by Arthur Berezin 054-2266463 [email protected] On-Line Red Hat Documentation ● Documentation ● Http://access.redhat.com/docs – Release notes – Installation Guide – Migration Planing Guide – Deployment Guide – ● Customer Portal ● Bunch of info ● Knowledge-base Written by Arthur Berezin 054-2266463 [email protected] Getting most from Support ● Define the problem, how to reproduce? ● Do your homework ● Documentation ● k.bases ● Background info ● Software versions ● Diagnostics Info ● Sosreprot collects logs and conf. files Written by Arthur Berezin 054-2266463 [email protected] Unit Four LOCAL SERVICES The root User System Clock Print Queue Print Jobs Written by Arthur Berezin 054-2266463 [email protected] Role of user: root ● User root is the superuser ● Has all power over the system ● Has power to override normal privileges ● install, remove, software, Manage configuration ● Most devices controlled by root ● Exeption: USB Written by Arthur Berezin 054-2266463 [email protected] Role of user: root ● “With Great Power Comes Great Responsibility” Stan Lee ● Unlimited power to damage the system ● We will use normal user, and gain power when needed ● Command: su substitute user ● Command: sudo execute command as another user Written by Arthur Berezin 054-2266463 [email protected] System Clock ● Network Time Protocol (NTP) ● Time synchronization Protocol ● Makes the seconds shorter if it rushes ● Reduces time differences between systems ● Recomended to have at least three NTP servers Written by Arthur Berezin 054-2266463 [email protected] System Clock Written by Arthur Berezin 054-2266463 [email protected] Printers ● Common Unix Priniting System (CUPS) ● Locally or network ● Supports IPP, LPD(Linux Printer Daemon) and Microsoft Shared Printers Written by Arthur Berezin 054-2266463 [email protected] Printers ● Each printer has one or more queues ● Print job is sent to a queue ● System Administrator sets a printer ● System > Administration > Printing ● Web interface TCP port 631 ● Http://localhost:631 ● Http://localhost:631/help ● Man: man system-config-printer(1) Written by Arthur Berezin 054-2266463 [email protected] Unit Five BASH Bash Syntax Using Bash Launching graphical commands as root Written by Arthur Berezin 054-2266463 [email protected] Introduction to Bash ● Shell Command Line Interface ● Bash – Red Hat Default Shell ● Bash – “bourne again shell” ● Improved version of old unix bourne shell(sh) ● Looks like windows cmd.exe Written by Arthur Berezin 054-2266463 [email protected] Using Command Line ● Application > system tools > Terminal ● right click on the desktop > Open Terminal ● Prompt line ● Current user ● Short hostname ● Directory ● $ for normal user ● # for superuser Written by Arthur Berezin 054-2266463 [email protected] Using Command Line ● Command line usually have three basic parts ● Command ● Options – One dash for short (-a) or two for full option name (--all) ● Arguments ● # df -h /home ● --help for syntax Written by Arthur Berezin 054-2266463 [email protected] Using Command Line ● Conventions ● [ ] is optional ● ... is N times ● | choose any of the options ● <> variable Data – <FILENAME> for example ● Man is your friend, man bash Written by Arthur Berezin 054-2266463 [email protected] Using Bash ● #passwd ● # id ● # su [ - ] username ● -c for single command (similar to Run As.) ● # exit Written by Arthur Berezin 054-2266463 [email protected] Useful Features ● Tab Completion ● Allows quickly complete commands ● History ● !<> Written by Arthur Berezin 054-2266463 [email protected] Launching Graphical Tools from bash ● Command & ● CTRL + c Cancel ● CTRL + z Background ● # jobs – running commands ● # fg - bring to front ground Written by Arthur Berezin 054-2266463 [email protected] Unit Six MANAGE STORAGE I PC Storage Model Determine Disk Usage Manage Virtual Guests Create a New File System Written by Arthur Berezin 054-2266463 [email protected] Partitions ● Hard disks are split into partitions (IBM) ● Each partitions has a file system ● Each partitions can be used for a different purpose ● Example: home partition, system partition Written by Arthur Berezin 054-2266463 [email protected] Master Boot Record ● RHEL(Red Hat Enterprise Linux) and Windows use Master Boor Record partitioning system ● This backs to IBM PC (early 80's) Written by Arthur Berezin 054-2266463 [email protected] Master Boot Record ● MBR is the first Sector of the Hard Disk (512 bytes) – First 446 is part of the Boot Loader – Last 64 is the Partition Table Written by Arthur Berezin 054-2266463 [email protected] Partition Table ● Has room for 4 primary partitions ● Contains info on each partition – first sector – Last sector – Code that indicates information type(fs, lvm..) ● If more needed one is used as extended partition ● Divided into logical partitions Written by Arthur Berezin 054-2266463 [email protected] Written by Arthur Berezin 054-2266463 [email protected] Disk Utility ● Graphical utility to easily manage disk partitions ● List available devices, Disk Partitions, Info ● Allows to re-partition the disk ● Application > System Tools > Disk Utility Written by Arthur Berezin 054-2266463 [email protected] Disk Utility ● Allows to create new partitions ● Partitions must be formated ● Standard system uses EXT4 filesystem ● To use filesystem we need to mount it Mount -t <filesystem type> <device> <Mount Point> ● Mount point – empty directory ● When mounted the filesystem can be view as content of the directory ● This is called “Mounting file-system on mount-point” Written by Arthur Berezin 054-2266463 [email protected] /etc/fstab ● Text file lists all mounted partitions on boot ● Can be edited
Recommended publications
  • MX Linux Benutzerhandbuch V
    MX Linux Benutzerhandbuch v. 20210327 manual AT mxlinux DOT org MX Linux Webseite MX Linux deutschsprachiges Forum Strg-F = Dieses Handbuch durchsuchen Pos1 / Home = Zum Anfang des Dokuments Translation: Sigi Vranšak – SpinBit Informatik Schaan, 27.03.2021 Tools: LibreOffice 7.0.4, deepl.com Rückmeldungen zu diesem deutschsprachigen Handbuch bitte an: [email protected] OpenPGP 51F0D5C53CF46E29 Titel des englischen Originals: MX Linux Users Manual v. 20200801 Inhalt 1 Einleitung.........................................................................................................................................7 1.1 Über MX Linux..........................................................................................................................7 1.2 Über dieses Handbuch.............................................................................................................7 1.3 Systemanforderungen..............................................................................................................8 1.4 Unterstützung und «Lebensdauer» (EOL, End Of Life)...........................................................8 1.5 Fehler, Probleme und Anfragen, Anträge.................................................................................9 1.6 Migration, Upgrade (Aktualisierung nächste Hauptversion)..................................................10 1.7 Unsere Standpunkte...............................................................................................................10 1.7.1 Systemd..........................................................................................................................10
    [Show full text]
  • MX-19.2 Users Manual
    MX-19.2 Users Manual v. 20200801 manual AT mxlinux DOT org Ctrl-F = Search this Manual Ctrl+Home = Return to top Table of Contents 1 Introduction...................................................................................................................................4 1.1 About MX Linux................................................................................................................4 1.2 About this Manual..............................................................................................................4 1.3 System requirements..........................................................................................................5 1.4 Support and EOL................................................................................................................6 1.5 Bugs, issues and requests...................................................................................................6 1.6 Migration............................................................................................................................7 1.7 Our positions......................................................................................................................8 1.8 Notes for Translators.............................................................................................................8 2 Installation...................................................................................................................................10 2.1 Introduction......................................................................................................................10
    [Show full text]
  • Xubuntu-Documentation-A4.Pdf
    Xubuntu Documentation The Xubuntu documentation team. Xubuntu and Canonical are registered trademarks of Canonical Ltd. Xubuntu Documentation Copyright © 2012–2017 The Xubuntu documentation team. Xubuntu and Canonical are registered trademarks of Canonical Ltd. Credits and License This documentation is maintained by the Xubuntu documentation team and is partly adapted from the Ubuntu documentation. The contributors to this documentation are: • David Pires (slickymaster) • Elfy (elfy) • Elizabeth Krumbach (lyz) • Jack Fromm (jjfrv8) • Jay van Cooten (skippersboss) • Kev Bowring (flocculant) • Krytarik Raido (krytarik) • Pasi Lallinaho (knome) • Sean Davis (bluesabre) • Stephen Michael Kellat (skellat) • Steve Dodier-Lazaro (sidi) • Unit 193 (unit193) The contributors to previous versions to this documentation are: • Cody A.W. Somerville (cody-somerville) • Freddy Martinez (freddymartinez9) • Jan M. (fijam7) • Jim Campbell (jwcampbell) • Luzius Thöny (lucius-antonius) This document is made available under the Creative Commons ShareAlike 2.5 License (CC-BY-SA). You are free to modify, extend, and improve the Ubuntu documentation source code under the terms of this license. All derivative works must be released under this license. This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE AS DESCRIBED IN THE DISCLAIMER. A copy of the license is available here: Creative Commons ShareAlike License. All trademarks or registered trademarks are the property of the respective owners. Welcome! This documentation provides information on some of the most common topics on using Xubuntu, including: Chapter 7, Connecting to Internet and Networks Chapter 9, Managing installed applications In addition, this documentation has three quick guides: Chapter 3, Getting to know your desktop environment Chapter 5, Quick guide to default applications Chapter 11, Keeping your computer and personal information safe The complete set of topics is listed below.
    [Show full text]
  • A Slim and Trim Linux System for You !
    A slim and trim Linux system for you ! S. Parthasarathy [email protected] ncdubuntu.odt 2018-08-12a A stitch in time … You just created a shiny new Linux system with all the bells and whistles ? Happy to see your new babe giggle and dance, as you play with her ? You want it to be the same way all the time ? It is important to do some house-keeping once a while. Over time, a computer system tends to get cluttered for many reasons. For example, software packages that are no longer needed can be uninstalled. When the system is upgraded from release to release, it may miss out on configuration tweaks that freshly installed systems get. Updating your system through the default updating tool will gradually cause the accumulation of packages and the filling of the cache. This can have a larger impact when you're uninstalling software packages and their dependencies are left behind for no reason. Over the time, you could have a dozen copies of the same file lying in different corners of your system. The best place is to hunt them down and eliminate them before they take control of the hard disk. Occasional mishaps, like unexpected disk crashes, or unintentional power failures may leave your disk with a lot of inaccessible fragments. A badly configured application may quietly chew up your disk, till there is no more free space left. Or, a runaway process or shell script may keep filling up your disk over and over again. The result could be a dramatic lockout for you.
    [Show full text]
  • Using Ubuntu MATE and Its Applications
    Using Ubuntu MATE and Its Applications Ubuntu MATE 20.04 LTS Edition Copyright 2017-2020 Larry Bushey. Some rights reserved. Third Edition Published by Larry Bushey at Amazon This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/, or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. We permit and even encourage you to distribute a copy of this book to colleagues, friends, family, and anyone else who might be interested. - 2 - Table of Contents Introduction 7 So You've Discovered Linux! 8 The Basics 10 Why Users Switch from Windows 10 Why Users Switch from macOS 11 Ubuntu MATE Works for You, Not the Other Way Around 12 Personalizing Ubuntu MATE 14 Choosing and Changing Panel Layouts 16 Changing the Location of the Window Button Controls 24 Changing the Desktop Background 25 Changing the Theme 26 Modifying the Panels 28 Desktop, Panel, and Menu Icons 30 Display Settings 36 High-Resolution Monitors 38 Power Management 40 Screensaver 46 Adding Software to Ubuntu MATE 48 Installing Trusted Linux Applications 48 Trusted Sources 49 Software Boutique 50 Installing Other Software Center Applications 53 Using the Applications 55 Ubuntu Welcome 55 The Ubuntu MATE Guide 63 Accessibility Software 65 MATE's Applications 72 File Browser (Caja) 72 Text Editor (Pluma) 75 MATE Calculator 78 Archive Manager (Engrampa) 79 Image Viewer (Eye of MATE) 81 Document Viewer (Atril) 83 - 3 - MATE
    [Show full text]
  • Pdf/Acyclic.1.Pdf
    tldr pages Simplified and community-driven man pages Generated on Sun Sep 26 15:57:34 2021 Android am Android activity manager. More information: https://developer.android.com/studio/command-line/adb#am. • Start a specific activity: am start -n {{com.android.settings/.Settings}} • Start an activity and pass data to it: am start -a {{android.intent.action.VIEW}} -d {{tel:123}} • Start an activity matching a specific action and category: am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}} • Convert an intent to a URI: am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}} bugreport Show an Android bug report. This command can only be used through adb shell. More information: https://android.googlesource.com/platform/frameworks/native/+/ master/cmds/bugreport/. • Show a complete bug report of an Android device: bugreport bugreportz Generate a zipped Android bug report. This command can only be used through adb shell. More information: https://android.googlesource.com/platform/frameworks/native/+/ master/cmds/bugreportz/. • Generate a complete zipped bug report of an Android device: bugreportz • Show the progress of a running bugreportz operation: bugreportz -p • Show the version of bugreportz: bugreportz -v • Display help: bugreportz -h cmd Android service manager. More information: https://cs.android.com/android/platform/superproject/+/ master:frameworks/native/cmds/cmd/. • List every running service: cmd -l • Call a specific service: cmd {{alarm}} • Call a service with arguments: cmd {{vibrator}} {{vibrate 300}} dalvikvm Android Java virtual machine. More information: https://source.android.com/devices/tech/dalvik. • Start a Java program: dalvikvm -classpath {{path/to/file.jar}} {{classname}} dumpsys Provide information about Android system services.
    [Show full text]
  • Handbook on Ubuntu-Linux for Judiciary Prepared By
    HANDBOOK ON UBUNTU-LINUX (As Customized by Hon'ble e-Committee, Supreme Court of India) FOR JUDICIARY PREPARED BY HIGH COURT OF AP 2 Contributors to this document: 1. Sri. B V L N Chakravarthi 2. Sri. M Suneel Kumar 3. Smt. D Varoodhini 4. Sri. M Radha Krishna Chahavan 5. Sri. T Venu Gopal Rao 6. Sri. B Rajasekhar 7. Sri. D Yedukondalu 8. Sri. S Nageswara Rao 9. Sri. C N Murthy 10. Sri. R Raghunatha Reddy 11. Sri. P Govardhan 12. Sri. Ch Jithendhar All the above are Judicial Officers of Andhra Pradesh Judiciary. Compiled and Edited by Mr. BVLN Chakravarthy and Mr. M.Radha Krishna Chahavan under the guidance of High Court of AP, Hyderabad. High Court of AP 3 Table of Contents BASIC OPERATING SYSTEM CONCEPTS.................................................................7 What is a Computer ?.......................................................................................7 What makes a Computer System ?...................................................................7 What is Software ?............................................................................................7 Why Linux ?......................................................................................................9 UNDERSTANDING THE UBUNTU MENU DESIGN...................................................10 Applications & Places Menu Design................................................................10 DESKTOP................................................................................................................11 UNITY DESKTOP ....................................................................................................12
    [Show full text]
  • Oracle® Solaris 11.2 Package Group Lists Briefly Describes Packages That Are Installed by Default by the Different Oracle Solaris 11.2 Installers
    ® Oracle Solaris 11.2 Package Group Lists Part No: E36807-02 May 2015 Copyright © 2009, 2015, 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, 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. No other rights are granted to the U.S. Government. This software or hardware is developed for general use in a variety of information management applications.
    [Show full text]
  • Numbers Symbols A
    INDEX Numbers managing audio files on with Rhythmbox, 282 3D graphics, 394 working with, 280 3D modeling, Blender for, 258, 259 animation, Blender for, 258–259 3G, 55 antivirus software, 340 4OD. See Flash avast!, 346–347 802.11a/b/g/n. See wireless, ClamAV, 344, 346 connection f-Prot, 344 Panda Desktop Secure, 344 Symbols appending file to tarball, 172 * (asterisk), use as wildcard Apple hackers, 365 character, 177 applets, 65 / (root), 100 adding to desktop panel, 31 defined, 30 A applications. See also installing applications; software AAC files, playing locked, 288 compiling from source, 184, 189 AbiWord, 238 costs of, 3 accented characters, typing, finding commands for, 359 213, 216 firewall, 342, 344 Add-ons window, 68 installing with apt-get, 168 Adobe Flash Player, 63 installing with aptitude, 169 Advanced Package Tool (APT). See Internet, 59 APT (Advanced Package moving between virtual Tool) desktops, 41 advertising on IRC, 371 restarting for new font adware, 4 display, 144 AIFF file format, 262 ScribeFire, 66 AIM. See IM (instant messaging) web resources, 424 album art, Rhythmbox, 267 Wine for running Windows Ambiance, default theme in applications, 329–332 Ubuntu, 134 Applications menu, 27 AMD64 processor, Ubuntu CD for, Add/Remove, 80 409, 411 adding launchers to panel from, Android-based phones 32–33 copying files to hard drive, 284 Brasero Disc Burner, 110 ejecting, 282 Ubuntu for Non-Geeks, 4th Edition (C) 2010 by Rickford Grant and Phil Bull Applications menu, continued audio players Evolution Mail, 69 alternatives to
    [Show full text]
  • Axcient Recovery Toolkit Guide.) A
    Updated: Jan 2021 x360Recover – Recovery Toolkit Customer Support At Axcient, we want to help you quickly resolve your technical issues and value your input to build products that incorporate your suggestions. If you need assistance with set-up or any other technical questions or issues, please open a ticket with our Technical Support team or call: ➢ 720-204-4500, and select 2 for technical support, then 1 for Replibit, which includes x360Recover, or ➢ 800-352-0248 and select 2 for technical support, then 1 for Replibit, which includes x360Recover. For known problem resolutions, open a browser and navigate to: Knowledgebase: https://support.axcient.com/hc/en-us/categories/115000502027-Axcient-x360Recover 2 x360Recover – Recovery Toolkit Table of Contents Customer Support ..................................................................................................................................... 2 Overview of Features .................................................................................................................................... 5 This utility contains: ........................................................................................................................... 5 Getting Started .............................................................................................................................................. 6 On the desktop, you will find the following items: ....................................................................... 6 The Taskbar ..............................................................................................................................................
    [Show full text]
  • Sow - Station Ubuntu 18.4 LTS - Applications
    sow - station Ubuntu 18.4 LTS - Applications Sowebio SARL 15, rue du Temple 17310 – St Pierre d’Oléron – France Capital 15 000 EUR – SIRET 844 060 046 00019 – RCS La Rochelle – APE 6201Z – TVA FR00844060046 sow - station Ubuntu 18.4 LTS - Applications édition 116 du 30/10/19 www.soweb.io Ce document est la propriété de Sowebio SARL et ne doit pas être copié ou transmis sans permission [email protected] This document is property of Sowebio SARL and may not be copied or circulated without permission page 1 sur 93 Indice Validation Objet 1 17/06/18 Édition initiale - source station Debian 9 - Applications sr 3 18/06/18 Refonte complète, simplification et épuration des logiciels sr 20 24/06/18 Mise à jour générale sr 25 29/10/18 Mise à jour générale sr 49 06/12/18 Squirrel SQL Client sr 57 19/12/18 Sublime Text sr 61 21/12/18 Mise à jour Teamviewer sr 64 10/01/19 Netbeans sr 70 04/02/19 Mise à jour et corrections de typos sr 71 12/02/19 Mise à jour des plugins Gimp sr 74 22/02/19 Mise à jour Netbeans sr 75 01/03/19 Mise à jour Netbeans, correction de typos sr 77 03/03/19 Mise à jour LibreOffice, anomalie récurrente de la perte de police du style par défaut sr 80 20/04/19 Mise à jour Veracypt sr 82 03/05/19 Mise à jour Libre Office - utilitaire et anomalie pollution xml si format 1.2 étendu sr 84 06/05/19 Script de recherche généralisée pour documents Libre Office sr Unification du chapitre Développement et suppression de ce chapitre dans « sow - station Debian 9 sr 88 29/06/19 - Applications » 91 16/07/19 Mise à jour Teamviewer sr 100 06/08/19 Mise à jour Treepadbiz et Wine sr 108 23/09/19 Mise à jour LibreOffice, anomalie récurrente de la perte de l’affichage du navigateur de styles sr 108 02/10/19 Ajout Firefox Developer Edition sr 113 13/10/19 Ajout keylogger Logkeys sr 114 30/10/19 Ajout Zint.
    [Show full text]
  • Introduction to Linux Mint
    Official User Guide Linux Mint 9 “Isadora” Main Edition Page 1 of 50 Table of Contents INTRODUCTION TO LINUX MINT ........ 3 The “Search” field........................................30 DEFINE YOUR FAVORITE APPLICATIONS..................31 MAKE YOUR OWN SHORTCUTS.............................31 HISTORY..........................................................3 LAUNCH APPLICATIONS AUTOMATICALLY WHEN YOU PURPOSE..........................................................3 LOG IN............................................................31 VERSION NUMBERS AND CODENAMES ...................4 CHANGE THE APPEARANCE OF THE MENU..............32 EDITIONS..........................................................5 ACTIVATE THE RECENT PLUG-IN..........................32 WHERE TO FIND HELP........................................5 RESTORE THE DEFAULT SETTINGS.........................33 REPLACE THE MENU WITH THE DEFAULT GNOME INSTALLATION OF LINUX MINT ......... 6 MENU..............................................................33 DOWNLOAD THE ISO........................................6 SOFTWARE MANAGEMENT ................ 34 VIA TORRENT....................................................6 Install a Torrent client....................................7 Download the Torrent file..............................7 PACKAGE MANAGEMENT IN LINUX MINT..........34 THE SOFTWARE MANAGER................................39 VIA A DOWNLOAD MIRROR...................................7 THE MENU......................................................39 READ THE RELEASE NOTES................................7
    [Show full text]