<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Commentaires sur : Paramétrer le nettoyage automatique de /tmp</title> <atom:link href="http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/feed" rel="self" type="application/rss+xml" /><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html</link> <description>Upgrade your mind</description> <lastBuildDate>Sun, 27 May 2012 11:50:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Par : micbnd</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-134216</link> <dc:creator>micbnd</dc:creator> <pubDate>Thu, 18 Mar 2010 12:11:06 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-134216</guid> <description>Encore faut il rebouter, alors maintenant je me dis que mon tmp ne se vide jamais!!!</description> <content:encoded><![CDATA[<p>Encore faut il rebouter, alors maintenant je me dis que mon tmp ne se vide jamais!!!</p> ]]></content:encoded> </item> <item><title>Par : Jericho</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-134210</link> <dc:creator>Jericho</dc:creator> <pubDate>Thu, 18 Mar 2010 09:42:32 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-134210</guid> <description>Tres pratique comme astuce, merci! ;)</description> <content:encoded><![CDATA[<p>Tres pratique comme astuce, merci! <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_wink.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : NuDub</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133744</link> <dc:creator>NuDub</dc:creator> <pubDate>Fri, 12 Mar 2010 15:50:58 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133744</guid> <description>Je n&#039;ai pas encore eu a récupérer quelque choses dans mon /tmp, mais en tous cas c&#039;est toujours bon à savoir.</description> <content:encoded><![CDATA[<p>Je n&#8217;ai pas encore eu a récupérer quelque choses dans mon /tmp, mais en tous cas c&#8217;est toujours bon à savoir.</p> ]]></content:encoded> </item> <item><title>Par : glouglou</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133539</link> <dc:creator>glouglou</dc:creator> <pubDate>Thu, 11 Mar 2010 17:31:02 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133539</guid> <description>J&#039;utilise CCleaner sous windows, c&#039;est beaucoup plus simple :)</description> <content:encoded><![CDATA[<p>J&#8217;utilise CCleaner sous windows, c&#8217;est beaucoup plus simple <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : Taiqi</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133523</link> <dc:creator>Taiqi</dc:creator> <pubDate>Thu, 11 Mar 2010 16:33:37 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133523</guid> <description>Hey Korben
Voici en addendum un petit script qui nettoie tous les fichiers Internet temporaires de tous les profils utilisateurs sous windows. Il suffit de copier et créeer un fichier .bat (genre: clean internet temp.bat) et de l&#039;exécuter sous Windows.
------------------------------------------------------------------------------
REM @echo off
REM - This script searches through each home directory for temporary internet files and deletes them.
REM - The script also empties the temp folder
REM - THese lines set the starting directory for the script
set HDRIVE=c:
set HPATH=Documents and Settings
%HDRIVE%
cd \%HPATH%
REM - This line sets up the loop for the script
for /d %%i in (*) do call :ifthen %%i
goto end
REM - These lines check for the presence of the temporary internet file directories and call subroutines to deal with them.
:ifthen
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&quot; call :ContentDelete1 %1
if exist &quot;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&quot; call :ContentDelete2 %1
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\temp&quot; call :TempDelete %1
goto :EOF
REM - This subroutine removes all folders located in the user&#039;s &quot;Profile\Local Settings\Temporary Internet Files\Content.IE5&quot;
REM - directory (in their home directory). It then returns back to the line that it was called from.
:ContentDelete1
cd &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&quot; for /d %%n in (*) do rd /s /q &quot;%%n&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&quot; del /q &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5\*&quot;
goto :EOF
REM - This subroutine removes all folders located in the user&#039;s &quot;windows\Temporary Internet Files\Content.IE5&quot; directory located
REM - in their home directory. It then removes all subfolders from this directory.
:ContentDelete2
cd &quot;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&quot; for /d %%n in (*) do rd /s /q &quot;%%n&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&quot; del /q &quot;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5\*&quot;
goto :EOF
REM - This subroutine removes all folders located in the user&#039;s &quot;windows\Temporary Internet Files\Content.IE5&quot; directory located
REM - in their home directory. It then removes all subfolders from this directory.
:TempDelete
cd &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&quot; for /d %%n in (*) do rd /s /q &quot;%%n&quot;
if exist &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&quot; del /q &quot;%HDRIVE%\%HPATH%\%1\Local Settings\Temp\*&quot;
goto :EOF
:end
---------------------------------------------------------------------------
J&#039;espère que ce sera aussi utiles à tes lecteurs qu&#039;à moi
ciao !</description> <content:encoded><![CDATA[<p>Hey Korben</p><p>Voici en addendum un petit script qui nettoie tous les fichiers Internet temporaires de tous les profils utilisateurs sous windows. Il suffit de copier et créeer un fichier .bat (genre: clean internet temp.bat) et de l&#8217;exécuter sous Windows.</p><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br
/> REM @echo off<br
/> REM &#8211; This script searches through each home directory for temporary internet files and deletes them.<br
/> REM &#8211; The script also empties the temp folder<br
/> REM &#8211; THese lines set the starting directory for the script</p><p>set HDRIVE=c:<br
/> set HPATH=Documents and Settings</p><p>%HDRIVE%<br
/> cd \%HPATH%</p><p>REM &#8211; This line sets up the loop for the script<br
/> for /d %%i in (*) do call :ifthen %%i</p><p>goto end</p><p>REM &#8211; These lines check for the presence of the temporary internet file directories and call subroutines to deal with them.<br
/> :ifthen</p><p> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&#8243; call :ContentDelete1 %1<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&#8243; call :ContentDelete2 %1<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\temp&nbsp;&raquo; call :TempDelete %1<br
/> goto :EOF</p><p>REM &#8211; This subroutine removes all folders located in the user&#8217;s &laquo;&nbsp;Profile\Local Settings\Temporary Internet Files\Content.IE5&#8243;<br
/> REM &#8211; directory (in their home directory). It then returns back to the line that it was called from.<br
/> :ContentDelete1</p><p> cd &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&#8243;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&#8243; for /d %%n in (*) do rd /s /q &laquo;&nbsp;%%n&nbsp;&raquo;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5&#8243; del /q &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temporary Internet Files\Content.IE5\*&nbsp;&raquo;<br
/> goto :EOF</p><p>REM &#8211; This subroutine removes all folders located in the user&#8217;s &laquo;&nbsp;windows\Temporary Internet Files\Content.IE5&#8243; directory located<br
/> REM &#8211; in their home directory. It then removes all subfolders from this directory.<br
/> :ContentDelete2<br
/> cd &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&#8243;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&#8243; for /d %%n in (*) do rd /s /q &laquo;&nbsp;%%n&nbsp;&raquo;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5&#8243; del /q &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\windows\Temporary Internet Files\Content.IE5\*&nbsp;&raquo;</p><p>goto :EOF</p><p>REM &#8211; This subroutine removes all folders located in the user&#8217;s &laquo;&nbsp;windows\Temporary Internet Files\Content.IE5&#8243; directory located<br
/> REM &#8211; in their home directory. It then removes all subfolders from this directory.<br
/> :TempDelete<br
/> cd &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&nbsp;&raquo;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&nbsp;&raquo; for /d %%n in (*) do rd /s /q &laquo;&nbsp;%%n&nbsp;&raquo;<br
/> if exist &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temp&nbsp;&raquo; del /q &laquo;&nbsp;%HDRIVE%\%HPATH%\%1\Local Settings\Temp\*&nbsp;&raquo;</p><p>goto :EOF</p><p>:end<br
/> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p><p>J&#8217;espère que ce sera aussi utiles à tes lecteurs qu&#8217;à moi</p><p>ciao !</p> ]]></content:encoded> </item> <item><title>Par : Gourmet</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133488</link> <dc:creator>Gourmet</dc:creator> <pubDate>Thu, 11 Mar 2010 15:17:28 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133488</guid> <description>Ouais, enfin, ça doit être comme ça sous debian ou sous RH. Mais sous les autres distribs et peut-être les BSD (faudrait que je vérifie), le tmp, on se l&#039;efface à la main (ou on ajoute un rm dans un des fichiers de démarrage).
db</description> <content:encoded><![CDATA[<p>Ouais, enfin, ça doit être comme ça sous debian ou sous RH. Mais sous les autres distribs et peut-être les BSD (faudrait que je vérifie), le tmp, on se l&#8217;efface à la main (ou on ajoute un rm dans un des fichiers de démarrage).</p><p>db</p> ]]></content:encoded> </item> <item><title>Par : Fopaldir ! &#187; ParamÃ©trer le nettoyage automatique de /tmp</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133474</link> <dc:creator>Fopaldir ! &#187; ParamÃ©trer le nettoyage automatique de /tmp</dc:creator> <pubDate>Thu, 11 Mar 2010 14:44:25 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133474</guid> <description>[...] ParamÃ©trer le nettoyage automatique de /tmp [...]</description> <content:encoded><![CDATA[<p>[...] ParamÃ©trer le nettoyage automatique de /tmp [...]</p> ]]></content:encoded> </item> <item><title>Par : logive</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133450</link> <dc:creator>logive</dc:creator> <pubDate>Thu, 11 Mar 2010 13:30:14 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133450</guid> <description>Bien vu!
Mais pour les débutant moi j&#039;aurai corrigé avec &quot;gksu gedit&quot;, c&#039;est con mais ça peut faire peur au debutant de passer par nano...</description> <content:encoded><![CDATA[<p>Bien vu!<br
/> Mais pour les débutant moi j&#8217;aurai corrigé avec &laquo;&nbsp;gksu gedit&nbsp;&raquo;, c&#8217;est con mais ça peut faire peur au debutant de passer par nano&#8230;</p> ]]></content:encoded> </item> <item><title>Par : nts</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133444</link> <dc:creator>nts</dc:creator> <pubDate>Thu, 11 Mar 2010 13:21:59 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133444</guid> <description>Intéressant cette petite chose!
Je teste ça ce soir.</description> <content:encoded><![CDATA[<p>Intéressant cette petite chose!</p><p>Je teste ça ce soir.</p> ]]></content:encoded> </item> <item><title>Par : denis</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133442</link> <dc:creator>denis</dc:creator> <pubDate>Thu, 11 Mar 2010 13:15:49 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133442</guid> <description>@&lt;a href=&quot;#comment-133398&quot; rel=&quot;nofollow&quot;&gt;JB&lt;/a&gt;:
sans compter les distrib où le tmp se trouve en ramfs.</description> <content:encoded><![CDATA[<p>@<a
href="#comment-133398" rel="nofollow">JB</a>:</p><p>sans compter les distrib où le tmp se trouve en ramfs.</p> ]]></content:encoded> </item> <item><title>Par : Tea-bo</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133436</link> <dc:creator>Tea-bo</dc:creator> <pubDate>Thu, 11 Mar 2010 13:02:58 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133436</guid> <description>C&#039;est marrant, je n&#039;ai jamais eu besoin de toucher à ça, et jamais de soucis.
Un exemple d&#039;application qui stockerai dans /tmp des choses importantes ?</description> <content:encoded><![CDATA[<p>C&#8217;est marrant, je n&#8217;ai jamais eu besoin de toucher à ça, et jamais de soucis.<br
/> Un exemple d&#8217;application qui stockerai dans /tmp des choses importantes ?</p> ]]></content:encoded> </item> <item><title>Par : mart</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133424</link> <dc:creator>mart</dc:creator> <pubDate>Thu, 11 Mar 2010 12:06:21 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133424</guid> <description>@&lt;a href=&quot;#comment-133392&quot; rel=&quot;nofollow&quot;&gt;JeeK&lt;/a&gt;: non non ça n&#039;arrive jamais ça :p</description> <content:encoded><![CDATA[<p>@<a
href="#comment-133392" rel="nofollow">JeeK</a>: non non ça n&#8217;arrive jamais ça :p</p> ]]></content:encoded> </item> <item><title>Par : Gana</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133423</link> <dc:creator>Gana</dc:creator> <pubDate>Thu, 11 Mar 2010 12:00:32 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133423</guid> <description>@&lt;a href=&quot;#comment-133391&quot; rel=&quot;nofollow&quot;&gt;Caz’&lt;/a&gt;: un reboot à l&#039;insu de ton plein gré</description> <content:encoded><![CDATA[<p>@<a
href="#comment-133391" rel="nofollow">Caz’</a>: un reboot à l&#8217;insu de ton plein gré</p> ]]></content:encoded> </item> <item><title>Par : ExploZe</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133419</link> <dc:creator>ExploZe</dc:creator> <pubDate>Thu, 11 Mar 2010 11:43:36 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133419</guid> <description>@&lt;a href=&quot;#comment-133413&quot; rel=&quot;nofollow&quot;&gt;Cyril&lt;/a&gt;:
Un onduleur ou un portable :D
ahahah !</description> <content:encoded><![CDATA[<p>@<a
href="#comment-133413" rel="nofollow">Cyril</a>:</p><p>Un onduleur ou un portable <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_biggrin.gif" alt="" /></p><p>ahahah !</p> ]]></content:encoded> </item> <item><title>Par : Cyril</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133413</link> <dc:creator>Cyril</dc:creator> <pubDate>Thu, 11 Mar 2010 11:30:18 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133413</guid> <description>@Caz&#039;
Une coupure d&#039;électricité ? Ça m&#039;est arrivé hier soir, et ça doit arriver assez régulièrement.</description> <content:encoded><![CDATA[<p>@Caz&#8217;</p><p>Une coupure d&#8217;électricité ? Ça m&#8217;est arrivé hier soir, et ça doit arriver assez régulièrement.</p> ]]></content:encoded> </item> <item><title>Par : xbmacx</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133412</link> <dc:creator>xbmacx</dc:creator> <pubDate>Thu, 11 Mar 2010 11:28:57 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133412</guid> <description>Excellent !</description> <content:encoded><![CDATA[<p>Excellent !</p> ]]></content:encoded> </item> <item><title>Par : poulpito</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133410</link> <dc:creator>poulpito</dc:creator> <pubDate>Thu, 11 Mar 2010 11:28:41 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133410</guid> <description>elle est pas mal celle la roultabie :D
merci pour le tips korben :)</description> <content:encoded><![CDATA[<p>elle est pas mal celle la roultabie <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_biggrin.gif" alt="" /><br
/> merci pour le tips korben <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : Roultabie</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133409</link> <dc:creator>Roultabie</dc:creator> <pubDate>Thu, 11 Mar 2010 11:17:18 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133409</guid> <description>Ou, comme le but est de d&#039;augmenter le temps de suppression des données:
Donner du temps au /tmp
Bon je sors cette fois ci ;)</description> <content:encoded><![CDATA[<p>Ou, comme le but est de d&#8217;augmenter le temps de suppression des données:</p><p>Donner du temps au /tmp</p><p>Bon je sors cette fois ci <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_wink.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : Roultabie</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133407</link> <dc:creator>Roultabie</dc:creator> <pubDate>Thu, 11 Mar 2010 11:14:00 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133407</guid> <description>Un titre à cette news obscure?
Donner de la place au temp ;)</description> <content:encoded><![CDATA[<p>Un titre à cette news obscure?</p><p>Donner de la place au temp <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_wink.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : laurent</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133404</link> <dc:creator>laurent</dc:creator> <pubDate>Thu, 11 Mar 2010 10:55:59 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133404</guid> <description>@&lt;a href=&quot;#comment-133390&quot; rel=&quot;nofollow&quot;&gt;Katsoin&lt;/a&gt;:
D&#039;un autre côté le nom de la news parle de /tmp et non de c:\windows\trucarollonge\encore\un\dossier\temp
:)</description> <content:encoded><![CDATA[<p>@<a
href="#comment-133390" rel="nofollow">Katsoin</a>:<br
/> D&#8217;un autre côté le nom de la news parle de /tmp et non de c:\windows\trucarollonge\encore\un\dossier\temp</p><p><img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : SnaKemaN</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133403</link> <dc:creator>SnaKemaN</dc:creator> <pubDate>Thu, 11 Mar 2010 10:39:16 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133403</guid> <description>Oui Katsoin, tu peux même déplacer le fichier d&#039;échange &quot;pagefile.sys&quot; qui est l&#039;équivalent de la swap.
Le déplacer sur un autre disque (pas seulement partition) est tout bon pour les perfs :)</description> <content:encoded><![CDATA[<p>Oui Katsoin, tu peux même déplacer le fichier d&#8217;échange &laquo;&nbsp;pagefile.sys&nbsp;&raquo; qui est l&#8217;équivalent de la swap.<br
/> Le déplacer sur un autre disque (pas seulement partition) est tout bon pour les perfs <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : JB</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133398</link> <dc:creator>JB</dc:creator> <pubDate>Thu, 11 Mar 2010 10:32:30 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133398</guid> <description>Petite précision, ce n&#039;est pas &quot;sous linux&quot; mais &quot;sous certaines distrib&quot; :) Par exemple Redhat ne nettoie pas le /tmp au reboot par défaut. Debian/Ubuntu doivent le faire, et le reste je ne sais pas trop. Cela dit je garde l&#039;astuce sous le coude pour mes Debian-like, merci !</description> <content:encoded><![CDATA[<p>Petite précision, ce n&#8217;est pas &laquo;&nbsp;sous linux&nbsp;&raquo; mais &laquo;&nbsp;sous certaines distrib&nbsp;&raquo; <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /> Par exemple Redhat ne nettoie pas le /tmp au reboot par défaut. Debian/Ubuntu doivent le faire, et le reste je ne sais pas trop. Cela dit je garde l&#8217;astuce sous le coude pour mes Debian-like, merci !</p> ]]></content:encoded> </item> <item><title>Par : toto</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133393</link> <dc:creator>toto</dc:creator> <pubDate>Thu, 11 Mar 2010 10:18:54 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133393</guid> <description>&quot;(Et maintenant, le plus dur va être de trouver un titre à cette news obscure)&quot;
Ha ha ha rapport à  la news sur le SSL ?</description> <content:encoded><![CDATA[<p>&laquo;&nbsp;(Et maintenant, le plus dur va être de trouver un titre à cette news obscure)&nbsp;&raquo;</p><p>Ha ha ha rapport à  la news sur le SSL ?</p> ]]></content:encoded> </item> <item><title>Par : JeeK</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133392</link> <dc:creator>JeeK</dc:creator> <pubDate>Thu, 11 Mar 2010 10:15:17 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133392</guid> <description>Information intéressante ET utile... Merci Korben ! ;)
@&lt;a href=&quot;#comment-133391&quot; rel=&quot;nofollow&quot;&gt;Caz’&lt;/a&gt;: un reboot intempestif !? Simple... Ca plante et ça redémarre lorsque c&#039;est pas le &quot;meilleur moment&quot; (sorry, mais parfois aussi sous linusque : ça se ramasse) !
:mrgreen:</description> <content:encoded><![CDATA[<p>Information intéressante ET utile&#8230; Merci Korben ! <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_wink.gif" alt="" /></p><p>@<a
href="#comment-133391" rel="nofollow">Caz’</a>: un reboot intempestif !? Simple&#8230; Ca plante et ça redémarre lorsque c&#8217;est pas le &laquo;&nbsp;meilleur moment&nbsp;&raquo; (sorry, mais parfois aussi sous linusque : ça se ramasse) !<br
/> <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_mrgreen.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : Caz'</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133391</link> <dc:creator>Caz'</dc:creator> <pubDate>Thu, 11 Mar 2010 10:08:50 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133391</guid> <description>heuuuu, Korben, c&#039;est quoi un &quot;reboot intempestif&quot; ?</description> <content:encoded><![CDATA[<p>heuuuu, Korben, c&#8217;est quoi un &laquo;&nbsp;reboot intempestif&nbsp;&raquo; ?</p> ]]></content:encoded> </item> <item><title>Par : Katsoin</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133390</link> <dc:creator>Katsoin</dc:creator> <pubDate>Thu, 11 Mar 2010 10:04:10 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133390</guid> <description>C&#039;est bien beau ça Korben, mais pour les windowsiens, pas de tips ?
Par exemple, comment paramétrer l&#039;endroit où se posera le fichier temp plutôt que dans un répertoire perdu au fin fond d&#039;un sous sous répertoire de c: alors qu&#039;on a pleins de place libre sur d: ?
Poste de travail &gt; propriétés &gt; avancé &gt; variable d&#039;environnement &gt; là on crée/modifie les variables systèmes.
TEMP &gt; D:\TEMP
TMP &gt; D:\TEMP
TMPDIR &gt; D:\TEMP
Voilà, comme ça, on sait exactement où sont nos fichiers temporaires si on a besoin d&#039;aller les chercher.
Ensuite pour vider le fichier temp automatiquement au boot, un petit fichier Batch fera l&#039;affaire.
Il y a aussi les tâches planifiées windows pour cela, mais je ne m&#039;y fie pas trop ...</description> <content:encoded><![CDATA[<p>C&#8217;est bien beau ça Korben, mais pour les windowsiens, pas de tips ?<br
/> Par exemple, comment paramétrer l&#8217;endroit où se posera le fichier temp plutôt que dans un répertoire perdu au fin fond d&#8217;un sous sous répertoire de c: alors qu&#8217;on a pleins de place libre sur d: ?<br
/> Poste de travail &gt; propriétés &gt; avancé &gt; variable d&#8217;environnement &gt; là on crée/modifie les variables systèmes.<br
/> TEMP &gt; D:\TEMP<br
/> TMP &gt; D:\TEMP<br
/> TMPDIR &gt; D:\TEMP<br
/> Voilà, comme ça, on sait exactement où sont nos fichiers temporaires si on a besoin d&#8217;aller les chercher.<br
/> Ensuite pour vider le fichier temp automatiquement au boot, un petit fichier Batch fera l&#8217;affaire.<br
/> Il y a aussi les tâches planifiées windows pour cela, mais je ne m&#8217;y fie pas trop &#8230;</p> ]]></content:encoded> </item> <item><title>Par : laurent</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133389</link> <dc:creator>laurent</dc:creator> <pubDate>Thu, 11 Mar 2010 09:58:13 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133389</guid> <description>Oui... intuitivement j&#039;aurais fait un crontab avec un find pour chercher les fichiers un peu âgés.</description> <content:encoded><![CDATA[<p>Oui&#8230; intuitivement j&#8217;aurais fait un crontab avec un find pour chercher les fichiers un peu âgés.</p> ]]></content:encoded> </item> <item><title>Par : SnaKemaN</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133386</link> <dc:creator>SnaKemaN</dc:creator> <pubDate>Thu, 11 Mar 2010 09:42:53 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133386</guid> <description>Coool, je savais pas, en plus c&#039;est pratique ce truc, je teste dès ce soir !!</description> <content:encoded><![CDATA[<p>Coool, je savais pas, en plus c&#8217;est pratique ce truc, je teste dès ce soir !!</p> ]]></content:encoded> </item> <item><title>Par : Khrid</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133385</link> <dc:creator>Khrid</dc:creator> <pubDate>Thu, 11 Mar 2010 09:41:11 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133385</guid> <description>&quot;au biut d’un moment&quot;
Sinon c&#039;est vrai que ca peut être vachement pratique, merci :)</description> <content:encoded><![CDATA[<p>&laquo;&nbsp;au biut d’un moment&nbsp;&raquo;</p><p>Sinon c&#8217;est vrai que ca peut être vachement pratique, merci <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_smile.gif" alt="" /></p> ]]></content:encoded> </item> <item><title>Par : kusanageek</title><link>http://korben.info/parametrer-le-nettoyage-automatique-de-tmp.html/comment-page-1#comment-133382</link> <dc:creator>kusanageek</dc:creator> <pubDate>Thu, 11 Mar 2010 09:34:35 +0000</pubDate> <guid
isPermaLink="false">http://www.korben.info/?p=10438#comment-133382</guid> <description>Bon à savoir, comme quoi il n&#039;y a pas que crontab dans la vie :D</description> <content:encoded><![CDATA[<p>Bon à savoir, comme quoi il n&#8217;y a pas que crontab dans la vie <img
src="http://korben.info/wp-content/plugins/wp-smiley-switcher/yellowpack/icon_biggrin.gif" alt="" /></p> ]]></content:encoded> </item> </channel> </rss>
