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

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

    
    <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>Liste des paquets installés classés par taille</title>
        <link>http://www.posteet.com/view/805</link>
        <description>
        <![CDATA[<pre>dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n</pre> <a href="http://www.posteet.com/tags/administration">[administration]</a>  <a href="http://www.posteet.com/tags/bash">[bash]</a>  <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a> ]]>        </description>
        <dc:creator>bobuse</dc:creator>
        <pubDate>Sat, 01 Mar 2008 12:18:20 +0000</pubDate>

            <category>administration</category>
            <category>bash</category>
            <category>debian</category>
            <category>linux</category>
    
    </item>

  
    <item>
        <title>Installation de paquets debian plus récents à partir d'un dépôt backports</title>
        <link>http://www.posteet.com/view/690</link>
        <description>
        <![CDATA[<pre>echo &quot;deb http://www.backports.org/debian etch-backpoprts main contrib non-free&quot; &gt;&gt; /etc/apt/source.list   # Le mirroir
aptitude update
aptitude install debian-backports-keyring   # Clé publique du dépôt
aptitude update

# Remplacer postgresql par le package que vous souhaitez
echo &quot;Package: postgresql
Pin: release a=etch-backports
Pin-Priority: 999&quot; &gt;&gt; /etc/apt/preferences

aptitude install postgresql</pre> <a href="http://www.posteet.com/tags/aptitude">[aptitude]</a>  <a href="http://www.posteet.com/tags/backports">[backports]</a>  <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Thu, 24 Jan 2008 10:04:07 +0000</pubDate>

            <category>aptitude</category>
            <category>backports</category>
            <category>debian</category>
            <category>linux</category>
    
    </item>

  
    <item>
        <title>Rename interfaces (eth0 to eth1) on Linux</title>
        <link>http://www.posteet.com/view/682</link>
        <description>
        <![CDATA[<pre># Debian : edit the following file (mac to eth association)
/etc/udev/rules.d/z25_persistent-net.rules

# The long way : change the name when loading the module for the NIC
cat /etc/sysconfig/hwconf | grep -A 16 NETWORK
class: NETWORK
bus: PCI
detached: 0
device: eth0
driver: 8139t
# Then change the device name in the ifcfg script: /etc/sysconfig/network-scripts/ifcfg-ethX</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/eth">[eth]</a>  <a href="http://www.posteet.com/tags/hwconf">[hwconf]</a>  <a href="http://www.posteet.com/tags/ifcfg">[ifcfg]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/network">[network]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Tue, 22 Jan 2008 08:22:23 +0000</pubDate>

            <category>debian</category>
            <category>eth</category>
            <category>hwconf</category>
            <category>ifcfg</category>
            <category>linux</category>
            <category>network</category>
    
    </item>

  
    <item>
        <title>Package contenant les utilitaires tels que killall</title>
        <link>http://www.posteet.com/view/661</link>
        <description>
        <![CDATA[<pre>apt-get install psmisc</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/killall">[killall]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/psmisc">[psmisc]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Wed, 09 Jan 2008 13:36:07 +0000</pubDate>

            <category>debian</category>
            <category>killall</category>
            <category>linux</category>
            <category>psmisc</category>
    
    </item>

  
    <item>
        <title>Installer les headers de son kernel sous debian</title>
        <link>http://www.posteet.com/view/660</link>
        <description>
        <![CDATA[<pre>apt-get install linux-headers-`uname -r`</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/headers">[headers]</a>  <a href="http://www.posteet.com/tags/kernel">[kernel]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/uname">[uname]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Wed, 09 Jan 2008 13:35:22 +0000</pubDate>

            <category>debian</category>
            <category>headers</category>
            <category>kernel</category>
            <category>linux</category>
            <category>uname</category>
    
    </item>

  
    <item>
        <title>install nvidia graphic card for Debian</title>
        <link>http://www.posteet.com/view/612</link>
        <description>
        <![CDATA[<pre># stop gdm
/etc/init.d/gdm stop
# The Debian and only way to do this 
apt-get update &amp;&amp; apt-get install nvidia-kernel-source module-assistant nvidia-settings nvidia-xconfig nvidia-glx
# to be sure
modprobe nvidia
# reconfigure automatically your graphic card
dpkg-reconfigure xserver-xorg
# restart gdm
/etc/init.d/gdm start</pre> <a href="http://www.posteet.com/tags/Debian">[Debian]</a>  <a href="http://www.posteet.com/tags/gdm">[gdm]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/module-assistant">[module-assistant]</a>  <a href="http://www.posteet.com/tags/nvidia">[nvidia]</a> ]]>        </description>
        <dc:creator>seij</dc:creator>
        <pubDate>Fri, 21 Dec 2007 13:03:42 +0000</pubDate>

            <category>Debian</category>
            <category>gdm</category>
            <category>Linux</category>
            <category>module-assistant</category>
            <category>nvidia</category>
    
    </item>

  
    <item>
        <title>Retrouver le nom d'un paquet debian à partir d'un nom de fichier</title>
        <link>http://www.posteet.com/view/356</link>
        <description>
        <![CDATA[<pre>apt-file update

#`apt-file` pour retrouver le nom d'un paquet contenant un fichier connu
apt-file search &lt;nomdufichier&gt;.

# Lister le contenu d'un paquet
apt-file list &lt;nomdupaquet&gt;</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/package">[package]</a>  <a href="http://www.posteet.com/tags/paquet">[paquet]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Sat, 10 Nov 2007 19:34:31 +0000</pubDate>

            <category>apt</category>
            <category>apt-file</category>
            <category>debian</category>
            <category>linux</category>
            <category>package</category>
            <category>paquet</category>
    
    </item>

  
    <item>
        <title>Comment savoir à quel paquet appartient un fichier ?</title>
        <link>http://www.posteet.com/view/333</link>
        <description>
        <![CDATA[<pre>Si vous voulez installer un paquet et que vous ne parvenez pas à
     découvrir quel est son nom en cherchant avec `apt-cache', mais que
     vous connaissez le nom du programme lui-même, ou quelque autre fichier
     appartenant à ce paquet, vous pouvez alors utiliser `apt-file' pour
     retrouver le nom de ce paquet.  Ceci est fait comme suit :

          $ apt-file search &lt;nomdufichier&gt;

     Il fonctionne comme `dpkg -S', mais il vous affichera aussi les
     paquets non installés qui contiennent ce fichier.  Il peut aussi être
     utilisé pour trouver quel paquet contient les fichiers d'en-tête
     manquant à la compilation d'un programme, bien que `auto-apt' soit une
     meilleure solution pour résoudre ce problème, voir Section 5.3,
     `Comment installer des paquets « à la demande » ?'.

     Vous pouvez lister le contenu d'un paquet en exécutant :

          $ apt-file list &lt;nomdupaquet&gt;

     `apt-file' récupère une base de données des fichiers contenus dans
     tous les paquets, comme le fait `auto-apt' et elle doit être à jour.
     C'est fait en exécutant :

          # apt-file update

     Par défaut, `apt-file' et `auto-apt' utilisent la même base de
     données, voir Section 5.3, `Comment installer des paquets « à la
     demande » ?'.</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a> ]]>        </description>
        <dc:creator>advitam</dc:creator>
        <pubDate>Thu, 08 Nov 2007 08:47:58 +0000</pubDate>

            <category>debian</category>
            <category>linux</category>
    
    </item>

  
    <item>
        <title>Configure static routes in Debian or Red Hat Linux systems</title>
        <link>http://www.posteet.com/view/98</link>
        <description>
        <![CDATA[<pre># Use of ip command
ip route add 192.168.55.0/24 via 192.168.1.254 dev eth1
route add -net 192.168.55.0 netmask 255.255.255.0 gw 192.168.1.254 dev eth1

#----------------------------------------------
# Red Hat/Fedora Linux Static route file
#----------------------------------------------
cat /etc/sysconfig/network-scripts/route-eth0

GATEWAY0=192.168.1.254
NETMASK0=255.255.255.0
ADDRESS0=192.168.55.0

GATEWAY1=10.164.234.112
NETMASK1= 255.255.255.240
ADDRESS1=10.164.234.132

#------------------------------------
# Debian Linux static routes file
#------------------------------------
cat /etc/network/interface

auto eth0
iface eth0 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.254
up route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.2.1
down route del -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.2.1</pre> <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/fedora">[fedora]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/red hat">[red hat]</a>  <a href="http://www.posteet.com/tags/route">[route]</a>  <a href="http://www.posteet.com/tags/static">[static]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Fri, 19 Oct 2007 11:28:51 +0000</pubDate>

            <category>debian</category>
            <category>fedora</category>
            <category>linux</category>
            <category>red hat</category>
            <category>route</category>
            <category>static</category>
    
    </item>

  
    <item>
        <title>Régler le volume sonore de sa carte son au boot</title>
        <link>http://www.posteet.com/view/59</link>
        <description>
        <![CDATA[<pre>#utiliser le mixeur (sous debian paquet alsa-utils)
alsamixer
#on desactive l'option muet d'un périhperique via la touche &quot;M&quot;
#on règle le son au volume voulu

#Enfin pour enregistrer ce parametre pour les boot ulterieurs :
alsactl store</pre> <a href="http://www.posteet.com/tags/boot">[boot]</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/son">[son]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Mon, 08 Oct 2007 15:18:28 +0000</pubDate>

            <category>boot</category>
            <category>debian</category>
            <category>linux</category>
            <category>son</category>
    
    </item>


</channel>
</rss>
