<?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>
	Comments on: Mettre à jour Debian Lenny vers Squeeze [retour d&#8217;expérience]	</title>
	<atom:link href="https://blog.kodono.info/wordpress/2011/12/29/mettre-a-jour-debian-lenny-vers-squeeze-retour-dexperience/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.kodono.info/wordpress/2011/12/29/mettre-a-jour-debian-lenny-vers-squeeze-retour-dexperience/</link>
	<description>Pour tous les technophiles</description>
	<lastBuildDate>Mon, 07 May 2012 17:25:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>
		By: Spout		</title>
		<link>https://blog.kodono.info/wordpress/2011/12/29/mettre-a-jour-debian-lenny-vers-squeeze-retour-dexperience/comment-page-1/#comment-717</link>

		<dc:creator><![CDATA[Spout]]></dc:creator>
		<pubDate>Mon, 07 May 2012 17:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=827#comment-717</guid>

					<description><![CDATA[Merci pour le tuto ça m&#039;a bien aidé, j&#039;ai pu upgrader avec succès :)]]></description>
			<content:encoded><![CDATA[<p>Merci pour le tuto ça m&#8217;a bien aidé, j&#8217;ai pu upgrader avec succès 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aymeric		</title>
		<link>https://blog.kodono.info/wordpress/2011/12/29/mettre-a-jour-debian-lenny-vers-squeeze-retour-dexperience/comment-page-1/#comment-622</link>

		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Wed, 18 Jan 2012 06:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=827#comment-622</guid>

					<description><![CDATA[TBC (sur le &lt;a href=&quot;http://forum.ovh.com/showpost.php?p=470910&amp;postcount=12&quot; rel=&quot;nofollow&quot;&gt;ce forum&lt;/a&gt;) propose une version alternative pour le fixudev :
&lt;code&gt;
#! /bin/sh
### BEGIN INIT INFO
# Provides:		fixudev
# Required-Start:	networking 
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description:	remove fixed relation between MAC address and name of network device (00:15:f2:90:3e:a0 -&gt; eth0)
# Description:		remove fixed relation between MAC address and name of network device (00:15:f2:90:3e:a0 -&gt; eth0)
### END INIT INFO
 
case &quot;$1&quot; in
	start)
		for interface in `ifconfig -a &#124; grep -e &quot;^eth&quot;&#124;cut -d&#039; &#039; -f1`; do
			MAC=`ifconfig $interface &#124; grep -e &quot;^$interface&quot;&#124;cut -d&#039; &#039; -f11 &#124; sed s/\:/\\\\\\\\:/g`
			for file in `grep -re &quot;^SUBSYSTEM==\&quot;net\&quot;.*NAME=\&quot;${interface}\&quot;$&quot; /etc/udev/&#124;sort&#124;uniq&#124;cut -d&#039;:&#039; -f1`; do
				sed -i -e &quot;/^SUBSYSTEM==\&quot;net\&quot;.*NAME=\&quot;${interface}\&quot;$/d&quot; ${file} &amp;&amp; \
				echo &quot;removed HW address from ${file} (${interface})&quot;
			done
		done
		exit 0
		;;
	stop)
		;;
 
	status)
		echo &quot;Nothing here&quot;;
		;;
 
	restart&#124;reload)
		$0 start
		;;
	*)
		echo &quot;Usage: fixudev start&quot;
		exit 1
esac
exit 1
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>TBC (sur le <a href="http://forum.ovh.com/showpost.php?p=470910&#038;postcount=12" rel="nofollow">ce forum</a>) propose une version alternative pour le fixudev :<br />
<code><br />
#! /bin/sh<br />
### BEGIN INIT INFO<br />
# Provides:		fixudev<br />
# Required-Start:	networking<br />
# Required-Stop:<br />
# Default-Start: S<br />
# Default-Stop:<br />
# Short-Description:	remove fixed relation between MAC address and name of network device (00:15:f2:90:3e:a0 -> eth0)<br />
# Description:		remove fixed relation between MAC address and name of network device (00:15:f2:90:3e:a0 -> eth0)<br />
### END INIT INFO</p>
<p>case "$1" in<br />
	start)<br />
		for interface in `ifconfig -a | grep -e "^eth"|cut -d' ' -f1`; do<br />
			MAC=`ifconfig $interface | grep -e "^$interface"|cut -d' ' -f11 | sed s/\:/\\\\\\\\:/g`<br />
			for file in `grep -re "^SUBSYSTEM==\"net\".*NAME=\"${interface}\"$" /etc/udev/|sort|uniq|cut -d':' -f1`; do<br />
				sed -i -e "/^SUBSYSTEM==\"net\".*NAME=\"${interface}\"$/d" ${file} &#038;& \<br />
				echo "removed HW address from ${file} (${interface})"<br />
			done<br />
		done<br />
		exit 0<br />
		;;<br />
	stop)<br />
		;;</p>
<p>	status)<br />
		echo "Nothing here";<br />
		;;</p>
<p>	restart|reload)<br />
		$0 start<br />
		;;<br />
	*)<br />
		echo "Usage: fixudev start"<br />
		exit 1<br />
esac<br />
exit 1<br />
</code></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
