King of the Desktop

Total Page:16

File Type:pdf, Size:1020Kb

King of the Desktop Confi guration King of the Desktop Turn your desktop into a dashboard that dis- plays system monitoring data, weather updates, news headlines, and more with Conky. BY DMITRI POPOV When it comes to system monitoring tools, You should then see the Conky panel in all its color. In the example below, Conky renders a Conky [1] rules the roost supremely. This light- beauty at the bottom of the screen. transparent 300-pixel-wide window superim- weight utility can help you keep an eye on vir- posed on the desktop in the top right corner of tually any aspect of your system, and it offers a Configuring Conky the screen: long list of options for you to tweak. But dis- By default, Conky’s configuration options are playing various information about your system stored in the .conkyrc file, which is split into maximum_width 300 is only one of Conky’s many talents: You can two parts: the first controls Conky’s appear- own_window_transparent yes use this nifty tool to pull headlines from RSS ance, and the second specifies which parame- own_window_type override feeds, check email, view the weather forecast, ters to monitor and how to display them. To alignment top_right and even execute commands and display out- learn the ropes, I’ll show you how to create a put right on your desktop. In other words, configuration file from scratch. So, fire up your By default, you can place the Conky window Conky lets you turn the desktop into a power- favorite text editor to get ready to go. at any of the four corners of the screen using ful dashboard that feeds you all the important To begin, you must specify the update inter- the alignment top_left, alignment top_right, information. val, or how often Conky “collects” the moni- alignment bottom_left, and alignment bottom_ Configuring Conky can be a daunting prop- tored data. This is done by specifying the up- right options. But what if you want to move the osition, but despair not: I’ll demonstrate how date_interval option in seconds, for example window slightly to the left or a little bit down? to tweak Conky’s settings and put this powerful update_interval 1.0 or update_interval 5.0. You To do this, you can use the gap_x and gap_y tool to some clever uses. must also set the total_run_times option to 0 to options, which specify the distance between let Conky run until you close it. the borders of the screen and the window: Install Conky By default, Conky uses a monospace font, Because Conky is available in Ubuntu software but you can instruct it to use any font installed gap_x 10 repositories, installing it is a matter of running on your system by enabling the use_xft option gap_y 35 the sudo apt-get install conky command. Be- and specifying a font in the xftfont setting. For sides the core package, you might want to in- example, if you want Conky to use Droid Sans If you don’t want text in the Conky window to stall a few third-party additions that extend Mono 9pt font, these options should be: appear in caps, use the uppercase no option. Conky’s functionality. Conky offers many more configuration options To do this, you have to add the conkyhard- use_xft yes for you to tweak, but these will get you started. core personal package archive (PPA) using the xftfont Droid Sans Mono:size=9 With the basic display options in place, you following command: override_utf8_locale yes can start adding and configuring the system parameters you want Conky to monitor. This is sudo apt-add-repository U The last parameter forces Conky to use UTF8 done using so-called variables. For example, to ppa:conkyhardcore/ppa && U encoding when use_xft yes is enabled. display the kernel version of your system, you sudo apt-get update Quite often, the Conky window might flicker can use the kernel variable. Note that each during refreshing, which can be very annoying. variable is preceded by the $ sign. Conky also Conky has two options to help you to combat includes a few variables that allow you to con- Getting a Taste of Conky that problem. The double_buffer option lets trol the appearance of the output. The color Before you get your hands dirty tweaking Con- Conky use the X double-buffer extension that variable allows you to specify text color, ky’s configuration file, you might want to get a can eliminate flickering. If enabling double_ whereas the alignr variable allows you to right- taste of Conky’s capabilities using one of many buffer doesn’t help, you can use the own_win- justify text. To see how this works in practice, ready-to-use solutions like Conky Ubuntu dow option that forces Conky to run in a sepa- take a look at the following example: Lucid Theme (Figure 1) [2]. Grab the latest ver- rate window. To be on the safe side, you might sion of the theme, unpack the downloaded ar- want to enable both options: ${color lightgrey}Uptime:$color U chive and move the resulting .conkytheme $uptime $alignr${color lightgrey}U folder to your home directory. double_buffer yes Load:$color $loadavg Launch the terminal and run the following own_window yes command: The ${color lightgrey} variable sets the text to The next step is to specify the window settings, light gray. To switch to the default color (white), conky -c ~/.conkytheme/conkyrc including its width, alignment, and default use the color variable without a parameter. 86 ISSUE 06 DISCOVERY GUIDE Confi guration Conky sports several graphing variables that If you want to keep an eye on the download use Conky to go out and get the very latest you can use to visualize monitored data. The and upload speed, you can use the headlines from your favorite RSS feed: cpugraph variable, for example, displays CPU downspeedf and upspeedf variables (or usage as a graph. When used without any pa- downspeed and upspeed variables if you don’t ${rss http://www.linux-magazine.com/U rameters, the graph is shown using the default want to display the trailing decimal): rss/feed/productivity_sauce 10 U solid color, but you can use Hex color values item_titles 5} to specify gradients, which make the graph ${color lightgrey}Download speed: U look much better: $color${downspeedf wlan0} Kb/sec In the example above, Conky fetches the five most recent headlines from the Productivity ${cpugraph 000000 ffffff} Alternatively, you can use the downspeed- Sauce blog’s RSS feed every 10 minutes. Be- graph and upspeedgraph variables to display cause Identi.ca and Twitter publish updates via To display the memory-related data, you can the download and upload speeds as graphs. RSS, you can use the rss variable to keep an use the memmax (the total amount of RAM), And if you want to monitor the total amount of eye on updates from people you follow: mem (memory in use), and memperc (percent- downloaded and uploaded data, you can use age of memory in use) variables: the totaldown and totalup variables: ${rss http://identi.ca/api/statuses/U friends_timeline/dmpop.rss U ${color lightgrey}RAM usage:$color U ${color red}Down: U 15 item_titles 7} $mem/$memmax - $memperc% $color${totaldown wlan0} U $alignr ${color green}Up: U Perhaps the most versatile variable in Conky’s When it comes to monitoring disk usage, you $color${totalup wlan0} arsenal is execi. It allows you to run any shell have a few variables from which to choose, in- command and display the output in the Conky cluding fs_free (free space), fs_size (total size), This can come in particularly handy if you are window. You can put this functionality to many and fs_bar (space used bar): using a connection with a download cap. nifty uses. For example, you can create a plain- text file for your to-do list and then use the fol- ${color grey}Disk usage: U Clever Tricks lowing command to display it in the Conky $color${fs_free /} of U Conky includes several conditional variables window: ${fs_size /} that give you even more flexibility. For exam- ${fs_bar 6 /} ple, if your machine has a wired and wireless ${execi 30 cat ~/TODO.txt | fold -w40} interface, you might want to monitor both of Conky also includes several variables that them. But usually you use only one interface at The execi variable can do more advanced allow you to monitor wireless interfaces, in- a time, so you don’t need Conky to display in- tricks too, like displaying the number of in- cluding wireless_essid (returns the ESSID name formation about the inactive interface. This is coming email messages in your inbox. For that, of the access point), wireless_link_qual (returns where the if_existing, else, and endif variables you can use the conkyemail package from the wireless link quality), and wireless_link_bar come into the picture. Using them, you can conkyhardcore repository you installed earlier. (returns the wireless link quality displayed as a specify a condition that displays information Just install the package with sudo apt-get install bar). about a specific interface only when it’s active; conkyemail. Then, issue the conkyEmail --help To obtain the name of the wireless interface otherwise, the condition either hides the un- command to view a list of all available options. you will want to monitor with these variables, necessary data or displays a message like “No You can use these options to create an appro- use the ifconfig command, which returns a list Network Connection”: priate execi command. If you use Gmail, you of available network interfaces. Then, you can can use the command below to poll your use the variables to display the desired infor- ${if_existing /proc/net/route eth0}U Gmail account (replace the USER and PASS- mation about a specific wireless interface as ${color #ffcb48}Ethernet ${hr 1} WORD values with your actual Gmail user follows:: ${color lightgrey}IP address: U name and password): $alignr$color${addr eth0}${else}U U ${color #ffcb48}Wi-Fi ${hr 1} No Network Connection${endif} ${color #ffcb48}${ ${color lightgrey}ESSID: U execi 30 conkyEmail U $color${wireless_essid wlan0} Besides the system-related variables, Conky --servertype=IMAP U ${color lightgrey}Wireless signal: U has several other variables that can be used to --servername=imap.gmail.com U $color${wireless_link_qual wlan0}% pull and to process data from other sources.
Recommended publications
  • 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]
  • Monitoring Your System with Conky
    C@ELOLJ<I Conky System Monitor Dfe`kfi`e^pflijpjk\dn`k_:febp This light-weight system monitor keeps you informed about your com- At this point you will see a number of options that are enabled or disabled by puter’s performance. BY JAN RÄHM default. For example, if you use the Audacious media player, you will want ystem monitoring utilities help and provides information on a media to enable matching support in Conky by users keep track of performance player if a player happens to be active. specifying --enable-audacious=yes. If Jmetrics, and the Linux environ- To configure what you want the system your computer does not have sensors ment offers a variety of useful monitor- monitor to show and how you want it that check the hard disk temperature, ing utilities. One of the simplest and eas- shown to you is quite simple. you might want to disable the corre- iest of these monitoring tools is a desk- sponding feature, enabled by default, by top gem called Conky [1]. @ejkXccXk`fe Conky’s history goes back more than Conky is available from the repositories Listing 1: conky.ds four years. At the time, the project was of most, but not all, popular distribu- (if launched under the name Torsmo. After tions. Unless your choice of distribution (is (window_class) "Conky") just one year, Conky forked from Tor- does not come with Conky or – and this (begin smo. The project founders were inspired is more likely – you want to do some- (pin) by the Canadian TV show “Trailer Park thing special with the tool, you will not (undecorate) Boys” and chose one if its protagonists need to build the system monitor your- (wintype "dock") as the project name.
    [Show full text]
  • Ubuntu: Unleashed 2017 Edition
    Matthew Helmke with Andrew Hudson and Paul Hudson Ubuntu UNLEASHED 2017 Edition 800 East 96th Street, Indianapolis, Indiana 46240 USA Ubuntu Unleashed 2017 Edition Editor-in-Chief Copyright © 2017 by Pearson Education, Inc. Mark Taub All rights reserved. Printed in the United States of America. This publication is protected Acquisitions Editor by copyright, and permission must be obtained from the publisher prior to any prohib- Debra Williams ited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or likewise. For information Cauley regarding permissions, request forms and the appropriate contacts within the Pearson Managing Editor Education Global Rights & Permissions Department, please visit www.pearsoned.com/ permissions/. Sandra Schroeder Many of the designations used by manufacturers and sellers to distinguish their Project Editor products are claimed as trademarks. Where those designations appear in this book, and Lori Lyons the publisher was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals. Production Manager The author and publisher have taken care in the preparation of this book, but make Dhayanidhi no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in Proofreader connection with or arising out of the use of the information or programs contained Sasirekha herein. Technical Editor For information about buying this title in bulk quantities, or for special sales opportunities (which may include electronic versions; custom cover designs; and content José Antonio Rey particular to your business, training goals, marketing focus, or branding interests), Editorial Assistant please contact our corporate sales department at [email protected] or (800) 382-3419.
    [Show full text]
  • COMPLETE GUIDE to INSTALL UBUNTU LINUX with OPENBOX Ubuntuopenbox.Com/Udemy
    UbuntuOpenbox.com Copyright © 2016 by Dat H. Nguyen UDEMY COURSE MATERIAL COMPLETE GUIDE TO INSTALL UBUNTU LINUX WITH OPENBOX UbuntuOpenbox.com/udemy Section 3 – Install Ubuntu Operating System 1. Repositories: A repository is a server storing packages that are suitable to be installed right away (packages as well as all of their dependencies) /etc/apt/source.list file will have a list of repository addresses. *PPA: A Personal Package Archives (PPA) is a repository maintained by an individual or an independent group; as oppose to the official repository maintained by Ubuntu. 2. Update apt information (from source.list file) sudo apt-get update It will go to the addresses listed in the /apt/etc/source.list file and update the information about what are on there (which packages are on there) and what have been changed (what the current packages’ versions are). You need to execute this command whenever you want to install any package. 3. Install packages sudo apt-get install [packages' name] For example: sudo apt-get install firefox openbox will install both firefox and openbox at the same time. 4. Remove packages sudo apt-get remove firefox * remove packages and all their configuration file. sudo apt-get remove --purge firefox 5. nano to edit text file sudo nano /directory/to/text/file Navigate through the text file using up/down/left/right keys. * shortcut keys: “Ctrl + X” to exit nano, “Y” to save and “N” to abort the saving. Section 4 – Install Openbox And Configure It Last updated in February, 2016 1 of 7 UbuntuOpenbox.com Copyright © 2016 by Dat H.
    [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]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Debian and Ubuntu
    Debian and Ubuntu Lucas Nussbaum lucas@{debian.org,ubuntu.com} lucas@{debian.org,ubuntu.com} Debian and Ubuntu 1 / 28 Why I am qualified to give this talk Debian Developer and Ubuntu Developer since 2006 Involved in improving collaboration between both projects Developed/Initiated : Multidistrotools, ubuntu usertag on the BTS, improvements to the merge process, Ubuntu box on the PTS, Ubuntu column on DDPO, . Attended Debconf and UDS Friends in both communities lucas@{debian.org,ubuntu.com} Debian and Ubuntu 2 / 28 What’s in this talk ? Ubuntu development process, and how it relates to Debian Discussion of the current state of affairs "OK, what should we do now ?" lucas@{debian.org,ubuntu.com} Debian and Ubuntu 3 / 28 The Ubuntu Development Process lucas@{debian.org,ubuntu.com} Debian and Ubuntu 4 / 28 Linux distributions 101 Take software developed by upstream projects Linux, X.org, GNOME, KDE, . Put it all nicely together Standardization / Integration Quality Assurance Support Get all the fame Ubuntu has one special upstream : Debian lucas@{debian.org,ubuntu.com} Debian and Ubuntu 5 / 28 Ubuntu’s upstreams Not that simple : changes required, sometimes Toolchain changes Bugfixes Integration (Launchpad) Newer releases Often not possible to do work in Debian first lucas@{debian.org,ubuntu.com} Debian and Ubuntu 6 / 28 Ubuntu Packages Workflow lucas@{debian.org,ubuntu.com} Debian and Ubuntu 7 / 28 Ubuntu Packages Workflow Ubuntu Karmic Excluding specific packages language-(support|pack)-*, kde-l10n-*, *ubuntu*, *launchpad* Missing 4% : Newer upstream
    [Show full text]
  • Antix-Forum Conky Configuration
    (5) Conky configuration - Page 4 - antiX-forum https://www.tapatalk.com/groups/antix/conky-con... Manage Settings rokytnji antiX-forum Forum for users of antiX linux. "Mean and Lean" FORUMS DISCUSSIONS antiX-forum General Tips and Tricks Conky configuration 103 posts 1 2 3 4 5 6 7 Post !eply Search this topic… rokytn1i Posts 4,164 Joined- Thu Feb 19, 2009 7:44 pm Sun Oct 02, 2011 8:07 am 446 I usually make a new directory named /home/harry/Backups. Any Text files I 6ish to edit from /etc/fstab, /etc/X11/xorg.conf.d, and .conkyrc. The originals get copied into that folder as a safety net. I do this after every install out of habit now. Learned this the hard way way back when. Linux Registered User # 475019 Linux at Home courses How to Search for Anti solutions to your prob!ems !eply Edit Cuttlefish Posts 299 Joined- Thu Dec 18, 2003 10:50 am Sun Oct 02, 2011 5:51 pm 447 roky, when you save something as a backup, how do you save it? W%at type of file and 6%at application do you use= !eply Edit 1 of 12 11/02/2017 06:47 AM (5) Conky configuration - Page 4 - antiX-forum https://www.tapatalk.com/groups/antix/conky-con... Cuttlefish Posts 299 Joined- Thu Dec 18, 2003 10:50 am Sun Oct 02, 2011 7:18 pm 448 +hinking about this I must use nano. If I go into the terminal and type nano .conkyrc, the .conkyrc will open up in nano.
    [Show full text]
  • Q4OS User Manual
    Q4OS User Guide Version 0.3 Table of Contents Q4OS setup and using................................................................................................................................5 Introduction...........................................................................................................................................5 Testing...................................................................................................................................................5 Live CD............................................................................................................................................5 In Virtualbox.....................................................................................................................................5 Installation.............................................................................................................................................5 Live media........................................................................................................................................5 Installation CD..................................................................................................................................5 Postinstall steps.................................................................................................................................6 Wireless network setup..........................................................................................................................6 Print and Scan........................................................................................................................................6
    [Show full text]
  • Hello Everyone. I Introduce You Voyager GE 19.04 That Continues the Adventure with the Desktop Gnome Shell Version 3.32 by Introducing New Features
    Hello everyone. I introduce you Voyager GE 19.04 that continues the adventure with the desktop Gnome Shell version 3.32 by introducing new features. With the promise finally realized to have a light Gnome system, fast, fluid and powerful. This version is based on the Linux 5.0 kernel and distribution Ubuntu Disco Dingo . 19.04 is an intermediate version upgrade nine months preparing the future version 20.04 LTS - Long-term Support - 5 years that happens every two years, when Voyager will be available in 2 versions, GNOME Shell and Xfce. Also you can choose according to your wishes and capacity machines. The general idea of Voyager is to introduce in Gnome Gnome Shell preinstalled extensions and scripts grouped in a box that optimize the system with a choice of necessary software. A video presentation and pictures are available. Soon for this new human and digital adventure. Voyager wants multi-profile and multi-task in an environment aesthetic and immersive as possible and that, from the origins of traveling, so that time spent on your machine is the most pleasant. In summary, the general idea is that for each profile, we have options available types that can activate or not. Voyager GE 19.04 based on Ubuntu 19.04 will cycle nine months of support and updates. For information, these are intermediate versions that prepare Future LTS. You can then seamlessly transition to 19.10 with automatic up-to-date system and so on until the next LTS. Voyager GE is not a distribution with its deposits but a customized variant of Ubuntu as mentioned above, with all its official repositories.
    [Show full text]
  • Volume 102 July, 2015 Monitor Your System with Conky, Part 2 Game
    Volume 102 July, 2015 : G e T PC i IM ap ip T od Tu P sc : To H K M to nk ial Ti p g ay o ria I or A T ps sin pl re l: ut g erm : U is E Ph T tin in o D re di ot ea at T W al T tu s tin o Cr up al ith Pic ow Tr g et kin sh ick K n g de s Ico Co Sli w Monitor Your System With Conky, Part 2 Game Zone: Slinki HTPC: Kodi Keyboard Shortcuts PCLinuxOS Magazine Page 1 And more inside ... In This Month's Issue... 3 Welcome From The Chief Editor 4 Monitor Your System With Conky, Part Two The PCLinuxOS name, logo and colors are the trademark of 11 ms_meme's Nook: Going Out Of My Mind Texstar. The PCLinuxOS Magazine is a monthly online publication 12 PCLinuxOS Recipe Corner containing PCLinuxOS-related materials. It is published primarily for members of the PCLinuxOS community. The 13 Screenshot Showcase magazine staff is comprised of volunteers from the PCLinuxOS community. 14 HTPC: Using Kodi To Display Picture Slideshows Visit us online at http://www.pclosmag.com 20 Screenshot Showcase This release was made possible by the following volunteers: 21 GIMP Tutorial: More Photo Editing Tricks Chief Editor: Paul Arnote (parnote) Assistant Editor: Meemaw Artwork: Sproggy, Timeth, ms_meme, Meemaw 22 Screenshot Showcase Magazine Layout: Paul Arnote, Meemaw, ms_meme HTML Layout: YouCanToo 23 Tip Top Tips: Terminal With "Talking Cow" Staff: 26 Inkscape Tutorial: Creating A Ketupat Icon ms_meme loudog Meemaw YouCanToo Gary L.
    [Show full text]
  • Monitoring Avec Conky, Munin Et Zabbix
    Contrôler le fonctionnement d'une station Debian Etch avec Conky, Munin et Zabbix Introduction L'informatique est une course dont les mécanismes sont bien connus: les éditeurs logiciels pour séduire de nouveaux utilisateurs ajoutent sans cesse de nouvelles fonctionnalités et améliorent l'ergonomie de leurs produits. Mais ces améliorations ont un coût en terme de performances globales de l'ordinateur. En guise de riposte, l'industrie innove en mettant à la disposition des utilisateurs de PC des matériels aux performances sans cesse accrues. Mais bientôt cette puissance de calcul est absorbée par de nouvelles « merveilles » logicielles..... Ce cercle vicieux fait tourner le monde de l'informatique depuis ses débuts et, au final, le possesseur de PC, dont le budget ne lui permets pas d'investir dans un nouvel ordinateur tout les six mois, est perpétuellement frustré. Alors, il essaye d'optimiser le réglage de son environnement afin de tirer le meilleur parti du matériel dont il dispose. Mais pour être efficace dans ses choix, il est important de bien connaître l'état des différents paramètres de son système. Dans cet article, nous allons présenter quelques outils logiciels permettant de suivre l'évolution des paramètres clefs de votre Linux. Cet article explique... Comment installer et configurer les outils Conky, Munin et Zabbix pour contrôler les ressources d'une station équipée du système d'exploitation Linux Debian Etch. Ce qu'il faut savoir.... Pour aborder cet article, il faut disposer des droits « administrateur » sur la station, savoir installer des programmes, éditer des fichiers depuis la ligne de commande et enfin disposer d'un navigateur internet pour consulter les tableaux de bord.
    [Show full text]