<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.eggxpert.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Unix/Linux OS</title><link>http://www.eggxpert.com/forums/26247/ShowForum.aspx</link><description>Everything Unix/Linux Operating System.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61120.2)</generator><item><title>Move to Triple Boot with Grub</title><link>http://www.eggxpert.com/forums/thread/583756.aspx</link><pubDate>Thu, 12 Nov 2009 05:46:36 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:583756</guid><dc:creator>endoftheline</dc:creator><slash:comments>3</slash:comments><comments>http://www.eggxpert.com/forums/thread/583756.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=583756</wfw:commentRss><description>&lt;div class="smallfont"&gt;&lt;/div&gt;											&lt;div class="vbclean_msgtext" id="post_message_8298523"&gt;Ihave 1 HD with Ubuntu 9.10 Desktop Installed, and windows 7 Ultimateinstalled. When I boot grub gives me the option to choose betweenUbuntu or Windows 7.&lt;br&gt;I would now like to also install Windows XP Professional. I'm wonderingif installing windows XP Pro now, will cause any issues with my currentgrub boot menu. Is there anything special I might need to do to ensurethat Grub stays as the boot menu and allows me to boot between Ubuntu,Win 7, and Win XP?&lt;/div&gt;</description></item><item><title>data salvage</title><link>http://www.eggxpert.com/forums/thread/573567.aspx</link><pubDate>Sat, 03 Oct 2009 21:37:22 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:573567</guid><dc:creator>kcihtred2</dc:creator><slash:comments>1</slash:comments><comments>http://www.eggxpert.com/forums/thread/573567.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=573567</wfw:commentRss><description>ok heres what happened, my dad had a desktop he dual booted between xp and fedora 10, and now he needs the data off it.&amp;nbsp; When we plug it into a linux machine (ubuntu or fedora) we cannot seem to see the fedora partition of the computer, however the grub boot loader and windows parition comes up fine... any ideas on how to get the data off?&lt;br&gt;</description></item><item><title>Runbook: Linux.Reprioriting Processes</title><link>http://www.eggxpert.com/forums/thread/565514.aspx</link><pubDate>Thu, 03 Sep 2009 07:22:06 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:565514</guid><dc:creator>root</dc:creator><slash:comments>2</slash:comments><comments>http://www.eggxpert.com/forums/thread/565514.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=565514</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Intro&lt;/b&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;Some of you might be aware of this, others may not, but you can actually prioritize your applications in an OS. Windows you can do it under Task Manager, and Linux you can use something called 'nice' or 'renice'.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Why?&lt;/b&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;Why would one want to change the prioritize or an application/script/process/etc? There are a few situations where you want a process to have a lower priority than others. Take for instance you are trans-coding a video (heavy CPU task) but you don't want it to interfere with your web browsing or movie watching when you're on the computer. This can be done by setting the trans-code process to a lower priority than everything else. Meaning, when you are away from you computer (say, sleeping), the trans-coding can take on all the unused CPU process.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;How?&lt;/b&gt; &lt;/p&gt;&lt;p&gt;Two ways of going about it. You can either start an application/script/etc at a certain level or you can re-prioritize it after you've started it. But before we get into this, let's touch brieflly on nice. There are varing degree's of priority with nice, ranging from -20 to 19.&amp;nbsp; -20 is the highest priority a task can have while 19 is the lowest priority. If that sounds backwards to you, think of the nice number as being "how nice will this play with others?"&lt;/p&gt;&lt;p&gt;Most distros start an application as 0.&amp;nbsp; So how do we change this? Let's say we want to run a script called 'transcode.sh' on the lowest priority, there are two ways about it:&lt;/p&gt;&lt;p&gt;Start it at 19...&lt;br&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;nice 19 ./transcode.sh&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;or change it to 19 after it's been started...&lt;br&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;./transcode.sh &lt;br&gt;&lt;/p&gt;&lt;p&gt;ps aux | grep transcode.sh&lt;/p&gt;&lt;p&gt;renice 19 12543&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Where 12543 is the process ID found in the 'ps' output (hint: it's right next to the user name).&lt;/p&gt;&lt;p&gt;Now, when you are surfing the net or doing general tasks on the computer, the transcode process will have the lowest priority and it won't hinder your webbrowsing. But when you step away, and you're no longer using the browser, the transcode process will take up all your CPU power.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Footnotes&lt;/b&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;1. If you nice a process into the negatives, you must have root privileges.&lt;/p&gt;&lt;p&gt;2. If you don't specify a nice value, it defaults to 10. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Netbooks, Win XP to Ubuntu 9.04 Netbook (No Help)</title><link>http://www.eggxpert.com/forums/thread/565366.aspx</link><pubDate>Wed, 02 Sep 2009 20:28:57 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:565366</guid><dc:creator>aesman</dc:creator><slash:comments>5</slash:comments><comments>http://www.eggxpert.com/forums/thread/565366.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=565366</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;/p&gt;&lt;p&gt;About a year ago I bought an HP Mini netbook (Not to be confused with Notebook). &lt;br&gt;&lt;/p&gt;&lt;p&gt;The HP I bought has a Solid State HDD. It isn't as large as the disk drives, being only 8GB for a HDD, but netbooks are very small and therefore drop more than notebooks. So, going for a 60GB HDD was not worth the risk of damage (Trust me it paid off). Anyway, I didn't buy the netbook to do other than surf the net and socialize. So, I didn't need more then 8GB's.&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, HP had the bright Idea to load the machine with Windows XP, and not some small device version, I am talking about the FULL version with SP2. Then on top of that, they only through in a 512MB stick of RAM, even though SP2 requires 1GB of RAM.&lt;/p&gt;&lt;p&gt;After only about two months of very slow use, the 8GB's on the HDD were filled very fast with updates and basic programs. No images, No music, and No video were on the drive. Nothing but OS and a few other needed Web based programs like Adobe Flash and Microsoft Sivlerlight.&lt;/p&gt;&lt;p&gt;Eventually, it got to the point where the 8GB's were completely filled with this necessary stuff to run properly. I couldn't even preform a defragmentation because I didn't have enough space available to complete the process. &lt;/p&gt;&lt;p&gt;GREAT! &amp;nbsp; &lt;br&gt;&lt;/p&gt;&lt;p&gt;HP and Microsoft FAIL because they took the easy way out, and tried to load a heavy OS, with some 50 million lines of code (I don't know the exact amount anymore).&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So, the other day, I decided to give Ubuntu a go. As I was reading through the website, i came across this little NETbook Gem!&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;A href="http://www.ubuntu.com/getubuntu/download-netbook" target=_blank target="_blank"&gt;http://www.ubuntu.com/getubuntu/download-netbook&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;An Operating System designed for a NETBOOK - Brilliant!!!!!&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I installed this bad boy and have noticed so many advantages, that listing them here would take for ever, but the major improvement is in the GUI because the Desktop is not the average Desktop. It is designed Specifically for netbooks, not towers (with a P4 or Dual Core), and therefore far more superior. &lt;/p&gt;&lt;p&gt;I was ready to just junk this machine until Google Chrome OS came out. It is almost as if HP and MS don't want the netbook to succssed, because they set them up for failure. Shame on them. &lt;br&gt;&lt;/p&gt;&lt;p&gt;Thumbs up to the Open Source Community! &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you are interested in giving it a try as well, check this page &lt;A href="https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks" target=_blank target="_blank"&gt;https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks&lt;/a&gt; to see if there are any recorded issues with your model.&lt;br&gt;&lt;/p&gt;</description></item><item><title>PCLinuxOS LXDE for low powered computers</title><link>http://www.eggxpert.com/forums/thread/561045.aspx</link><pubDate>Thu, 20 Aug 2009 19:30:07 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:561045</guid><dc:creator>ladytekki</dc:creator><slash:comments>2</slash:comments><comments>http://www.eggxpert.com/forums/thread/561045.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=561045</wfw:commentRss><description>&lt;p&gt;PCLinuxOS LXDE (PCLXDE) 2009 is for older computers or new ones with low powered specs. Includes wireless support in a 313 MB self-booting/installable Live CD. With the later option of a myriad of software/drivers updates available through the Synaptic. &lt;/p&gt;&lt;p&gt;For download: &amp;nbsp;
					&lt;A href="http://www.pclinuxos.com/index.php?option=com_content&amp;amp;task=view&amp;amp;id=70&amp;amp;Itemid=1" target=_blank title="PCLinuxOS LXDE (PCLXDE) 2009" target="_blank"&gt;PCLinuxOS LXDE (PCLXDE) 2009&lt;/a&gt;&lt;/p&gt;&lt;p&gt;For support and changes: &lt;A href="http://www.pclinuxos.com/index.php?option=com_smf&amp;amp;Itemid=26&amp;amp;topic=60423.0" target=_blank title="PClinuxOS forum" target="_blank"&gt;PCLinuxOS Forum&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.eggxpert.com/emoticons/emotion-15.gif" alt="Geeked" /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Runbook: Linux.Creating RAID5 Software Array</title><link>http://www.eggxpert.com/forums/thread/562656.aspx</link><pubDate>Tue, 25 Aug 2009 06:04:46 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:562656</guid><dc:creator>root</dc:creator><slash:comments>1</slash:comments><comments>http://www.eggxpert.com/forums/thread/562656.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=562656</wfw:commentRss><description>&lt;p&gt;This post is geared towards people who know enough about basic linux commands to get by, and have read the Storage FAQ's RAID &lt;A href="http://www.eggxpert.com/forums/thread/263361.aspx" target=_blank target="_blank"&gt;post&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Required: &lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;At least 3 sata drives, of the same size, that you either don't have any data on or don't mind blowing away anything on them.&lt;br&gt;&lt;/li&gt;
