<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: enoch</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Gestion de la mise en page des impressions en commande sous Linux (utile pour scripts)</title>
        <link>http://www.posteet.com/view/1154</link>
        <description>
        <![CDATA[<pre>Imprimer 2 pages en 1 (pages virtuelles), sans en-têtes et sans bordures :

  - a2ps -2 &lt;fichier&gt; --printer=&lt;nom_imprimante&gt; --borders=no -B

Pour faire du recto-verso :
       -s tumble     # recto-verso &quot;inversé&quot;
       -s 2             # recto-verso &quot;normal&quot;</pre> <a href="http://www.posteet.com/tags/a2ps">[a2ps]</a>  <a href="http://www.posteet.com/tags/cups">[cups]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/lp">[lp]</a>  <a href="http://www.posteet.com/tags/postscript">[postscript]</a>  <a href="http://www.posteet.com/tags/RHEL5">[RHEL5]</a> ]]>        </description>
        <dc:creator>enoch</dc:creator>
        <pubDate>Mon, 28 Jul 2008 14:02:16 +0000</pubDate>

            <category>a2ps</category>
            <category>cups</category>
            <category>linux</category>
            <category>lp</category>
            <category>postscript</category>
            <category>RHEL5</category>
    
    </item>

  
    <item>
        <title>Equivalent de la fonction &quot;whatprovide&quot; de yum pour apt</title>
        <link>http://www.posteet.com/view/961</link>
        <description>
        <![CDATA[<pre>Re: apt-? how do I get the feature whatprovides?
The functionality you were looking for is supplied by apt-file. To install:

sudo apt-get install apt-file

To use:

sudo apt-file update

sudo apt-file search &lt;filename&gt;

Enjoy,

Tim.
milstead is offline   	Reply With Quote</pre> <a href="http://www.posteet.com/tags/apt">[apt]</a>  <a href="http://www.posteet.com/tags/apt-file">[apt-file]</a>  <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/ubuntu">[ubuntu]</a> ]]>        </description>
        <dc:creator>enoch</dc:creator>
        <pubDate>Sun, 18 May 2008 05:56:07 +0000</pubDate>

            <category>apt</category>
            <category>apt-file</category>
            <category>debian</category>
            <category>linux</category>
            <category>ubuntu</category>
    
    </item>

  
    <item>
        <title>Configurer sa MX1000 sous Linux</title>
        <link>http://www.posteet.com/view/663</link>
        <description>
        <![CDATA[<pre>La MX1000 est une très bonne souris, bien reconnue sous Linux mais après quelques réglages tout de même!! 
Cette astuce est valable pour toutes les distributions Linux à partir du moment où vous utilisez Xorg.

Tout d'abord rendez-vous dans le /etc/X11/xorg.conf. Trouvez la catégorie :

Section &quot;InputDevice&quot;
                Identifier &quot;Configured Mouse&quot;
                Driver &quot;mouse&quot;


Il faut remplacer la section en gardant la ligne Identifier, Driver et les balises de début et de fin de section par :

Option &quot;ButtonNumber&quot; &quot;12&quot;
Option &quot;Buttons&quot; &quot;12&quot;
Option &quot;Device&quot; &quot;/dev/input/mice&quot;
Option &quot;Protocol&quot; &quot;ExplorerPS/2&quot;
Option &quot;Vendor&quot; &quot;Sysp&quot;
Option &quot;Resolution&quot; &quot;800&quot;
Option &quot;ZAxisMapping&quot; &quot;11 12&quot;


Enregistrez les modifications apportées. 
Vous pouvez déjà voir si cela va marcher, relancez votre serveur X par un ctrl + alt + backspace. 
En console lancez la commande suivante :

xmodmap -e &quot;pointer = 1 2 3 6 7 8 9 10 11 12 4 5&quot;

Les boutons ainsi que la souris devraient fonctionner. Si c'est le cas, nous allons automatiser la configuration.
Créez un nouveau fichier texte .xmodmap dans /home/votre_utilisateur (attention le &quot;.&quot; avant le xmodmap est très important). 
Editez le fichier vide et ajoutez y :

! Set up the MX1000 mouse buttons
pointer = 1 2 3 6 7 8 9 10 11 12 4 5

Cette action devrait permettre à la configuration de la souris de se lancer à chaque ouverture de session.
Voilà votre MX1000 est désormais complètement fonctionnelle sous Linux, enjoy ^^</pre> <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/souris">[souris]</a>  <a href="http://www.posteet.com/tags/xorg">[xorg]</a> ]]>        </description>
        <dc:creator>enoch</dc:creator>
        <pubDate>Thu, 10 Jan 2008 06:18:50 +0000</pubDate>

            <category>linux</category>
            <category>souris</category>
            <category>xorg</category>
    
    </item>

  
    <item>
        <title>Vérifier performance des disques</title>
        <link>http://www.posteet.com/view/236</link>
        <description>
        <![CDATA[<pre>hdparm -Tt /dev/hda
/dev/sda:
 Timing cached reads:   4868 MB in  2.00 seconds = 2433.34 MB/sec
 Timing buffered disk reads:  218 MB in  3.01 seconds =  72.50 MB/sec</pre> <a href="http://www.posteet.com/tags/disque">[disque]</a>  <a href="http://www.posteet.com/tags/disque dur">[disque dur]</a>  <a href="http://www.posteet.com/tags/disques">[disques]</a>  <a href="http://www.posteet.com/tags/disques durs">[disques durs]</a>  <a href="http://www.posteet.com/tags/hdparm">[hdparm]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a>  <a href="http://www.posteet.com/tags/système">[système]</a>  <a href="http://www.posteet.com/tags/vitesse disque">[vitesse disque]</a> ]]>        </description>
        <dc:creator>enoch</dc:creator>
        <pubDate>Tue, 06 Nov 2007 05:15:48 +0000</pubDate>

            <category>disque</category>
            <category>disque dur</category>
            <category>disques</category>
            <category>disques durs</category>
            <category>hdparm</category>
            <category>linux</category>
            <category>shell</category>
            <category>système</category>
            <category>vitesse disque</category>
    
    </item>


</channel>
</rss>
