<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Libre Things &#187; Arch Linux</title>
	<atom:link href="http://positon.org/tag/arch-linux/feed" rel="self" type="application/rss+xml" />
	<link>http://positon.org</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2016 20:01:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>Lenovo Thinkpad BIOS Update with Linux and USB</title>
		<link>http://positon.org/lenovo-thinkpad-bios-update-with-linux-and-usb</link>
		<comments>http://positon.org/lenovo-thinkpad-bios-update-with-linux-and-usb#comments</comments>
		<pubDate>Thu, 29 May 2014 16:59:54 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[BIOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Thinkpad]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://positon.org/?p=190</guid>
		<description><![CDATA[Here are the steps I used to upgrade the BIOS of my Lenovo Thinkpad X1 Carbon Gen 2. You have to download the bootable ISO file from Lenovo support site, convert it and copy it to a usb flash drive. You will need a USB key you can erase. First Get the bootable ISO file [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Here are the steps I used to upgrade the BIOS of my Lenovo Thinkpad X1 Carbon Gen 2.<br />
You have to download the bootable ISO file from Lenovo support site, convert it and copy it to a usb flash drive.</p>
<p>You will need a USB key you can erase.</p>
<p>First Get the bootable ISO file from Lenovo support website. To get your product number:</p>
<pre>
sudo dmidecode -t system | grep Product
</pre>
<p>To check your BIOS version: <code>sudo dmidecode -t bios</code></p>
<p>Get the <strong>geteltorito</strong> program from your packages or download it:</p>
<pre>
cd /tmp/
wget http://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/geteltorito
chmod +x geteltorito
</pre>
<p>Extract the img from the ISO:</p>
<pre>
./geteltorito -o bios.img gruj09us.iso
</pre>
<p>Copy the img to the USB key (<strong>make sure sdb is you USB key!!</strong>):</p>
<pre>
sudo fdisk -l /dev/sdb #at least check that device size is right
sudo dd if=bios.img of=/dev/sdb
</pre>
<p>That&#8217;s it. Boot on USB stick and follow the instructions to update your BIOS.</p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/lenovo-thinkpad-bios-update-with-linux-and-usb/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Generate persistent udev net rules</title>
		<link>http://positon.org/generate-persistent-udev-net-rules</link>
		<comments>http://positon.org/generate-persistent-udev-net-rules#comments</comments>
		<pubDate>Sat, 09 Jan 2010 22:09:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=81</guid>
		<description><![CDATA[Under Arch Linux, your network cards are sometimes named differently between two reboot. Configuring your network connection is hard if you don&#8217;t know if you card will be called eth0 or eth1. A file /etc/udev/rules.d/75-persistent-net-generator.rules.optional can be used to tell udev to generate persistent network rules. It&#8217;s very simple: mv /etc/udev/rules.d/75-persistent-net-generator.rules.optional /etc/udev/rules.d/75-persistent-net-generator.rules Reboot your system. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Under <a href="http://www.archlinux.org/">Arch Linux</a>, your network cards are sometimes named differently between two reboot. Configuring your network connection is hard if you don&#8217;t know if you card will be called eth0 or eth1.</p>
<p>A file <code>/etc/udev/rules.d/75-persistent-net-generator.rules.optional</code> can be used to tell <a href="http://en.wikipedia.org/wiki/Udev">udev</a> to generate persistent network rules.</p>
<p>It&#8217;s very simple:</p>
<pre>
mv /etc/udev/rules.d/75-persistent-net-generator.rules.optional /etc/udev/rules.d/75-persistent-net-generator.rules
</pre>
<p>Reboot your system. A <code>/etc/udev/rules.d/70-persistent-net.rules</code> file has been generated. Now you can disable the generator:</p>
<pre>
mv /etc/udev/rules.d/75-persistent-net-generator.rules /etc/udev/rules.d/75-persistent-net-generator.rules.optional
</pre>
<p><ins>Link</ins>:</p>
<ul>
<li><a href="http://wiki.archlinux.org/index.php/Configuring_Network#Interface_names_varying" title="http://wiki.archlinux.org/index.php/Configuring_Network#Interface_names_varying">http://wiki.archlinux.org/index.php/Configuring_Network#Interface_names_varying</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/generate-persistent-udev-net-rules/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
