<?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>Lyle Backenroth &#187; Ubuntu</title>
	<atom:link href="http://www.lylebackenroth.com/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lylebackenroth.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 01:07:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Easily find your hardware specifications (and some system monitoring commands) in Linux</title>
		<link>http://www.lylebackenroth.com/blog/2010/04/16/easily-find-your-hardware-specifications-and-some-system-monitoring-commands-in-linux/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=easily-find-your-hardware-specifications-and-some-system-monitoring-commands-in-linux</link>
		<comments>http://www.lylebackenroth.com/blog/2010/04/16/easily-find-your-hardware-specifications-and-some-system-monitoring-commands-in-linux/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 12:43:30 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=582</guid>
		<description><![CDATA[When a PC or server is running Linux, you often want to know exactly what sort of hardware is actually running inside the box and more importantly whether it is supported by the kernel. Here is a list of commands which should help you to learn about your system and some of its specifications. In [...]]]></description>
			<content:encoded><![CDATA[<p>When a PC or server is running Linux, you often want to know exactly what sort of hardware is actually running inside the box and more importantly whether it is supported by the kernel. Here is a list of commands which should help you to learn about your system and some of its specifications. In some cases, these commands may not work as listed below if you&#8217;re running a Red Hat or Fedora based distribution. In those instances simply specify the path to the command which will be <strong>/sbin/command</strong>.</p>
<p>If any of the output runs off your screen, just add <strong>|more</strong> to the end of any of these commands to see the output one screen at a time and hit the <strong>spacebar</strong> to go to the next screen, or <strong>Q</strong> to quit.</p>
<p>Processor type:<br />
<strong><span style="color: #008000;"> $ cat /proc/cpuinfo</span></strong></p>
<p>Is the processor using 32 or 64 bit instruction set:<br />
<strong><span style="color: #008000;"> $ cat /proc/cpuinfo | grep flags | grep lm</span></strong><br />
If you get some output you have a 64 bit CPU. If you receive no output, then you&#8217;re using a 32 or even 16 bit CPU. The reason this is the case is that the CPU yields many flags that tell Linux what sort of processor it is, and the <strong>lm</strong> flag informs Linux that the CPU is a 64 bit processor. <strong>Grep</strong> as a command filters output. Feel free to run this command without the grep suffixes (cat <strong>/proc/cpuinfo</strong>) to see the full output of your CPU details.</p>
<p>What hardware (audio, video, disk controllers, etc) is in my Linux box:<br />
<strong><span style="color: #008000;"> $ lspci -tv</span></strong><br />
(The <strong>-t</strong> switch groups similar devices together for easy reading and <strong>-v</strong> offers more verbosity.)</p>
<p>To easily filter out the above command to just show graphic card information:<br />
<span style="color: #008000;"><strong> $ lspci | grep VGA</strong></span></p>
<p>What USB devices are plugged in:<br />
<strong><span style="color: #008000;"> $ lsusb</span></strong></p>
<p>Check the size of the hard drive and what hard drives are available in the system.<br />
This command will also list USB drives and sticks. <strong>You need a root permissions to execute the fdisk command</strong>:<br />
<strong><span style="color: #008000;"> $ sudo fdisk -l | grep GB</span></strong></p>
<p>Show info about a particular hard disk including firmware revision (replace sda with the appropriate drive as listed from the above command):<br />
Note: This will only work on internal disks, NOT USB drives.<br />
<strong><span style="color: #008000;"> $ sudo hdparm -i /dev/sda</span></strong></p>
<p>Check what partitions and file system is in use on my hard drives (same as the above command, but essentially more verbose):<br />
<strong><span style="color: #008000;"> $ sudo fdisk -l</span></strong></p>
<p>Locate CD/DVD-ROM device file which offers a CD/DVD-ROM&#8217;s make and model info:<br />
<strong><span style="color: #008000;"> $ wodim &#8211;devices</span></strong><br />
or<br />
<strong><span style="color: #008000;"> $ wodim &#8211;scanbus</span></strong><br />
The above command will scan your entire system bus for attached devices (this won&#8217;t include USB Devices as they are not direct-bus-attached devices).</p>
<p>What modules are currently loaded:<br />
<strong><span style="color: #008000;"> $ lsmod</span></strong></p>
<p>get a information about any particular module:<br />
<strong><span style="color: #008000;"> $ modinfo module_name</span></strong></p>
<p>remove modules:<br />
<strong><span style="color: #008000;"> $ modprobe &#8211;remove module_name</span></strong></p>
<p>load a modules to the kernel:<br />
<strong><span style="color: #008000;"> $ modprobe module_name</span></strong></p>
<p>What hardware is using which module.<br />
The <strong>-v</strong> switch is for vebosity, where <strong>-vvv</strong> is EXTRA verbosity.<br />
<strong><span style="color: #008000;"> $ lspci -v</span></strong><br />
or<br />
<strong><span style="color: #008000;"> $ lspci -vvv</span></strong></p>
<p>Check for PCMCIA cards:<br />
<strong><span style="color: #008000;"> $ lspcmcia</span></strong></p>
<p>How much RAM is installed in my Linux and how much of it is in use (megabytes).<br />
It will also include swap memory:<br />
<strong><span style="color: #008000;"> $ free -m</span></strong><br />
There is a gigabyte switch, but it *rounds* it down, so it isn&#8217;t very accurate for RAM info:<br />
<strong><span style="color: #008000;"> $ free -g</span></strong></p>
<p>Check sound card settings. This command will reveal whether your sound card is installed and what modules are in use:<br />
<strong><span style="color: #008000;"> $ cat /dev/sndstat</span></strong></p>
<p>Available wireless cards:<br />
<strong><span style="color: #008000;"> $ iwconfig</span></strong></p>
<p>What speed is set to FANs:<br />
<strong><span style="color: #008000;"> $  cat /proc/acpi/ibm/fan</span></strong><br />
If this command doesn&#8217;t work, then feel free to peruse the /proc/acpi directory on your system. You will find info available on your CPU, AC Adapter, Battery, etc. Some info is available here, and your mileage may vary for viewing any of the files in /proc/acpi.</p>
<p>Get a battery information on your laptop (assuming it&#8217;s been installed):<br />
<strong><span style="color: #008000;"> $ powersave -b</span></strong></p>
<p>To find out what Linux Kernel you&#8217;r running:<br />
<strong><span style="color: #008000;"> $ uname -a</span></strong></p>
<p>To find out what distribution of Linux you&#8217;re running:<br />
Run any of these commands, as depending on your distribution some may or may not work.<br />
<strong><span style="color: #008000;"> $ cat /etc/issue<br />
$ cat /proc/version<br />
$ dmesg | head -1</span></strong></p>
<p>Get a recent history of system reboots:<br />
<strong><span style="color: #008000;"> $ last reboot</span></strong></p>
<p>To open any file from command line using the default application (will launch the correct graphical application for the file, as though you had doubled-clicked the file graphically):<br />
<strong><span style="color: #008000;"> $ xdg-open ./filename</span></strong></p>
<p>To monitor all <strong>active</strong> network connections, and <strong>update live every second</strong>:<br />
<strong><span style="color: #008000;"> $ watch -n.1 &#8216;netstat -tup&#8217;</span></strong></p>
<p>To passively list all connections, active or inactive:<br />
<strong><span style="color: #008000;"> $ &#8216;netstat -tupl</span></strong></p>
<div><span style="color: #ffcc00;"><strong><span style="color: #ff9900;">For more info on system monitoring tools (and there&#8217;s a lot) </span></strong></span><a href="http://www.cyberciti.biz/tips/top-linux-monitoring-tools.html" target="_blank"><span style="color: #ffcc00;"><strong><span style="color: #ff9900;">try this as a first stop</span></strong></span></a><span style="color: #ffcc00;"><strong><span style="color: #ff9900;">.</span></strong></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2010/04/16/easily-find-your-hardware-specifications-and-some-system-monitoring-commands-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSHsplit &#8211; A utility to multiplex ssh dynamic tunnels</title>
		<link>http://www.lylebackenroth.com/blog/2010/03/09/sshsplit-a-utility-to-multiplex-ssh-dynamic-tunnels/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sshsplit-a-utility-to-multiplex-ssh-dynamic-tunnels</link>
		<comments>http://www.lylebackenroth.com/blog/2010/03/09/sshsplit-a-utility-to-multiplex-ssh-dynamic-tunnels/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 04:24:39 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=483</guid>
		<description><![CDATA[Source: The Original Developer.
(Launchpad link):
A dynamic tunnel SSH multiplexer. When heavily using a Dynamic SSH tunnel, this application will open concurrent SSH tunnels to multiplex the load. This is useful when using torrent connections locally, or when using your computer to share internet access via the dynamic proxy.
To install on Ubuntu Karmic:
sudo add-apt-repository ppa:martineve/ppa
sudo apt-get [...]]]></description>
			<content:encoded><![CDATA[<p>Source: <a href="http://www.ubuntugeek.com/sshsplit-a-utility-to-multiplex-ssh-dynamic-tunnels.html" target="_blank">The Original Developer</a>.</p>
<p>(<a href="https://launchpad.net/sshsplit" target="_blank">Launchpad link</a>):</p>
<p>A dynamic tunnel SSH multiplexer. When heavily using a Dynamic SSH tunnel, this application will open concurrent SSH tunnels to multiplex the load. This is useful when using torrent connections locally, or when using your computer to share internet access via the dynamic proxy.</p>
<p>To install on Ubuntu Karmic:</p>
<p><code>sudo add-apt-repository ppa:martineve/ppa</code></p>
<p><code>sudo apt-get update</p>
<p></code></p>
<p><code>sudo apt-get install sshsplit</code></p>
<p>If no arguments are passed, you can run sshsplit from command line and it will bring up a convenient GUI for on the fly configuration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2010/03/09/sshsplit-a-utility-to-multiplex-ssh-dynamic-tunnels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update-motd (Ubuntu)</title>
		<link>http://www.lylebackenroth.com/blog/2009/11/11/update-motd-ubuntu/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=update-motd-ubuntu</link>
		<comments>http://www.lylebackenroth.com/blog/2009/11/11/update-motd-ubuntu/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 05:37:54 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=473</guid>
		<description><![CDATA[By default, the newer versions of Ubuntu (9.04 and up) now auto-edit the MOTD. This annoyed me, so I researched how to stop that, since I prefer my own MOTDs and I&#8217;m quite particular about what I am presented with when SSH&#8217;ing into a box.
Ubuntu is running an application called &#8220;landscape-common&#8221;.
More on this application here. [...]]]></description>
			<content:encoded><![CDATA[<p>By default, the newer versions of Ubuntu (9.04 and up) now auto-edit the <a href="http://linux.about.com/library/cmd/blcmdl5_motd.htm" target="_blank">MOTD</a>. This annoyed me, so I researched how to stop that, since I prefer my own MOTDs and I&#8217;m quite particular about what I am presented with when <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH&#8217;ing</a> into a box.</p>
<p>Ubuntu is running an application called &#8220;landscape-common&#8221;.</p>
<p><a href="https://help.ubuntu.com/9.04/serverguide/C/update-motd.html" target="_blank">More on this application here</a>. The easy thing to do here is to simply type <span class="application"><strong>update-motd &#8211; -disable</strong></span> and you can then modify your MOTD. Also I have noticed that sometimes, the contents of <strong>motd.tail</strong> will overwrite the MOTD, so I would simply make sure whatever you want in /etc/motd is also in <strong>/etc/motd.tail</strong>. <em>[On Debian systems, the system message of the day is rebuilt at each startup. </em><em><strong>/etc/motd.tail</strong> is the file to edit permanent changes to the message of the day].</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/11/11/update-motd-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Limit CPU Usage Of A Process With cpulimit</title>
		<link>http://www.lylebackenroth.com/blog/2009/09/19/how-to-limit-cpu-usage-of-a-process-with-cpulimit/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-limit-cpu-usage-of-a-process-with-cpulimit</link>
		<comments>http://www.lylebackenroth.com/blog/2009/09/19/how-to-limit-cpu-usage-of-a-process-with-cpulimit/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 00:38:46 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=442</guid>
		<description><![CDATA[For Debian-based distros, this utility (not related to the &#8216;nice&#8216; command) will limit the cpu usage of a program. It works with multiple cores as well.
Simply sudo apt-get install cpulimit. More info can be found here.
]]></description>
			<content:encoded><![CDATA[<p>For Debian-based distros, this utility (<strong>not related</strong> to the &#8216;<a href="http://www.cyberciti.biz/faq/change-the-nice-value-of-a-process/" target="_blank">nice</a>&#8216; command) will limit the cpu usage of a program. It works with multiple cores as well.</p>
<p>Simply <strong>sudo apt-get install cpulimit</strong>. <a href="http://www.howtoforge.com/how-to-limit-cpu-usage-of-a-process-with-cpulimit-debian-ubuntu" target="_blank">More info can be found here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/09/19/how-to-limit-cpu-usage-of-a-process-with-cpulimit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable/disable Ctrl+Alt+Backspace in Ubuntu 9.10 (Karmic)</title>
		<link>http://www.lylebackenroth.com/blog/2009/09/11/how-to-enabledisable-ctrlaltbackspace-in-ubuntu-910-karmic/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-enabledisable-ctrlaltbackspace-in-ubuntu-910-karmic</link>
		<comments>http://www.lylebackenroth.com/blog/2009/09/11/how-to-enabledisable-ctrlaltbackspace-in-ubuntu-910-karmic/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 07:05:48 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=438</guid>
		<description><![CDATA[Ctrl+Alt+Backspace (the shortcut which was used to restart the X server) has to be enabled in a different way starting in Ubuntu 9.10 (Karmic Koala).
Using GNOME

Get to the System-&#62;Preferences-&#62;Keyboard menu.
Select the “Layouts” tab and click on the “Layout Options” button.
Then select “Key sequence to kill the X server” and enable “Control + Alt + Backspace”.

Click [...]]]></description>
			<content:encoded><![CDATA[<p>Ctrl+Alt+Backspace (the shortcut which was used to restart the X server) has to be enabled in a different way starting in Ubuntu 9.10 (Karmic Koala).</p>
<p><strong>Using GNOME</strong></p>
<ul>
<li>Get to the System-&gt;Preferences-&gt;Keyboard menu.</li>
<li>Select the “Layouts” tab and click on the “Layout Options” button.</li>
<li>Then select “Key sequence to kill the X server” and enable “Control + Alt + Backspace”.</li>
</ul>
<p>Click the link below for the full article and how to do it in KDE.</p>
<p>Source: <a href="http://www.ubuntugeek.com/how-to-enabledisable-ctrlaltbackspace-in-ubuntu-9-10-karmic.html" target="_blank">Ubuntu Geek</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/09/11/how-to-enabledisable-ctrlaltbackspace-in-ubuntu-910-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto Reinstall all of currently installed packages in fresh Ubuntu install</title>
		<link>http://www.lylebackenroth.com/blog/2009/02/15/howto-reinstall-all-of-currently-installed-packages-in-fresh-ubuntu-install/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=howto-reinstall-all-of-currently-installed-packages-in-fresh-ubuntu-install</link>
		<comments>http://www.lylebackenroth.com/blog/2009/02/15/howto-reinstall-all-of-currently-installed-packages-in-fresh-ubuntu-install/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 04:08:18 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=314</guid>
		<description><![CDATA[Repost: Source: Ubuntu Geek.
People sometimes have to do a reinstall of their Ubuntu system for various reasons (been playing/experimenting with configuration/drivers/other packages or just because something is badly broken) but remembering all the extra packages you have installed can be a chore &#8211; but here is the simple solution:
On your old system (assuming it is [...]]]></description>
			<content:encoded><![CDATA[<p>Repost: Source: <a href="http://www.ubuntugeek.com/howto-reinstall-all-of-currently-installed-packages-in-fresh-ubuntu-install.html" target="_blank">Ubuntu Geek.</a></p>
<p>People sometimes have to do a reinstall of their Ubuntu system for various reasons (been playing/experimenting with configuration/drivers/other packages or just because something is badly broken) but remembering all the extra packages you have installed can be a chore &#8211; but here is the simple solution:<br />
On your old system (assuming it is still working), start up Synaptic and go to:</p>
<p>File-Save Markings and choose a file name along with a location (like a USB drive) that you can use when you have installed your new system)</p>
<p>This file contains a list of all your currently installed packages, and when you have installed and booted up your new system (and configured your repositories to the best for your location ) then start up Synaptic and go to:</p>
<p>File-Read Markings and point it at your saved file, and after that has completed then select Apply to kick off the download &amp; installation of all of those packages you had installed previously!</p>
<p>There are also apt-get command line functions that achieve the same outcome, so those who don’t have/use Synaptic can still do this.</p>
<p>You will still have to do any special configuration changes that you had on the old system, but at least all of the packages are now in the new system.</p>
<p>This is also very handy for moving to new hardware/duplicating setups etc.</p>
<p>Be aware that doing this between different Ubuntu versions may cause complications because some packages may not be in a later version or have different names.</p>
<p>Note:- Don’t forget to backup your sources before you reinstall.</p>
<p>sudo cp /etc/apt/sources.list ~/sources.list.backup</p>
<p>Otherwise if you have added any PPAs or other sources, this tip won’t work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/02/15/howto-reinstall-all-of-currently-installed-packages-in-fresh-ubuntu-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set up dual-NIC bonding in Ubuntu</title>
		<link>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-set-up-dual-nic-bonding-in-ubuntu</link>
		<comments>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 05:10:40 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=312</guid>
		<description><![CDATA[REPOST: Source: Only Ubuntu Linux:
Bonding is creation of a single bonded interface by combining 2 or more ethernet interfaces. This helps in high availability and performance improvement.
How to setup dual-dual bonding (two bonds of two interfaces each) on Ubuntu as quickly as possible.
1. Add two lines to /etc/modules
bonding bond0 -o bond0 mode=1 miimon=100
bonding bond1 -o [...]]]></description>
			<content:encoded><![CDATA[<p>REPOST: Source: <a href="http://onlyubuntu.blogspot.com/2009/02/howto-setup-dual-dual-nic-bonding-on.html" target="_blank">Only Ubuntu Linux</a>:</p>
<p>Bonding is creation of a single bonded interface by combining 2 or more ethernet interfaces. This helps in high availability and performance improvement.</p>
<p>How to setup dual-dual bonding (two bonds of two interfaces each) on Ubuntu as quickly as possible.</p>
<p>1. Add two lines to /etc/modules</p>
<p>bonding bond0 -o bond0 mode=1 miimon=100</p>
<p>bonding bond1 -o bond1 mode=1 miimon=100</p>
<p>If you’re very good at managing your time, just remember that miimon’s option determines how often the bond is monitored for failure and that mode can be one of:</p>
<p>0 &#8211; Round robin balancing</p>
<p>1 &#8211; Active back-up</p>
<p>2 &#8211; Transmit based on MAC address for load balancing/fault tolerance</p>
<p>3 &#8211; Broadcasting &#8211; provides fault tolerance by transmitting on all slave interfaces</p>
<p>4 &#8211; Aggregates links, assuming all nics support same speeds and duplex settings</p>
<p>5 &#8211; Transmit load balancing &#8211; balancing is handled by the bond based on load</p>
<p>6 &#8211; Same as 5, but also uses arp to balance load “better</p>
<p>2. Install the ifenslave package if you haven’t already. You can use apt-get to grab it if you don’t:</p>
<p>sudo apt-get install ifenslave-x.x</p>
<p>3. Ensure that the package actually installed:</p>
<p>sudo dpkg –get-selections | grep enslave</p>
<p>ifenslave-x.x install</p>
<p>4. Set up your interface files:</p>
<p># cat /etc/network/interfaces (only including the parts you probably need &#8211; substitute IP addresses, netmasks, etc):</p>
<p>auto lo</p>
<p>iface lo inet loopback</p>
<p>auto bond0</p>
<p>iface bond0 inet static</p>
<p>address 10.10.125.88</p>
<p>netmask 255.255.255.0</p>
<p>network 10.10.125.0</p>
<p>gateway 10.10.125.1</p>
<p>post-up ifenslave bond0 eth0 eth2</p>
<p>pre-down ifenslave -d bond0 eth0 eth2</p>
<p>auto bond1</p>
<p>iface bond1 inet static</p>
<p>address 10.10.127.88</p>
<p>netmask 255.255.255.0</p>
<p>network 10.10.127.0</p>
<p>gateway 10.10.127.1</p>
<p>post-up ifenslave bond1 eth1 eth3</p>
<p>pre-down ifenslave -d bond1 eth1 eth3</p>
<p>5. Add lines to the bottom of your architecture’s modprobe files, reboot<br />
and pray:</p>
<p>sudo cat /etc/modprobe.d/arch/i386</p>
<p>alias bond0 bonding</p>
<p>options bond0 mode=1 miimon=5000 max_bonds=2</p>
<p>alias bond1 bonding</p>
<p>options bond1 mode=1 miimon=5000 max_bonds=2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to harden a default Ubuntu (or almost any Linux) install.</title>
		<link>http://www.lylebackenroth.com/blog/2008/12/03/how-to-harden-a-default-ubuntu-or-almost-any-linux-install/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-harden-a-default-ubuntu-or-almost-any-linux-install</link>
		<comments>http://www.lylebackenroth.com/blog/2008/12/03/how-to-harden-a-default-ubuntu-or-almost-any-linux-install/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 01:26:39 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=224</guid>
		<description><![CDATA[Even Linux can be vulnerable to attack, especially on a fresh install where all settings are left at defaults. This is an excellent article from IT Security on how to shore up security on a fresh Linux install.
I am not sure if the anti-virus recommendation is required at this time, I think that might be [...]]]></description>
			<content:encoded><![CDATA[<p>Even Linux can be vulnerable to attack, especially on a fresh install where all settings are left at defaults. This is <a href="http://www.itsecurity.com/features/ubuntu-secure-install-resource/" target="_blank">an excellent article from IT Security on how to shore up security on a fresh Linux install</a>.</p>
<p>I am not sure if the anti-virus recommendation is required at this time, I think that might be overkill, but if you intend to use the system in a live production environment, it&#8217;s all worth considering.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/12/03/how-to-harden-a-default-ubuntu-or-almost-any-linux-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 mistakes new Linux admins make:</title>
		<link>http://www.lylebackenroth.com/blog/2008/11/30/top-10-mistakes-new-linux-admins-make/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=top-10-mistakes-new-linux-admins-make</link>
		<comments>http://www.lylebackenroth.com/blog/2008/11/30/top-10-mistakes-new-linux-admins-make/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 00:57:27 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=219</guid>
		<description><![CDATA[From Tech Republic, worth reading if you&#8217;re new to Linux system administration.
One of the most common mistakes is not checking log files (reason #10). I often find it hard to keep up and sometimes parse the variety of system logs on a system. A great tool for managing this is called LogWatch. While not a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.techrepublic.com.com/10things/?p=455" target="_blank">From Tech Republic,</a> worth reading if you&#8217;re new to Linux system administration.</p>
<p>One of the most common mistakes is not checking log files (reason #10). I often find it hard to keep up and sometimes parse the variety of system logs on a system. A great tool for managing this is called <a href="http://www.logwatch.org" target="_blank">LogWatch</a>. While not a GUI, it summarizes system logs into a convenient report that you can cron to run regularly and email to yourself, or just monitor. It&#8217;s highly configurable with varying degrees of detail.</p>
<p>From the site:</p>
<blockquote><p><em>Logwatch is a customizable log analysis system. Logwatch parses through your system&#8217;s logs for a given period of time and creates a report analyzing areas that you specify, in as much detail as you require.</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/11/30/top-10-mistakes-new-linux-admins-make/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Firefox 3.x (or Thunderbird, or SeaMonkey) on Ubuntu 7.10 and older</title>
		<link>http://www.lylebackenroth.com/blog/2008/10/31/how-to-install-firefox-3x-or-thunderbird-or-seamonkey-on-ubuntu-710-and-older/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-firefox-3x-or-thunderbird-or-seamonkey-on-ubuntu-710-and-older</link>
		<comments>http://www.lylebackenroth.com/blog/2008/10/31/how-to-install-firefox-3x-or-thunderbird-or-seamonkey-on-ubuntu-710-and-older/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 08:59:13 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=211</guid>
		<description><![CDATA[Great python script, makes life very easy: UbuntuZilla.
]]></description>
			<content:encoded><![CDATA[<p>Great python script, makes life very easy: <a href="http://ubuntuzilla.wiki.sourceforge.net/" target="_blank">UbuntuZilla</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/10/31/how-to-install-firefox-3x-or-thunderbird-or-seamonkey-on-ubuntu-710-and-older/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Join Ubuntu 8.04 desktop to Windows server 2003 Active Directory.</title>
		<link>http://www.lylebackenroth.com/blog/2008/10/15/join-ubuntu-804-desktop-to-windows-server-2003-active-directory/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=join-ubuntu-804-desktop-to-windows-server-2003-active-directory</link>
		<comments>http://www.lylebackenroth.com/blog/2008/10/15/join-ubuntu-804-desktop-to-windows-server-2003-active-directory/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 07:26:34 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=195</guid>
		<description><![CDATA[This tutorial will explain how to add Ubuntu 8.04 desktop to win server 2003 Active Directory using Likewise Open.
Likewise Open is a free, open source application that joins Linux, Unix, and Mac machines to Microsoft Active Directory and securely authenticates users with their domain credentials.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntugeek.com/how-to-add-ubuntu-804-to-win-server-2003-active-directory-domain.html" target="_blank">This tutorial will explain how to add Ubuntu 8.04 desktop to win server 2003 Active Directory using Likewise Open.</a></p>
<p><a href="http://www.likewisesoftware.com/products/likewise_open/" target="_blank">Likewise Open</a> is a free, open source application that joins Linux, Unix, and Mac machines to Microsoft Active Directory and securely authenticates users with their domain credentials.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/10/15/join-ubuntu-804-desktop-to-windows-server-2003-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a simple, web-based streaming server with Ubuntu: GnuMP3d.</title>
		<link>http://www.lylebackenroth.com/blog/2008/10/01/make-a-simple-music-streaming-server-with-ubuntu-web-based/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=make-a-simple-music-streaming-server-with-ubuntu-web-based</link>
		<comments>http://www.lylebackenroth.com/blog/2008/10/01/make-a-simple-music-streaming-server-with-ubuntu-web-based/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 04:41:25 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=173</guid>
		<description><![CDATA[Source: UbuntuGeek
The GNU MP3/Media Streamer is a simple application which makes it possible to navigate through your audio and video collection via a browser, and stream playlists across a network.GNUMP3d is a streaming server for MP3s, OGG vorbis files, movies and other media formats.The software supports browsing, searching, and streaming all via your browser with [...]]]></description>
			<content:encoded><![CDATA[<p>Source: <a href="http://www.ubuntugeek.com/streaming-media-server-in-ubuntu-gnulinux-using-gnump3d.html" target="_blank">UbuntuGeek</a></p>
<blockquote><p>The GNU MP3/Media Streamer is a simple application which makes it possible to navigate through your audio and video collection via a browser, and stream playlists across a network.GNUMP3d is a streaming server for MP3s, OGG vorbis files, movies and other media formats.The software supports browsing, searching, and streaming all via your browser with support for MP3, OGG Vorbis, WMA and many other types of audio files.</p></blockquote>
<p><a href="http://www.ubuntugeek.com/streaming-media-server-in-ubuntu-gnulinux-using-gnump3d.html" target="_blank">Click here for more info and configuration information.</a></p>
<p><a href="http://www.gnu.org/software/gnump3d/" target="_blank">GnuMP3d home site.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/10/01/make-a-simple-music-streaming-server-with-ubuntu-web-based/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Ubuntu Linux without burning a CD</title>
		<link>http://www.lylebackenroth.com/blog/2008/09/03/how-to-install-ubuntu-linux-without-burning-a-cd/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-ubuntu-linux-without-burning-a-cd</link>
		<comments>http://www.lylebackenroth.com/blog/2008/09/03/how-to-install-ubuntu-linux-without-burning-a-cd/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 07:31:24 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=140</guid>
		<description><![CDATA[Extract the files in the .ISO to a USB stick and boot off that, then on-bootup, install from the USB key, quite simple.
Here&#8217;s the full howto.
]]></description>
			<content:encoded><![CDATA[<p>Extract the files in the .ISO to a USB stick and boot off that, then on-bootup, install from the USB key, quite simple.</p>
<p><a href="https://help.ubuntu.com/community/Installation/FromUSBStick" target="_blank">Here&#8217;s the full howto.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/09/03/how-to-install-ubuntu-linux-without-burning-a-cd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Studio . . . instructional install.</title>
		<link>http://www.lylebackenroth.com/blog/2008/06/14/ubuntu-studio-instructional-install/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ubuntu-studio-instructional-install</link>
		<comments>http://www.lylebackenroth.com/blog/2008/06/14/ubuntu-studio-instructional-install/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 06:58:30 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=117</guid>
		<description><![CDATA[..if some want to try Ubuntu, but wants to jump right in to video editiing, audio recording and high end graphics work, there&#8217;s a version of it called Ubuntu Studio, which scripts a lot of the things one often has to do once Linux is installed. I personally would not use this edition of Ubuntu, [...]]]></description>
			<content:encoded><![CDATA[<p>..if some want to try Ubuntu, but wants to jump right in to video editiing, audio recording and high end graphics work, there&#8217;s a version of it called Ubuntu Studio, which scripts a lot of the things one often has to do once Linux is installed. I personally would not use this edition of Ubuntu, but I think it&#8217;s helpful to those trying to get into it. Ubuntu Studio is specifically for Video &amp; Graphics enthusiasts.</p>
<p>HOW TO&#8217;s:</p>
<p><a href="http://www.howtoforge.com/the-perfect-desktop-ubuntu-studio-8.04" target="_blank">Ubuntu Studio 8.04 Desktop</a>:</p>
<p><a href="http://www.howtoforge.com/perfect-server-ubuntu8.04-lts" target="_blank"> Ubuntu Studio 8.04 Server</a>:</p>
<p>&#8211;</p>
<p><a href="http://ubuntustudio.org/" target="_blank">Ubuntu Studio homepage</a>:<a href="http://ubuntustudio.org/" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/06/14/ubuntu-studio-instructional-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SUN to certify more of its servers for Ubuntu</title>
		<link>http://www.lylebackenroth.com/blog/2008/04/04/sun-to-certify-more-of-its-servers-for-ubuntu/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sun-to-certify-more-of-its-servers-for-ubuntu</link>
		<comments>http://www.lylebackenroth.com/blog/2008/04/04/sun-to-certify-more-of-its-servers-for-ubuntu/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 00:38:26 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SUN]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=108</guid>
		<description><![CDATA[Having recently acquired MySQL and Innotek (makers of VirtualBox, the open source VMware) SUN is clearly reading the tea leaves and can see the trends. SUN has been a friend to the open source community for years, having forged Star Office, the forebearer of OpenOffice and releasing the source code for Solaris OS. They&#8217;re also [...]]]></description>
			<content:encoded><![CDATA[<p>Having <a href="http://www.linux.com/feed/124832" target="_blank">recently acquired MySQL</a> and <a href="http://gigaom.com/2008/01/15/vmware-acquires-thinstall-to-take-virtualization-to-the-desktop/" target="_blank">Innotek</a> (makers of <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>, the open source VMware) SUN is clearly reading the tea leaves and can see the trends. SUN has been a friend to the open source community for years, having forged Star Office, the forebearer of <a href="http://www.openoffice.org/" target="_blank">OpenOffice</a> and releasing the source code for <a href="http://www.sun.com/software/solaris/index.jsp" target="_blank">Solaris OS</a>. They&#8217;re also co-sponsoring <a href="http://en.oreilly.com/ubuntu2008/public/content/home" target="_self">Ubuntu Live</a> which will debut in July 2008.</p>
<p>SUN announced that they&#8217;re going to further certify their servers with Ubuntu Linux. At this time there&#8217;s no plans to release Hardy Heron (8.04) for the SPARC processor, though SUN will be certifying their x86 line of servers with Ubuntu, and their more of their SPARC servers with earlier versions of Ubuntu which have been released for <a href="http://www.sun.com/products/microelectronics/products.jsp" target="_blank">SPARC processors</a>.</p>
<p>At Ubuntu Live, expect SUN to announce how MySQL, OpenOffice and Ubuntu will evolve with SUN to meet customers&#8217; needs.</p>
<p>Sources: <a href="http://seekingalpha.com/article/71011-sun-microsystems-next-linux-move" target="_blank">One</a>, <a href="http://www.cnet.com/8301-13505_1-9911332-16.html" target="_blank">Two</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0368212665624060";
/* 468x60, footer to posted blog articles */
google_ad_slot = "4120091789";
google_ad_width = 468;
google_ad_height = 60;
//-->
// --&gt;
// --&gt;
// --&gt;
// --&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/04/04/sun-to-certify-more-of-its-servers-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Ubuntu Linux seamlessly ontop of Windows</title>
		<link>http://www.lylebackenroth.com/blog/2008/02/21/run-ubuntu-linux-seamlessly-ontop-of-windows/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=run-ubuntu-linux-seamlessly-ontop-of-windows</link>
		<comments>http://www.lylebackenroth.com/blog/2008/02/21/run-ubuntu-linux-seamlessly-ontop-of-windows/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 21:27:59 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/2008/02/21/run-ubuntu-linux-seamlessly-ontop-of-windows/</guid>
		<description><![CDATA[I&#8217;m not sure why anyone would want to do that, in the age of live-cd distros and dual-booting options, but some people running high end boxes may enjoy the best of both worlds, running a full Ubuntu distro ontop of windows. This unique distro is called andLinux.
From the andLinux site:
andLinux is a complete Ubuntu Linux [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure why anyone would want to do that, in the age of live-cd distros and dual-booting options, but some people running high end boxes may enjoy the best of both worlds, running a full Ubuntu distro ontop of windows. This unique distro is called <a href="http://www.andlinux.org/" target="_blank">andLinux</a>.</p>
<p>From the andLinux site:</p>
<blockquote><p>andLinux is a complete <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> Linux system running seamlessly in Windows 2000 based systems (2000, XP, 2003, Vista [32-bit only]). This project was started for <a href="http://www.dynamism.com/" target="_blank">Dynamism</a> for the GP2X community, but its userbase far exceeds its original design. andLinux is free and will remain so, but donations are greatly needed.</p>
<p>andLinux uses <a href="http://www.colinux.org/" target="_blank">CoLinux</a> as its core which is confusing for many people. CoLinux is a port of the Linux kernel to Windows. Although this technology is like VMware or Virtual PC, CoLinux differs itself by being more of a merger of Windows and the Linux kernel and not an emulated PC, making it more efficient. <a href="http://www.straightrunning.com/XmingNotes/" target="_blank">Xming</a> is used as X server and <a href="http://www.pulseaudio.org/" target="_blank">PulseAudio</a> as sound server.</p>
<p>andLinux is not just for development and runs almost all Linux applications without modification.</p></blockquote>
<p><a href="http://andlinux.sourceforge.net/screenshots/screenshot.png" target="_blank">Click here for a sample screenshot</a>.</p>
<p>Also, an excellent article on the subject from <a href="http://lifehacker.com/358208/seamlessly-run-linux-apps-on-your-windows-desktop" target="_blank">Lifehacker</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/02/21/run-ubuntu-linux-seamlessly-ontop-of-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: lylebackenroth.com @ 2010-09-08 00:53:58 -->