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

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

    
    <item>
        <title>Changer les permissions récursivement sur les dossiers uniquement</title>
        <link>http://www.posteet.com/view/812</link>
        <description>
        <![CDATA[<pre>#Pour changer les permissions récursivement sur les dossiers sans toucher aux autres fichiers :

chmod u-w $(ls -l -R | sed -n '/^d/p' | awk '{print $9 }')

#va enlever le droit d'écriture à tous les dossiers sans toucher aux autres fichiers
#utile par exemple pour appliquer le droit d'exécution seulement aux dossiers pour pouvoir les parcourir sans pour autant rendre les autres fichiers exécutables</pre> <a href="http://www.posteet.com/tags/bash">[bash]</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/unix">[unix]</a> ]]>        </description>
        <dc:creator>jon207</dc:creator>
        <pubDate>Thu, 06 Mar 2008 20:51:29 +0000</pubDate>

            <category>bash</category>
            <category>linux</category>
            <category>shell</category>
            <category>unix</category>
    
    </item>

  
    <item>
        <title>Conversion de fichier texte windows/unix</title>
        <link>http://www.posteet.com/view/578</link>
        <description>
        <![CDATA[<pre>#Convertir un fichier texte d'un format Windows/dos vers unix:

  tr -d '\015' &lt; win-format.txt &gt; unix-format.txt

#Convertir un fichier texte d'un format unix vers Windows/dos:

  sed -e 's/$/\r/' unix-format.txt &gt; win-format.txt</pre> <a href="http://www.posteet.com/tags/Bash">[Bash]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/Plain text">[Plain text]</a>  <a href="http://www.posteet.com/tags/unix">[unix]</a>  <a href="http://www.posteet.com/tags/windows">[windows]</a> ]]>        </description>
        <dc:creator>sylis</dc:creator>
        <pubDate>Wed, 12 Dec 2007 20:24:39 +0000</pubDate>

            <category>Bash</category>
            <category>linux</category>
            <category>Plain text</category>
            <category>unix</category>
            <category>windows</category>
    
    </item>

  
    <item>
        <title>Acccelerate CD/dvd player</title>
        <link>http://www.posteet.com/view/502</link>
        <description>
        <![CDATA[<pre>The cd or dvd reader was mounted on /dev/cdrom

    sudo hdparm -d1 /dev/cdrom
    sudo cp /etc/hdparm.conf /etc/hdparm.conf_backup
    sudo gedit /etc/hdparm.conf

Add in this file, the following lines :
/dev/cdrom {
    dma=on
}</pre> <a href="http://www.posteet.com/tags/acceleration">[acceleration]</a>  <a href="http://www.posteet.com/tags/cd">[cd]</a>  <a href="http://www.posteet.com/tags/dma">[dma]</a>  <a href="http://www.posteet.com/tags/dvd">[dvd]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/unix">[unix]</a> ]]>        </description>
        <dc:creator>grummfy</dc:creator>
        <pubDate>Thu, 22 Nov 2007 08:50:07 +0000</pubDate>

            <category>acceleration</category>
            <category>cd</category>
            <category>dma</category>
            <category>dvd</category>
            <category>linux</category>
            <category>unix</category>
    
    </item>


</channel>
</rss>