&lt;li&gt;mdadm installed (hint: "apt-get install mdadm") &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Where to start?&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Best place to start is to get your drive locations. Start by doing a simple ls command.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;ls /dev/sd*&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I would recommend NOT using partitions for your arrays. What do I mean by this? I mean use /dev/sdb not /dev/sdb1. Why? Because if you are doing any type of maintenance work on them, it makes things easier to manage. This is because you can now say 'only devices that don't have partitions are in the array', and it helps in situations where you accidently fat finger in adding/removing drives and you forgot to don't specify the partition--especially in adding an existing one to an array. &lt;/p&gt;
&lt;p&gt;So if you already have created partitions, get into fdisk utility and clear them out:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;ls /dev/sd(letter)&lt;/p&gt;
&lt;p&gt;d&lt;/p&gt;
&lt;p&gt;w&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you need help, type 'm'. Do this for every disk... Note: the moment you do the d / w commands, ANY DATA ON THOSE DRIVES IS GONE. Granted, you can get them back with some specific tools, but be VERY careful when dealing with fdisk. I'd even go so far as to recommend unplugging all but the drives you want to create the array with and boot from a live CD. One can't be too careful!&lt;br&gt;&lt;/p&gt;
&lt;p&gt;Now write down all the drives you'll be using. I'm going to assume you have four drives called /dev/sdb, /dev/sdc, /dev/sdd, and /dev/sde. Note: I would NOT recommend making a RAID5 array any larger than 8 drives. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Creating the array&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Here is the easy part. We're going to create a 4 drive RAID5 array called /dev/md0. To do this, you can type in short hand:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mdadm -C -l5 -n4 /dev/md0 /dev/sd[bcde]&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Let's disect this real quick. The "-C" part means to "create" or "rebuild", the "-l5" (lowcase L) means "layout 5" or "RAID 5", the "-n4" tells it to expect 4 drives in the array, the next part (/dev/md0) is giving it a device name, and the last part is listing all the devices. The brackets, for those of you familiar with bash commands, makes it "/dev/sdb /dev/sdc /dev/sdd /dev/sde". As you can see, it's much easier to do the brackets.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Watching it build&lt;/b&gt; &lt;/p&gt;
&lt;p&gt;Assuming there were no issues, it should say 'mdadm: /dev/md0 array started' or something to that affect. To watch the progress, you have two options:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mdadm --detail /dev/md0&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;cat /proc/mdstat&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I prefer the latter, and I use the 'watch' program like so:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;watch -n 1 cat /proc/mdstat&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;To get out of the watch, CTRL + C it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Now what?&lt;/b&gt; &lt;/p&gt;
&lt;p&gt;Technically, right now, you can throw your new RAID5 device (/dev/md0) into LVM or put a filesystem on it... but I'd highly recommend waiting until it's fully built. I'd also highly recommend that you take a look at the other mdadm commands. Some helpful ones to get you started in the right direction:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;mdadm --manage --help&amp;nbsp; (-arfS are some good ones)&lt;br&gt;&lt;/p&gt;
&lt;p&gt;mdadm --assemble --help (-s is only one I really use)&lt;br&gt;&lt;/p&gt;
&lt;p&gt;mdadm --misc --help (-QDE and --zero-superblock I use... but DON'T DO THE --zero-superblock unless you want to delete the array information from a drive)&lt;br&gt;&lt;/p&gt;
&lt;p&gt;mdadm --grow --help (-lpn)&lt;br&gt;&lt;/p&gt;
&lt;p&gt;mdadm --monitor --help (-mcfl)&lt;br&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Example: If you reboot and for whatever reason it doesn't start up automatically you can run:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;nbsp;mdadm --assemble -s&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Note that most commands require that you specify the array first and then the devices that you want to change. I highly recommend consulting the man pages on the command you wish to run before you try anything out (hint: "man mdadm" and type '/' to search for keywords).&lt;/p&gt;&lt;p&gt;&amp;nbsp;Note #2: superblock is a term you might hear while reading up on the man pages of mdadm. Basically it's like a file that's written to all the drives in your array that says "I'm part of ___ array that's a RAID __ and I'm number __ in line of the array". Superblock allows you to physically move your drives to another linux machine and 'import' them in with "mdadm --assemble -s" command. As long as your superblock is good on all of your drives, you can port them to any machine and start the array at any time. Pretty neat huh?&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Tip&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;After you've created your array, I would HIGHLY recommend writing down the order in which you created your array. In fact, I'd do exactly this (which I do now):&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;mdadm --detail /dev/md0&lt;/p&gt;&lt;p&gt;hdparm -i /dev/sd[bcdef...&lt;i&gt;n&lt;/i&gt;] | grep Serial&lt;br&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;You'll probably recognize the first command, but the second command might look new to you. What this tells you is what a particular device's (example: /dev/sdb) make/model/serial is. This is just incase you accidently swap SATA cables for whatever reason (hint: the /dev/sde drive might not be the same physical drive when you swap it's SATA cable with another drive). So having these outputs in a file and stored, say, in your backup hard drive (NOT ON YOUR ARRAY) and--say--as a 'draft' email in your Gmail account (lolz), would make rebuilding your array much easier. I made the mistake of getting one drive out of order when one of my superblocks got corrupted and I had to rebuild the array. Bye bye data.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Ending Notes&amp;nbsp;
&lt;/b&gt;
&lt;/p&gt;&lt;b&gt;&lt;/b&gt;&lt;p&gt;I'll try and create a runbook tomorrow on how to properly align/use LVM and (my favorite filesystem) XFS with a RAID5 array.&lt;/p&gt;
&lt;p&gt;Post up if you have any questions/issues. &lt;br&gt;&lt;/p&gt;</description></item><item><title>Great Linux Applications (updated on 8-26-2009)</title><link>http://www.eggxpert.com/forums/thread/527778.aspx</link><pubDate>Mon, 25 May 2009 23:10:55 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:527778</guid><dc:creator>ladytekki</dc:creator><slash:comments>4</slash:comments><comments>http://www.eggxpert.com/forums/thread/527778.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=527778</wfw:commentRss><description>&lt;p&gt;&lt;img src="http://www.eggxpert.com/emoticons/emotion-55.gif" alt="Idea" /&gt;Note on what was updated: Multimedia players. &lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;This is intended to be a work in progress, so I hope we all contribute to it. Please post your applications, and I will add it to the first post.&lt;br&gt;&lt;br&gt;All the distributions come with a set of very useful applications, but sometimes the default ones aren't the best out there. It's a wonderful thing we can change them, or add new ones (free of charge) using the package manager that comes with the distro. Mostly Open Source Software. Some of these applications are cross-platform . Another detail to keep in mind is that most of them will work with any distribution. Regardless of the desktop. However, some of them need to replace libraries, which will affect other applications, or even to change the desktop from KDE to Gnome for example. Which could completely change your current settings. I'm posting the website of the developer so if your package manager doesn't have it in it's repository, you can get it from there. &lt;br&gt;&lt;br&gt;&lt;/p&gt;&lt;A href="http://linuxappfinder.com/alternatives" target=_blank title="http://linuxappfinder.com/alternatives" target="_blank"&gt;&lt;b&gt;&lt;/b&gt;&lt;/a&gt;&lt;b&gt;Browsers/Internet/Messengers&lt;/b&gt;
&lt;p&gt;&lt;u&gt;&lt;A href="http://flock.com/" target=_blank title="http://flock.com/" target="_blank"&gt;&lt;b&gt;Flock&lt;/b&gt;&lt;/a&gt;&lt;/u&gt; is a browser with social networking built into its user interface.&amp;nbsp; &lt;A href="http://en.wikipedia.org/wiki/Flock_%28web_browser%29#cite_note-0" target=_blank target="_blank" title=""&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://www.dillo.org/" target=_blank title="http://www.dillo.org/" target="_blank"&gt;Dillo&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is a light browser for slower computers and embedded systems.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://www.amsn-project.net/download.php" target=_blank title="http://www.amsn-project.net/download.php" target="_blank"&gt;aMSN&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is a free open source MSN Messenger clone.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://kopete.kde.org/" target=_blank title="http://kopete.kde.org/" target="_blank"&gt;Kopete&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is a multi-protocol, free software instant messaging client. &lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;CD/DVD/authoring, burning, backup.&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://k9copy.sourceforge.net/index.php%20" target=_blank title="http://k9copy.sourceforge.net/index.php " target="_blank"&gt;K9Copy&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is a free, open source DVD backup and DVD authoring program. &lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://k3b.plainblack.com/screenshots" target=_blank title="http://k3b.plainblack.com/screenshots" target="_blank"&gt;K3b&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; - The CD/DVD creator for Linux.&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Educational Children Games&lt;/b&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://www.schoolsplay.org/" target=_blank title="http://www.schoolsplay.org/" target="_blank"&gt;Childplay&lt;/a&gt;&lt;/b&gt;&lt;/u&gt;&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://gcompris.net/-en-" target=_blank title="http://gcompris.net/-en-" target="_blank"&gt;Gcompris &lt;/a&gt;&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Graphics&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;u&gt;&lt;b&gt;&lt;A href="http://www.gimphoto.com/2007/08/screenshots.html" target=_blank title="http://www.gimphoto.com/2007/08/screenshots.html" target="_blank"&gt;GimPhoto&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is a modification of (GIMP), intended to replicate the feel of Adobe Photoshop.&lt;br&gt;
&lt;br&gt;
&lt;u&gt;&lt;b&gt;&lt;A href="http://www.blender.org/features-gallery/features/" target=_blank title="http://www.blender.org/features-gallery/features/" target="_blank"&gt;Blender&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; is the free open source 3D content creation suite.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Hardware Information/Benchmarking&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://wiki.hardinfo.org/Downloads" target=_blank title="HardInfo" target="_blank"&gt;&lt;b&gt;HardInfo&lt;/b&gt;&lt;/a&gt; Similar to PCWizard, details installed hardware, included basic benchmarking tools.&lt;/p&gt;&lt;p&gt;&lt;A href="http://linux.die.net/man/1/lshw" target=_blank title="Ishw" target="_blank"&gt;&lt;b&gt;lshw&lt;/b&gt;&lt;/a&gt; extracts detailed information on the hardware configuration of the machine.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;i&gt;&lt;/i&gt;&lt;b&gt; Networking Tools&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;SSH clients&lt;/b&gt; &lt;b&gt;which use the secure shell protocol:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/" target=_blank title="PuTTY" target="_blank"&gt;&lt;b&gt;
PuTTY&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.openssh.com/" target=_blank title="OpenSSH" target="_blank"&gt;&lt;b&gt;OpenSSH&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;&lt;A href="http://matt.ucc.asn.au/dropbear/dropbear.html" target=_blank title="Dropbear" target="_blank"&gt;&lt;b&gt;Dropbear&lt;/b&gt;&lt;/a&gt;&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;b&gt;Office/Word-processors/Editors&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://koffice.org/" target=_blank style="font-weight:bold;" title="http://koffice.org/" target="_blank"&gt;KOffice&lt;/a&gt; is an office suite for&amp;nbsp; KDE.&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.openoffice.org/" target=_blank style="font-weight:bold;" title="http://www.openoffice.org/" target="_blank"&gt;OpenOffice&lt;/a&gt;&lt;b&gt; &lt;/b&gt;is a&lt;b&gt; &lt;/b&gt;cross-platform office suite. &lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://www.lyx.org/" target=_blank title="http://www.lyx.org/" target="_blank"&gt;LyX&amp;nbsp;&lt;/a&gt;&lt;/b&gt;&lt;/u&gt; The Document Processor.&lt;br&gt;
&lt;br&gt;
&lt;u&gt;&lt;b&gt;&lt;A href="http://www.celtx.com/overview.html" target=_blank title="http://www.celtx.com/overview.html" target="_blank"&gt;Celtx&lt;/a&gt;&lt;/b&gt;&lt;/u&gt;&amp;nbsp; Free screenwriting software.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;b&gt;Online resources for more Linux Applications:&lt;/b&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;A href="http://www.opendesktop.org/" target=_blank title="http://www.opendesktop.org/" target="_blank"&gt;http://www.opendesktop.org/&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;A href="http://linuxappfinder.com/alternatives" target=_blank title="http://linuxappfinder.com/alternatives" target="_blank"&gt;&lt;b&gt;http://linuxappfinder.com/alternatives&lt;/b&gt;&lt;/a&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;&lt;b&gt;Multimedia players.&lt;/b&gt;&lt;/u&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;A href="http://www.atunes.org/" target=_blank title="aTunes" target="_blank"&gt;aTunes&lt;/a&gt;&amp;nbsp;&lt;/b&gt; Supports portable players, or anything that could be mounted as a file system; includes a cd ripper tool.&lt;br&gt;&lt;/p&gt;&lt;A href="http://banshee-project.org/" target=_blank title="Banshee" target="_blank"&gt;&lt;b&gt;Banshee&lt;/b&gt;&lt;/a&gt; Music manager that Sync your music and videos to your G1, iPod, or other device.&lt;p&gt;&lt;b&gt;&lt;A href="http://www.videolan.org/vlc/" target=_blank title="http://www.videolan.org/vlc/" target="_blank"&gt;VLC&lt;/a&gt;&lt;/b&gt; The cross-platform open-source multimedia framework, player and server.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;A href="http://smplayer.sourceforge.net/" target=_blank title="http://smplayer.sourceforge.net/" target="_blank"&gt;Smplayer&lt;/a&gt;&lt;/b&gt;: Multi-platform front-end for mplayer.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;A href="http://www.exaile.org/downloads" target=_blank title="Exaile" target="_blank"&gt;
Exaile:&lt;/a&gt;&lt;/b&gt; music manager and player for GTK+&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;b&gt;System maintenance:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;u&gt;&lt;b&gt;&lt;A href="http://bleachbit.sourceforge.net/" target=_blank title="http://bleachbit.sourceforge.net/" target="_blank"&gt;BleachBit &lt;/a&gt;&lt;/b&gt;&lt;/u&gt;The privacy and disk space cleaner for Linux.&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Choosing a Linux Distribution</title><link>http://www.eggxpert.com/forums/thread/399992.aspx</link><pubDate>Wed, 01 Oct 2008 18:59:11 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:399992</guid><dc:creator>ladytekki</dc:creator><slash:comments>3</slash:comments><comments>http://www.eggxpert.com/forums/thread/399992.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=399992</wfw:commentRss><description>&lt;p&gt;The purpose of this thread is&amp;nbsp;to help choosing a distribution, learning about other's experiences, and keeping all this information neat and handy.&lt;/p&gt;
&lt;p&gt;Post any question, or new experience about a Linux distribution here. Only the information about the distribution itself, please. If having hardware problems, or any other installation issues, feel free to open a new thread about it.&lt;/p&gt;
&lt;p&gt;For a quick reference about Linux essential &lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/289888.aspx" target=_blank class="" title="TheManPages Series" target="_blank"&gt;TheManPages Series&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;To download or pick a distribution &lt;A href="http://distrowatch.com/dwres.php?resource=major" target=_blank class="" title="http://distrowatch.com/dwres.php?resource=major" target="_blank"&gt;Distrowatch&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;All threads containing&amp;nbsp;valued contributions made by some of the members of EggXpert are listed below for easy access:&lt;/p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/513128.aspx" target=_blank title="PCLinuxOS 2009" target="_blank"&gt;PCLinuxOS 2009&lt;/a&gt;&lt;p&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/1/245/ShowThread.aspx#245" target=_blank class="" title="http://www.eggxpert.com/forums/1/245/ShowThread.aspx#245" target="_blank"&gt;Linux anyone&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/351497.aspx" target=_blank class="" title="Which Distro to choose for a newbie " target="_blank"&gt;Which Distro to choose for a newbie&lt;/a&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/390400.aspx" target=_blank class="" title="Which linux distro?" target="_blank"&gt;Which linux distro?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/391084.aspx" target=_blank class="" title="Looking for a new distro of linux " target="_blank"&gt;Looking for a new distro of linux&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/258418.aspx" target=_blank class="" title="Favorite Linux distro" target="_blank"&gt;Favorite Linux distro&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/123223.aspx" target=_blank class="" title="Which kind of Linux?" target="_blank"&gt;Which kind of Linux?&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/225865.aspx" target=_blank class="" title="Enlightenment (elive) Linux" target="_blank"&gt;Enlightenment (elive) Linux&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;A href="http://www.eggxpert.com/forums/thread/127205.aspx" target=_blank class="" title="Best Linux for running a dedicated server?" target="_blank"&gt;Best Linux for running a dedicated server?&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="ctl00_ctl01_bcr_ctl00___ForumName"&gt;&lt;A href="http://www.eggxpert.com/forums/thread/99218.aspx" target=_blank class="" title="Easy PuppyLinux" target="_blank"&gt;Easy PuppyLinux&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;A href="http://www.eggxpert.com/forums/thread/93793.aspx" target=_blank class="" title="The different Linux distributions " target="_blank"&gt;The different Linux distributions&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.eggxpert.com/emoticons/emotion-15.gif" alt="Geeked" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Resources for running Linux from a USB drive.</title><link>http://www.eggxpert.com/forums/thread/513599.aspx</link><pubDate>Fri, 17 Apr 2009 00:17:02 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:513599</guid><dc:creator>ladytekki</dc:creator><slash:comments>6</slash:comments><comments>http://www.eggxpert.com/forums/thread/513599.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=513599</wfw:commentRss><description>&lt;p&gt;Running Linux from a USB flash drive is a great way to test it, and at the same time to have a distribution, that one can easily move from one machine to another.&lt;br&gt;&lt;br&gt;I'd been testing different methods to do so, and at the end of this post I'll list them, with a comment about it. If you know any other resources, please post it, so we all can share it.&lt;br&gt;&lt;br&gt;The first thing is to be sure that your computer's BIOS support USB Boot. Check your computer's manual to know how to get into the BIOS, once there, in the Boot options look for something like: USB-HDD, USB-ZIP or HDD Generic USB SD Reader.&lt;br&gt;&lt;br&gt;Another thing to keep in mind, is that USB flash drives have a limited erase/write cycles of about 100,000.00, and the OS writes every two seconds to it. Which it means, the installation would be good just for a few months/weeks only. Depending how much one uses it.&lt;br&gt;&lt;br&gt;Right now, I'm using &lt;A href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820134545" target=_blank title="USB Reader" target="_blank"&gt;this USB reader&lt;/a&gt;. Which allows me to change the card easy and inexpensively. I have flash cards for each of the different distros I'm using. All I do is change the card, according to the one I feel using at the moment.&lt;br&gt;&lt;br&gt;Regardless of which method you choose to use, the best way is to download the ISO of the distribution before hand. Use an empty USB flash drive, and if there are files to erase,&amp;nbsp; Windows can be use to format it fat32.&lt;br&gt;&lt;br&gt;Here is the list of the resources I tried:&lt;br&gt;&lt;br&gt;For Ubuntu&lt;br&gt;&lt;br&gt;&lt;A href="http://rudd-o.com/new-projects/portablelinux" target=_blank title="http://rudd-o.com/new-projects/portablelinux" target="_blank"&gt;http://rudd-o.com/new-projects/portablelinux&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;A href="https://launchpad.net/usb-creator" target=_blank title="https://launchpad.net/usb-creator" target="_blank"&gt;https://launchpad.net/usb-creator&lt;/a&gt;&lt;br&gt;&lt;br&gt;For Fedora &lt;br&gt;&lt;br&gt;&lt;A href="https://fedorahosted.org/liveusb-creator/" target=_blank title="https://fedorahosted.org/liveusb-creator/" target="_blank"&gt;https://fedorahosted.org/liveusb-creator/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Great utility, easy to run, I liked the most the choice to choose the size of the Persistent Storage.&lt;br&gt;&lt;br&gt;For any distribution:&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.pendrivelinux.com/" target=_blank title="http://www.pendrivelinux.com/" target="_blank"&gt;http://www.pendrivelinux.com/&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Great detailed tutorials.&lt;br&gt;&lt;br&gt;And the one, which I considered the best, because it's easier, faster and works with &lt;span style="font-weight:bold;"&gt;all the distributions&lt;/span&gt;.&lt;br&gt;&lt;br&gt;&lt;A href="http://unetbootin.sourceforge.net/" target=_blank title="http://unetbootin.sourceforge.net/" target="_blank"&gt;http://unetbootin.sourceforge.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;It&amp;nbsp; can be implemented from Windows. Indeed, it works better from it.&amp;nbsp; So if you don't want to double boot Linux and Windows, but still want to use Linux, this is a better option than a Live CD. Of course, UNetbootin can also be run from an existing Linux installation. &lt;br&gt;&lt;br&gt;&lt;img src="http://www.eggxpert.com/emoticons/emotion-15.gif" alt="Geeked" /&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>Runbooks: Linux</title><link>http://www.eggxpert.com/forums/thread/514118.aspx</link><pubDate>Sat, 18 Apr 2009 01:53:21 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:514118</guid><dc:creator>root</dc:creator><slash:comments>0</slash:comments><comments>http://www.eggxpert.com/forums/thread/514118.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=514118</wfw:commentRss><description>&lt;p&gt;The goal is to accumulate a bunch of runbooks that document some of the best of linux in such a way that anyone can be a linux guru.&lt;/p&gt;&lt;p&gt;Myself or another Uber will try and keep this updated as more runbooks are made.&lt;/p&gt;&lt;p&gt;Special thanks to the contributers:&lt;br&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;
										ladytekki&lt;/li&gt;&lt;li&gt;root (hey, I can thank myself)&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Runbooks:&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/513637.aspx" target=_blank title="http://www.eggxpert.com/forums/thread/513637.aspx" target="_blank"&gt;Recovering data from Windows (Live CD)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/514107.aspx" target=_blank title="http://www.eggxpert.com/forums/thread/514107.aspx" target="_blank"&gt;Using one keyboard/mouse for multiple machines (Synergy)&lt;/a&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/503849.aspx" target=_blank title="http://www.eggxpert.com/forums/thread/503849.aspx" target="_blank"&gt;File sharing (NFS)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/533319/ShowThread.aspx#533319" target=_blank title="http://www.eggxpert.com/forums/533319/ShowThread.aspx#533319" target="_blank"&gt;File sharing (Samba)&lt;/a&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/524874/ShowThread.aspx#524874" target=_blank title="http://www.eggxpert.com/forums/524874/ShowThread.aspx#524874" target="_blank"&gt;Start/Stop applications (jobs/ps/skill)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/562656/ShowThread.aspx#562656" target=_blank title="http://www.eggxpert.com/forums/562656/ShowThread.aspx#562656" target="_blank"&gt;Creating a RAID5 array (mdadm)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/565514/ShowThread.aspx#565514" target=_blank title="http://www.eggxpert.com/forums/565514/ShowThread.aspx#565514" target="_blank"&gt;Changing priority of process (nice)&lt;/a&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Runbooks to come (no particular order):&lt;/p&gt;&lt;ul&gt;&lt;li&gt;using lvm&lt;/li&gt;&lt;ul&gt;&lt;li&gt;pv,vg,lv,etc&lt;/li&gt;&lt;li&gt;snapshots&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;using rsync&lt;/li&gt;&lt;ul&gt;&lt;li&gt;including version control via hardlinks (cp -al) and cron&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;using ssh&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Overview in keys included&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;setting up a NIS environment&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Client/Server authentication&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;fluxbox (my fav windows manager)&lt;br&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Installing&lt;/li&gt;&lt;li&gt;Some customizations (menu config file, background, dock, etc)&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Modifying GRUB&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Adding/removing/setting default&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Daemon's&lt;/li&gt;&lt;ul&gt;&lt;li&gt;start/stop&lt;/li&gt;&lt;li&gt;startup directory&lt;/li&gt;&lt;li&gt;making some of your own&lt;/li&gt;&lt;li&gt;including brief overview of rc-levels, dabbing a little in shell scripts&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Linux Information</title><link>http://www.eggxpert.com/forums/thread/100438.aspx</link><pubDate>Mon, 09 Jul 2007 15:51:32 GMT</pubDate><guid isPermaLink="false">e96c5591-d47d-4b8d-80c4-18d6411a9236:100438</guid><dc:creator>Sidicas</dc:creator><slash:comments>14</slash:comments><comments>http://www.eggxpert.com/forums/thread/100438.aspx</comments><wfw:commentRss>http://www.eggxpert.com/forums/commentrss.aspx?SectionID=26247&amp;PostID=100438</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;&lt;font size="3"&gt;Pre-Installation&lt;/font&gt;&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;Basics&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://en.wikipedia.org/wiki/Linux" target=_blank target="_blank"&gt;What is Linux?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://en.wikipedia.org/wiki/Open_source" target=_blank target="_blank"&gt;What is Open Source?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://en.wikipedia.org/wiki/GPL" target=_blank target="_blank"&gt;What is the Open Source General Public License (GPL)&lt;/a&gt; &lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.netflix.com/Movie/Revolution_OS/60025132" target=_blank target="_blank"&gt;Revolution OS ( Linux the movie! )&amp;nbsp;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://thinkthick.blogspot.com/2007/07/confessions-of-linux-fan-10-things-you.html" target=_blank target="_blank"&gt;10 Things You Need To Know Before Switching To Linux&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://youtube.com/watch?v=E4Fbk52Mk1w" target=_blank target="_blank"&gt;Compiz Fusion Linux Desktop Video&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://widefox.pbwiki.com/Memory" target=_blank target="_blank"&gt;Maximum RAM Supported on 32bit and 64bit Linux&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://en.wikipedia.org/wiki/Linux_distribution" target=_blank target="_blank"&gt;What is a Linux Distribution?&amp;nbsp; &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://distrowatch.com/dwres.php?resource=major" target=_blank target="_blank"&gt;Top 10 Most Popular Linux Distributions&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://apcmag.com/node/5162/" target=_blank target="_blank"&gt;Linux Multi-Booting Guide&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.aboutdebian.com/install4.htm" target=_blank title="http://www.aboutdebian.com/install4.htm" target="_blank"&gt;Pretty Extensive HOWTO install guide for Debian Etch&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;Hardware Compatibility&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://tldp.org/HOWTO/Hardware-HOWTO/" target=_blank target="_blank"&gt;Hardware Compatibility List (HOWTO)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.linuxhardware.org/" target=_blank target="_blank"&gt;Linux Hardware.org&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.phoronix.com/" target=_blank target="_blank"&gt;Phoronix Linux Compatibility Hardware Reviews&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Wireless Networking&lt;/b&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Wireless.html" target=_blank target="_blank"&gt;Linux Wireless LAN HOWTO&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;A href="http://ndiswrapper.sourceforge.net/joomla/" target=_blank target="_blank"&gt;NDISwrapper&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Linux Ports&lt;/b&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www-128.ibm.com/developerworks/power/library/pa-linuxps3-1/" target=_blank target="_blank"&gt;Linux for the Playstation 3 (IBM Guide)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.terrasoftsolutions.com/products/ydl/" target=_blank target="_blank"&gt;Yellow Dog Linux Homepage (PS3, Apple PowerPC)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.free60.org/" target=_blank target="_blank"&gt;Linux for Xbox 360 (Free 60)&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.linuxdevices.com/articles/AT7466555948.html" target=_blank target="_blank"&gt;Linux for Sega Dreamcast&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Timelines&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.levenez.com/unix/history.html#04" target=_blank target="_blank"&gt;Unix History Timeline&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://futurist.se/gldt/gldt76.png" target=_blank target="_blank"&gt;Linux Distro Timeline&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;Linux Help&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.linuxhelpforum.com/" target=_blank target="_blank"&gt;Linux Help Forum&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.linuxforums.org/" target=_blank target="_blank"&gt;Linux Forums&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.linuxquestions.org/" target=_blank target="_blank"&gt;LinuxQuestions.org&lt;/a&gt;&lt;br&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;font size="3"&gt;Post-Installation&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Getting Started&lt;/b&gt;&amp;nbsp; &lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://sct.emu.edu.tr/book/Unix_Unleashed_Internet_Edition/toc.htm" target=_blank target="_blank"&gt;Unix Unleashed (Learning the console)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.gnu.org/help/" target=_blank target="_blank"&gt;How You Can Help (GNU)!&amp;nbsp;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.linuxhelp.net/newbies/#linux" target=_blank target="_blank"&gt;Linux Help (FAQ, HOWTOs, and Guides)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://linuxgazette.net/" target=_blank target="_blank"&gt;Linux Tips and Tricks (Linux Gazette)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.us.debian.org/doc/debian-policy/" target=_blank target="_blank"&gt;Becoming a Package Maintainer (Debian Policies&amp;amp;Guidelines)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.tuxradar.com/content/linux-tips-every-geek-should-know" target=_blank target="_blank"&gt;Linux Tips Every Geek Should Know (TuxRadar)&lt;/a&gt; &lt;br&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Desktop&amp;nbsp;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://kde-look.org/" target=_blank target="_blank"&gt;Desktop Wallpapers, Gadgets, Widgets, Add-Ons, and Enhancements for KDE&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.gnome-look.org/" target=_blank target="_blank"&gt;Desktop Wallpapers, Gadgets, Widgets, Add-Ons, and Enhancements for GNOME&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://youtube.com/watch?v=DUSn-jBA3CE" target=_blank target="_blank"&gt;XGL/Compiz/Beryl Video&lt;/a&gt; &lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.opencompositing.org/" target=_blank target="_blank"&gt;OpenCompositing.org&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Servers and Services&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/514107.aspx" target=_blank target="_blank"&gt;Runbook: Linux.Installing and Configuring Synergy&amp;nbsp;&lt;/a&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/503849.aspx" target=_blank target="_blank"&gt;Runbook: Linux Sharing in a LAN using NFS&lt;/a&gt; &lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;A href="http://ubuntuguide.org/wiki/Ubuntu:Feisty#SSH_Server" target=_blank target="_blank"&gt;SSH Server for Remote Login (Ubuntu)&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://tldp.org/HOWTO/html_single/Beowulf-HOWTO/" target=_blank target="_blank"&gt;Beowulf Cluster Guide&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://samba.org/samba/docs/" target=_blank target="_blank"&gt;Network Attached Storage (SAMBA) Documentation&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://httpd.apache.org/docs/" target=_blank target="_blank"&gt;Apache Webserver Installation, Configuration, and Deployment&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.mysql.org/doc/" target=_blank target="_blank"&gt;MySQL Documentation&lt;/a&gt;&amp;nbsp; &lt;A href="http://forums.mysql.com/" target=_blank target="_blank"&gt;MySQL Forums&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.squid-cache.org/" target=_blank target="_blank"&gt;HTTP, HTTPS, FTP Proxy Cache Server (Squid) Homepage&lt;/a&gt;&amp;nbsp; &lt;A href="http://www.deckle.co.za/squid-users-guide/Main_Page" target=_blank target="_blank"&gt;Squid Wiki&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;A href="http://www.worldwinddata.com/" target=_blank target="_blank"&gt;Nasa WorldWind Cache Packs&lt;/a&gt; (Use Samba to host shared Network Data)&amp;nbsp;&lt;p&gt;&lt;A href="http://www.eggxpert.com/forums/thread/58460.aspx" target=_blank target="_blank"&gt;iEgg's EggXpert Proxy Server Thread &amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Games&lt;/b&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://www.linuxgamepublishing.com/index.php?" target=_blank target="_blank"&gt;Linux Game Publishing (Retail Games)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://tuxgames.com/" target=_blank target="_blank"&gt;TuxGames (Retail Games)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://happypenguin.org/" target=_blank target="_blank"&gt;HappyPenguin.org (Free Games)&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;A href="http://www.icculus.org/lgfaq/gamelist.php" target=_blank target="_blank"&gt;Linux Gamers' Game List&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;br&gt;&lt;p&gt;&lt;b&gt;Misc&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;A href="http://ubuntu-tutorials.com/2007/05/23/folding-home-installation-configuration-automation-ubuntu-debian-rhel-fc/" target=_blank target="_blank"&gt;Folding@Home installation&lt;/a&gt;&amp;nbsp; &lt;A href="http://forum.folding-community.org/ftopic11700.html" target=_blank target="_blank"&gt;Folding@Home 3rd Party Tools&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="1" color="red"&gt;Note to Ubers: Feel free to add/remove to this post and update/fix links as necessary.&amp;nbsp;&lt;/font&gt;&lt;/p&gt;</description></item></channel></rss>