<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: The Linux Distro Thread (maybe) in Computing Advice &amp; Technology Chat</title>
    <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/25239#M1389</link>
    <description>&lt;P class="mce-p"&gt;So far, so good.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;There's been a significant improvement in the desktop's page loading as a result of shifting tmp files to RAM - at least I think the stuff described in my last post achieved this - and by telling Firefox to shift its cache into /tmp - ie, into RAM.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Subjectively, I believe that pages are loading faster. What is certain, so far, is that fewer are failing to load completely - something which drives me batty on sites like the BBC and, of course, this one. Not 100% cured, but much. much better.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;As for the EeePC, I've only bricked the poor thing once so far today.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Forums all make editing fstab look so simple, but simply leaving out a space prevents the computer booting. However, I &lt;FONT class="mce-i"&gt;think&lt;/FONT&gt; it's now got noatime built into fstab.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Just in case anyone else ends up in a similar mess after editing fstab, this is what seemed to work for me (Xubuntu 10.04, but the most helpful instructions I found were on a Fedora forum - so probably fairly general.)&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;The initial symptom was a brief warning about a non-valid something or other (Unrecognised Mount Option? too fast for me to read,) followed by a black screen giving the option to press S to stop mounting, or M for a manual recovery.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Pressing M presents one with a minimal CLI, apparently already running as root. I could get at fstab:&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;sudo nano /etc/fstab&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;("nano" seems to be the editor used in the command line interface - I think). Trouble is, whilst it was easy to read fstab, it remained stubbornly read-only.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;The solution involved a live flash drive. I'd rather naively thought that running a live session would allow me to get at system files and change them. Goodness, but I was wrong.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Trying three different distros, I was unable to mount the drive concerned (/dev/sda1, as it happens.)&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;What eventually worked was this - should anyone have the same problems getting into a bricked system.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Run a live CD/flash drive.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Open a terminal - if appropriate (PCLOS, I think), as root.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Then do:&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;sudo mkdir /mnt/temp&lt;/FONT&gt; The &lt;FONT class="mce-i"&gt;temp&lt;/FONT&gt; could be "temp" or "disk 1" or whatever you like - simply creating a mountpoint for the offending drive. Just use whatever name you used throughout the process.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;sudo mount -t ext4 /dev/sda1 /mnt/temp &lt;/FONT&gt;It seems that it needs all this information - the file system type, the drive, the location and name of the mountpoint created in the first step.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;sudo nano /mnt/temp/etc/fstab &lt;/FONT&gt;directed the live distro/terminal session, via the mountpoint created in the first step, to the required destination.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;(I found I had to use sudo to make it work - that was using a Xubuntu live flash drive.)&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;fstab now opens, and can be edited. Amazing how fast memory fades - I &lt;FONT class="mce-i"&gt;think&lt;/FONT&gt; that when you finish editing, pressing ctrl-x to exit results in a yes/no query about keeping your changes, actioned by y or n, followed by pressing Enter to retain the changes.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;The appropriate part of fstab (an uncommented-out line starting with the affected drive's UUID) was modified from the bit where it mentioned ext4&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;ext4 noatime,errors=remount-ro 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/FONT&gt;&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;(Flopped the first time when I left the space between ext4 and noatime out - fortunately it now took me a lot less time to fire up a live session and correct this. Experience is wonderful.)&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Once it was working, I added a further line, copied unashamedly from the internet, at the end of fstab:&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0 &lt;/FONT&gt;&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;(K.Mandla says that noatime will make nodiratime happen too, and as I believe K.Mandla of the eponymous site to be Awfully Bright, I believe this.)&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Following another reboot, and pleasantly surprised when it obediently started, I did the Firefox thing in about:config:&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;right-click in open space and choose a new string value -&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;&lt;FONT class="mce-i"&gt;browser.cache.disk.parent_directory &lt;/FONT&gt;and set the value to &lt;FONT class="mce-i"&gt;/tmp&lt;/FONT&gt;.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;Seems to be working...&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;When I'm not actually killing it, I'm most impressed with Xubuntu 10.04. Even with /tmp moved into RAM, its currently using about 160MiB of RAM with Firefox and System Monitor open and idle; the CPU's ambling along at about 10%. That will rise sharply when anything is actually done, of course.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;With OpenOffice installed and all updates completed, followed by &lt;FONT class="mce-i"&gt;apt-get clean&lt;/FONT&gt; - an instruction I suspect to be very familiar to EeePC fans - about 2.4GiB of hard drive space has been used. I seem to remember this is about what the default Xandros originally installed on the Eees used.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;So - an infuriating evening (should never start a project an hour before bed time), followed by, touch wood, a so-far more relaxed afternoon messing about with Linux.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;And two computers with faster- and more completely-loading internet pages to show for it.&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt;What should I &lt;FONT class="mce-s"&gt;break&lt;/FONT&gt; try next, I wonder?&lt;/P&gt;&lt;BR /&gt;
