<?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>Irregular Activity &#187; Linux</title>
	<atom:link href="http://www.irregularactivity.co.uk/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.irregularactivity.co.uk</link>
	<description>Digging up the web and technology since 2001....</description>
	<lastBuildDate>Fri, 21 May 2010 15:12:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>modprobe FATAL could not load /lib/modules/2.6.29.4/modules.dep &#8211; Fix!!</title>
		<link>http://www.irregularactivity.co.uk/2009/07/27/modprobe-fatal-could-not-load-libmodules2-6-29-4modules-dep-fix/</link>
		<comments>http://www.irregularactivity.co.uk/2009/07/27/modprobe-fatal-could-not-load-libmodules2-6-29-4modules-dep-fix/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 12:51:28 +0000</pubDate>
		<dc:creator>Darren Cornwell</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.irregularactivity.co.uk/?p=236</guid>
		<description><![CDATA[So I installed Backtrack 4 Pre on my shiny new Asus Eee PC 900 the other day and to be fair everything was going well. I used Unetbooting and a spare 8gb Flash Dirve and installed the Distro onto sdb (The secondary 16Gb Flash Drive). No problems apart from the aforementioned error on boot. modprobe [...]]]></description>
			<content:encoded><![CDATA[<p>So I installed Backtrack 4 Pre on my shiny new Asus Eee PC 900 the other day and to be fair everything was going well. I used Unetbooting and a spare 8gb Flash Dirve and installed the Distro onto sdb (The secondary 16Gb Flash Drive). No problems apart from the aforementioned error on boot.</p>
<p><code>modprobe FATAL could not load /lib/modules/2.6.29.4/modules.dep</code></p>
<p>Some people have reported that packing and unpacking the module does the trick, so after a short stint at the prompt I was hoping this would be fixed:</p>
<p><code>cd /boot<br />
cp initrd.img-2.6.29.4 initrd-2.6.29.4.old (Just making a backup)<br />
depmod -a<br />
update-initramfs -k 2.6.29.4 -c<br />
cd /tmp<br />
gzip -dc /boot/initrd.img-2.6.29.4| cpio -id<br />
touch lib/modules/2.6.29.4/modules.dep<br />
find ./ | cpio -H newc -o &gt; /boot/initrd.img-2.6.29.4.new<br />
gzip /boot/initrd.img-2.6.29.4.new<br />
cd /boot<br />
mv initrd.img-2.6.29.4.new.gz initrd.img-2.6.29.4</code></p>
<p>Didn&#8217;t fix the problem unfortunately, but the I stumbled across a forum post over at Remote-Exploit and the following rather simple cammand fixed the whole shebang:</p>
<p><code>update-grub</code></p>
<p>And now it works like a treat! Original Post at the RE Forums <a href="http://forums.remote-exploit.org/backtrack-4-bugs-fixes/23688-modprobe-fatal.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irregularactivity.co.uk/2009/07/27/modprobe-fatal-could-not-load-libmodules2-6-29-4modules-dep-fix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Backtrack Linux &#8211; Setting up your internet (Wired Ethernet)</title>
		<link>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-setting-up-your-internet-wired-ethernet/</link>
		<comments>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-setting-up-your-internet-wired-ethernet/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 10:59:31 +0000</pubDate>
		<dc:creator>Darren Cornwell</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.irregularactivity.co.uk/?p=227</guid>
		<description><![CDATA[Many people struggle to set up their internet on Linux in general (especially if you only have the command line to help you, no GUI&#8217;s here folks). There are a few commands you will need to get your head around and I would suggest at least a working knowledge of networks and network topology, it [...]]]></description>
			<content:encoded><![CDATA[<p>Many people struggle to set up their internet on Linux in general (especially if you only have the command line to help you, no GUI&#8217;s here folks). There are a few commands you will need to get your head around and I would suggest at least a working knowledge of networks and network topology, it is completely beyond the scope of this article to explain networking and networks. For this example we will use a very simple network, the commands you will need are the following:</p>
<p><code>ifconfig<br />
iwconfig<br />
dhclient</code></p>
<p>Lets assume that your running in a DHCP network to make our lives even easier (this also applys if your running Linux in something like VMWare), so, tap in:</p>
<p><code>ifconfig</code></p>
<p>&#8216;ifconfig&#8217; is the Interface configuration program, it will list all available interfaces on your hardware, in my case it shows <code>lo</code> (local loopback) &amp; <code>eth0</code> (ethernet), we are of course after eth0. So we now issue:</p>
<p><code>dhclient eth0</code></p>
<p>We are telling linux to attempt to automagically attach itself to the network and search for a DHCP server and assign itself an IP address &#8211; if this command will not run (has an error), chances are that you are not logged in as a root user, so issue:</p>
<p><code>sudo dhclient eth0</code></p>
<p>And enter your credentials when prompted, assuming you are in a small simple network, boot your browser of choice and away you go. Next up connecting Wirelesly ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-setting-up-your-internet-wired-ethernet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backtrack Linux &#8211; Changing the root password</title>
		<link>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-changing-the-root-password/</link>
		<comments>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-changing-the-root-password/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 10:47:37 +0000</pubDate>
		<dc:creator>Darren Cornwell</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.irregularactivity.co.uk/?p=222</guid>
		<description><![CDATA[The first thing to remember about a fresh install of Backtrack are the default installed credentials for the root account: root toor Nice and simple &#8211; right? But sometimes (often in my case) you&#8217;ll want to change the root password (especially as you&#8217;ll be spending so much time as a root user). You do remember [...]]]></description>
			<content:encoded><![CDATA[<p>The first thing to remember about a fresh install of Backtrack are the default installed credentials for the root account:</p>
<p><code>root<br />
toor</code></p>
<p>Nice and simple &#8211; right? But sometimes (often in my case) you&#8217;ll want to change the root password (especially as you&#8217;ll be spending so much time as a root user). You do remember the username and password you used when you installed backtrack right? So, open up a terminal and type the following:</p>
<p><code>sudo su<br />
whoami<br />
passwd</code></p>
<p>&#8216;sudo su&#8217; will change you into the Super User account, your system will ask you for your password (current password of the account you are using). &#8216;whoami&#8217; will tell you the account you are using &#8211; should be &#8216;root&#8217;. Last but not least &#8216;passwd&#8217; will let you change the root password, enter it twice and away you go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.irregularactivity.co.uk/2009/07/16/backtrack-linux-changing-the-root-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