&lt;P class="mce-p"&gt; &lt;/P&gt;</description>
    <pubDate>Sun, 04 Sep 2011 16:02:54 GMT</pubDate>
    <dc:creator>otherego</dc:creator>
    <dc:date>2011-09-04T16:02:54Z</dc:date>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21314#M264</link>
      <description>Thought I'd start this one off, rather than continue on another thread.&lt;BR /&gt;
&lt;BR /&gt;
As a quick catch up for others:&lt;BR /&gt;
&lt;BR /&gt;
Have a look at Unetbootin, as a means to try out different versions of Linux, without producing numerous coasters (unwanted CDs).&lt;BR /&gt;
I haven't tried the method of installing to hard drive, only the USB flash drive method (so far).
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 08:06:54 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21314#M264</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T08:06:54Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21317#M265</link>
      <description>Otherego: Puppy was a pain to setup for wireless. Once the OS was rebooted and I created a small (64Mb) save space, I got on better.&lt;BR /&gt;
I chose Setup:Network Wizard and selected the wireless network card. From there, clicked on WPA2 (the encryption that I use, choose appropriately), then Scan. Select your network, then Advanced, followed by your network key.&lt;BR /&gt;
It took a few attempts, but this is written in Puppy, Seamonkey browser on a wireless network - booted from a flash drive, with the previously mentioned software &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
Time to put some add-ons onto Seamonkey to stop those flamon' feeBay ads. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
EJ
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 09:41:48 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21317#M265</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T09:41:48Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21324#M266</link>
      <description>I used Seamonkey for a while a bit back and found it would take quite a few Firefox addons. Have a try.
&lt;CENTER&gt;&lt;BR /&gt;
&lt;HR size="4" width="550" color="#CEFF00" /&gt;&lt;BR /&gt;
&lt;A href="http://members.ebay.co.uk/aboutme/grumpy-cook"&gt;&lt;BR /&gt;
&lt;IMG src="http://www.grumpycook.me.uk/grumpylogo.jpg" border="0" /&gt;&lt;BR /&gt;
&lt;/A&gt; &lt;BR /&gt;
&lt;FONT face="Verdana"&gt;&lt;FONT size="1"&gt;&lt;EM&gt;Click on logo or &lt;FONT size="2"&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;m&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;e&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; for free Apps, Utilities and Antivirus Removal Tools&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 09:53:15 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21324#M266</guid>
      <dc:creator>grumpy-cook</dc:creator>
      <dc:date>2009-04-09T09:53:15Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21328#M267</link>
      <description>Done and dusted - onto another Distro now :-)
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 10:08:05 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21328#M267</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T10:08:05Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21332#M268</link>
      <description>Thanks for the suggestions, ej. I'll have a go a little later.&lt;BR /&gt;
&lt;BR /&gt;
Great idea, starting the new thread. There seems to be an increasing interest in Linux, and it would be useful to have a common meeting-point for queries.&lt;BR /&gt;
&lt;BR /&gt;
Even for a computer "newbie" it's a lot of fun, and offers useful practical options for members of an internet-based community like e-bay's.&lt;BR /&gt;
&lt;BR /&gt;
I managed to add NoScript and Addblock Plus to Seamonkey with no problems, but it wouldn't accept Flashblock. Yet.</description>
      <pubDate>Thu, 09 Apr 2009 11:06:32 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21332#M268</guid>
      <dc:creator>otherego</dc:creator>
      <dc:date>2009-04-09T11:06:32Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21338#M269</link>
      <description>There is a release of Flashblock specifically for Seamonkey.&lt;BR /&gt;
&lt;BR /&gt;
https://addons.mozilla.org/en-US/seamonkey/addon/433
&lt;CENTER&gt;&lt;BR /&gt;
&lt;HR size="4" width="550" color="#CEFF00" /&gt;&lt;BR /&gt;
&lt;A href="http://members.ebay.co.uk/aboutme/grumpy-cook"&gt;&lt;BR /&gt;
&lt;IMG src="http://www.grumpycook.me.uk/grumpylogo.jpg" border="0" /&gt;&lt;BR /&gt;
&lt;/A&gt; &lt;BR /&gt;
&lt;FONT face="Verdana"&gt;&lt;FONT size="1"&gt;&lt;EM&gt;Click on logo or &lt;FONT size="2"&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;m&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;e&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; for free Apps, Utilities and Antivirus Removal Tools&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:10:23 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21338#M269</guid>
      <dc:creator>grumpy-cook</dc:creator>
      <dc:date>2009-04-09T11:10:23Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21341#M270</link>
      <description>I use an RSS feed on my toolbar to http://distrowatch.com/ - loads of info. and I stumbled upon (sic) a distro that specifically mentions EeePC (though can't remember which one :-p)&lt;BR /&gt;
Not sure about Seamonkey, or any benefits over 'raw' Firefox. If only Opera would catch up on the add-ons :-)
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:28:50 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21341#M270</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T11:28:50Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21345#M271</link>
      <description>OMG this place is full of geeks.&lt;BR /&gt;
&lt;BR /&gt;
:-p&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Runs &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;HR color="#AA0000" /&gt;Hangman images and links to a few youtubes &amp;amp; games.&lt;A href="http://members.ebay.co.uk/aboutme/countess_vlad" target="_blank"&gt;&lt;IMG src="http://pics.ebaystatic.com/aw/pics/uk/aboutme-small.gif" border="0" /&gt;&lt;/A&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:32:09 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21345#M271</guid>
      <dc:creator>countess_vlad</dc:creator>
      <dc:date>2009-04-09T11:32:09Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21347#M272</link>
      <description>Gentoox (media centre), so I suppose Gentoo must be worth a try ;-)
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:32:52 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21347#M272</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T11:32:52Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21351#M273</link>
      <description>C_V: :^O
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:33:23 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21351#M273</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T11:33:23Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21355#M274</link>
      <description>For Otherego: http://forum.eeeuser.com/viewforum.php?id=15
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:37:15 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21355#M274</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T11:37:15Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21360#M275</link>
      <description>Wannabe geeks, too!&lt;BR /&gt;
&lt;BR /&gt;
We really appreciate the help, all of you.</description>
      <pubDate>Thu, 09 Apr 2009 11:37:53 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21360#M275</guid>
      <dc:creator>otherego</dc:creator>
      <dc:date>2009-04-09T11:37:53Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21363#M276</link>
      <description>Getting close to Nirvana now, using the aforementioned utility, I can see how easy it is to make up a multi-boot Linux Distro Flash Drive :-)
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 11:48:23 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21363#M276</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T11:48:23Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21368#M277</link>
      <description>And the odd joker as well:&lt;BR /&gt;
&lt;BR /&gt;
A woman goes to her doctor's office, to&lt;BR /&gt;
discuss a strange development. &lt;BR /&gt;
She has discovered a green spot on the&lt;BR /&gt;
inside of each thigh. They won't&lt;BR /&gt;
wash off, they won't scrape off, and&lt;BR /&gt;
they seem to be getting worse. &lt;BR /&gt;
&lt;BR /&gt;
The doctor assures her he'll get to the&lt;BR /&gt;
bottom of the problem,  tells her not to worry   &lt;BR /&gt;
until he gets the tests back. &lt;BR /&gt;
&lt;BR /&gt;
A few days later, the woman's phone&lt;BR /&gt;
rings.. Much to her relief, it's the doctor. &lt;BR /&gt;
She immediately begs to know what's&lt;BR /&gt;
causing the  spots. The doctor says, 'You're perfectly&lt;BR /&gt;
healthy--there' s no problem. But I'm wondering, was  &lt;BR /&gt;
your boyfriend that Harley guy in the waiting room?' &lt;BR /&gt;
&lt;BR /&gt;
The woman stammers, 'Why, Yes, but how&lt;BR /&gt;
did you know?' &lt;BR /&gt;
 &lt;BR /&gt;
Tell him his earrings aren't real gold.&lt;BR /&gt;
&lt;BR /&gt;
See y'all later. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Thu, 09 Apr 2009 14:00:02 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21368#M277</guid>
      <dc:creator>nazmatazz42</dc:creator>
      <dc:date>2009-04-09T14:00:02Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21371#M278</link>
      <description>Well, that's done for our serious, geekish Linux thread. What don't people understand about "On A Lighter Note"
&lt;CENTER&gt;&lt;BR /&gt;
&lt;HR size="4" width="550" color="#CEFF00" /&gt;&lt;BR /&gt;
&lt;A href="http://members.ebay.co.uk/aboutme/grumpy-cook"&gt;&lt;BR /&gt;
&lt;IMG src="http://www.grumpycook.me.uk/grumpylogo.jpg" border="0" /&gt;&lt;BR /&gt;
&lt;/A&gt; &lt;BR /&gt;
&lt;FONT face="Verdana"&gt;&lt;FONT size="1"&gt;&lt;EM&gt;Click on logo or &lt;FONT size="2"&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;m&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;e&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; for free Apps, Utilities and Antivirus Removal Tools&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 14:14:46 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21371#M278</guid>
      <dc:creator>grumpy-cook</dc:creator>
      <dc:date>2009-04-09T14:14:46Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21373#M279</link>
      <description>Yep, didn't even read. Damn C,Q&amp;amp;A posters! X-(
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Thu, 09 Apr 2009 14:18:49 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21373#M279</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-09T14:18:49Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21378#M280</link>
      <description>Puppy Linux worked fine for me, although if I lowered the screen resolution, the bottom bar was off screen, and opened SeaMonkey pages would also be off the screen.&lt;BR /&gt;
&lt;BR /&gt;
Basically the screen would be cropped and not resized.&lt;BR /&gt;
&lt;BR /&gt;
I'll give it another try now.
&lt;BR /&gt;&lt;HR /&gt;&lt;CENTER&gt;&lt;IMG src="http://i279.photobucket.com/albums/kk160/munchkins_pics/ccr.png" /&gt;&lt;/CENTER&gt;</description>
      <pubDate>Fri, 10 Apr 2009 00:24:34 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21378#M280</guid>
      <dc:creator>*_munchkin_*</dc:creator>
      <dc:date>2009-04-10T00:24:34Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21382#M281</link>
      <description>Puppy Linux works fine, and the network connection is easy to establish. The only problem so far, is that the screen resolution is stuck at 1600 x 1200, although I chose a lower resolution from the xorg setup menu?
&lt;BR /&gt;&lt;HR /&gt;&lt;CENTER&gt;&lt;IMG src="http://i279.photobucket.com/albums/kk160/munchkins_pics/ccr.png" /&gt;&lt;/CENTER&gt;</description>
      <pubDate>Fri, 10 Apr 2009 01:06:02 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21382#M281</guid>
      <dc:creator>*_munchkin_*</dc:creator>
      <dc:date>2009-04-10T01:06:02Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21386#M282</link>
      <description>Last year I was using Mandriva, which I found to be a very good distro with an excellent GUI incorporating Compiz. As I run a server though, I changed over to CentOS (server edition with no GUI) which is more appropriate. Having to run without a GUI has taught me a fair bit about Linux.&lt;BR /&gt;
&lt;BR /&gt;
In both cases though, Webmin has proved an invaluable tool and I wouldn't want to run Linux without it. For those who don't know Webmin is a browser-accessible administration panel. It allows you to do all sorts of tasks on your Linux installation including disk and partition management, networking, package install, uninstall and update, setting up cron jobs and boot jobs and hardware management. It has a traditional tree based file manager and makes Samba admin quite easy. There's lots more too and you don't need to be sudo-ing this and su-ing that all the time.
&lt;CENTER&gt;&lt;BR /&gt;
&lt;HR size="4" width="550" color="#CEFF00" /&gt;&lt;BR /&gt;
&lt;A href="http://members.ebay.co.uk/aboutme/grumpy-cook"&gt;&lt;BR /&gt;
&lt;IMG src="http://www.grumpycook.me.uk/grumpylogo.jpg" border="0" /&gt;&lt;BR /&gt;
&lt;/A&gt; &lt;BR /&gt;
&lt;FONT face="Verdana"&gt;&lt;FONT size="1"&gt;&lt;EM&gt;Click on logo or &lt;FONT size="2"&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;m&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;e&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; for free Apps, Utilities and Antivirus Removal Tools&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/CENTER&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:45:52 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21386#M282</guid>
      <dc:creator>grumpy-cook</dc:creator>
      <dc:date>2009-04-10T06:45:52Z</dc:date>
    </item>
    <item>
      <title>The Linux Distro Thread (maybe)</title>
      <link>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21389#M283</link>
      <description>For purists, Webmin is a "no-no" due to security concerns but I have to say it's real handy &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Generally, there are a few gotchas with it though, so care is needed (for example: mail handling with openSuse, if I recall correctly).
&lt;BR /&gt;&lt;HR /&gt;&lt;BR /&gt;
&lt;CENTER&gt;&lt;BR /&gt;
&lt;IMG src="http://i36.tinypic.com/2rrxt1s.jpg" border="0" alt="(c) E Jonsen" /&gt;&lt;BR /&gt;Just skimming the surface&lt;BR /&gt;&lt;BR /&gt;
&lt;FONT size="-2"&gt;Opinions/guidance expressed are intended to benefit the reader (mostly) but no responsibility should be assumed for the accuracy and no warranty is implied/expressed or given - so eBay may pull this post&lt;/FONT&gt;&lt;BR /&gt;
&lt;/CENTER&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:24:35 GMT</pubDate>
      <guid>https://community.ebay.co.uk/t5/Computing-Advice-Technology-Chat/The-Linux-Distro-Thread-maybe/m-p/21389#M283</guid>
      <dc:creator>ej-solutions</dc:creator>
      <dc:date>2009-04-10T09:24:35Z</dc:date>
    </item>
  </channel>
</rss>

