<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-7347428118982274070</atom:id><lastBuildDate>Tue, 13 Oct 2009 00:30:37 +0000</lastBuildDate><title>Thomas Skariah's Blog</title><description></description><link>http://t-skariah.blogspot.com/</link><managingEditor>noreply@blogger.com (Thomas Skariah)</managingEditor><generator>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-7347428118982274070.post-134408584119364631</guid><pubDate>Sun, 20 Apr 2008 21:27:00 +0000</pubDate><atom:updated>2008-05-04T21:53:33.250+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>persistence</category><category domain='http://www.blogger.com/atom/ns#'>USB</category><category domain='http://www.blogger.com/atom/ns#'>Hardy Heron</category><category domain='http://www.blogger.com/atom/ns#'>Ubuntu</category><title>Ubuntu 8.04 (Hardy Heron) on USB stick (pen drive) - persistent</title><description>My USB drive now runs the latest Ubuntu 8.04 Hardy Heron (Release candidate).&lt;br /&gt;&lt;br /&gt;I had to make 2 changes to the initrd.gz, to make it persistent.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I followed the instructions mentioned in: &lt;a href="http://www.pendrivelinux.com/2007/09/27/making-ubuntu-710-casper-persistent/"&gt;Making a casper persistent Ubuntu 7.10 (Gutsy Gibbon)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;additionally, I had to make a change in the scripts/casper&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;pre&gt;406:  mount ${cowdevice} -t ${cow_fstype} -o rw,noatime,mode=755 /cow || panic "Can not mount $cowdevice on /cow"&lt;/pre&gt;to&lt;br /&gt;&lt;pre&gt;406:  mount ${cowdevice} -t ${cow_fstype} -o rw,noatime /cow || panic "Can not mount $cowdevice on /cow"&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;with mode=755, I got an "Invalid argument" error in the casper.log&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;How to make Ubuntu 8.04 (Hardy Heron) persistent on USB stick (pen drive)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Follow the instructions &lt;a href="http://www.pendrivelinux.com/2007/09/28/usb-ubuntu-710-gutsy-gibbon-install/"&gt;here&lt;/a&gt; to partition and format the USB stick.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a title="Download the Ubuntu 8.04 USB conversion script" href="http://www.pendrivelinux.com/downloads/Ub8convert.exe" target="_blank"&gt;Download&lt;/a&gt; and launch &lt;strong&gt;Ub8convert.exe&lt;/strong&gt;, a &lt;strong&gt;Ubuntu8&lt;/strong&gt; folder is created&lt;/li&gt;&lt;li&gt;&lt;a title="Ubuntu 8.04 Hardy Heron download" href="http://releases.ubuntu.com/releases/8.04/ubuntu-8.04-desktop-i386.iso" target="_blank"&gt;Download&lt;/a&gt; the &lt;strong&gt;Ubuntu 8.04 ISO&lt;/strong&gt; and place it in the &lt;strong&gt;Ubuntu8&lt;/strong&gt; folder&lt;/li&gt;&lt;li&gt;From the &lt;strong&gt;Ubuntu8&lt;/strong&gt; folder, click &lt;strong&gt;fixu.bat&lt;/strong&gt; and follow the onscreen instructions&lt;/li&gt;&lt;li&gt;Once the &lt;strong&gt;fixu.bat&lt;/strong&gt; script has finished, follow the instructions &lt;a href="http://www.pendrivelinux.com/2007/09/27/making-ubuntu-710-casper-persistent/"&gt;here&lt;/a&gt; to edit the initrd.gz file and make the 2 changes mentioned above.&lt;/li&gt;&lt;li&gt;copy the new intird.gz file to the USB-Ubuntu folder under the Ubuntu8 folder.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;navigate to the new &lt;strong&gt;USB-Ubuntu&lt;/strong&gt; folder inside the &lt;strong&gt;Ubuntu8&lt;/strong&gt; folder&lt;/li&gt;&lt;li&gt;remove the file named isolinux.cfg. Edit the syslinux.cfg as shown below.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Copy all of the files from "within" the &lt;strong&gt;USB-Ubuntu&lt;/strong&gt; folder to the "root" of your flash drive (not to a subfolder)&lt;/li&gt;&lt;li&gt;Now navigate to the root of your USB flash drive and click &lt;strong&gt;makeboot.exe&lt;/strong&gt; and follow the onscreen instructions&lt;/li&gt;&lt;li&gt;Once the script has finished, restart your PC and set your BIOS or Boot Menu to boot from the USB device&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;syslinux.cfg&lt;/span&gt;&lt;br /&gt;&lt;pre&gt;MENU TITLE Ubuntu 8.04 on USB BOOT MENU&lt;br /&gt;DEFAULT vesamenu.c32&lt;br /&gt;PROMPT 1&lt;br /&gt;LABEL live&lt;br /&gt;menu label ^Try Ubuntu without any change to your computer&lt;br /&gt;kernel /casper/vmlinuz&lt;br /&gt;append  file=/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.gz quiet splash --&lt;br /&gt;LABEL usb&lt;br /&gt;menu label ^Persistent Ubuntu&lt;br /&gt;kernel /casper/vmlinuz&lt;br /&gt;append  file=/preseed/ubuntu.seed boot=casper initrd=initrd.gz quiet splash --&lt;br /&gt;LABEL live-install&lt;br /&gt;menu label ^Install Ubuntu&lt;br /&gt;kernel /casper/vmlinuz&lt;br /&gt;append  file=/preseed/ubuntu.seed boot=casper only-ubiquity initrd=/casper/initrd.gz quiet splash --&lt;br /&gt;LABEL check&lt;br /&gt;menu label ^Check filesystem for defects&lt;br /&gt;kernel /casper/vmlinuz&lt;br /&gt;append  boot=casper integrity-check initrd=/casper/initrd.gz quiet splash --&lt;br /&gt;LABEL memtest&lt;br /&gt;menu label Test ^memory&lt;br /&gt;kernel /install/mt86plus&lt;br /&gt;append -&lt;br /&gt;LABEL hd&lt;br /&gt;menu label ^Boot from first hard disk&lt;br /&gt;localboot 0x80&lt;br /&gt;append -&lt;br /&gt;MENU BACKGROUND backg.png&lt;br /&gt;timeout 150&lt;br /&gt;menu color title        1;31;49    #eeff1010 #cc553333 std&lt;br /&gt;menu color sel            7;37;40    #ffffffff #99660000 all&lt;br /&gt;menu color border        30;44      #ffffffff #00000000 std&lt;br /&gt;menu color pwdheader    31;47      #eeff1010 #20ffffff std&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;UPDATE: The problem with the initrd.gz would be fixed in (8.04.01) of Ubuntu. Here is the related &lt;a href="https://bugs.launchpad.net/ubuntu/+source/casper/+bug/219192"&gt;bug&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7347428118982274070-134408584119364631?l=t-skariah.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://t-skariah.blogspot.com/2008/04/ubuntu-804-hardy-heron-on-usb.html</link><author>noreply@blogger.com (Thomas Skariah)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>8</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-7347428118982274070.post-683839975840475103</guid><pubDate>Tue, 08 Apr 2008 20:52:00 +0000</pubDate><atom:updated>2008-04-23T21:30:26.000+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>persistence</category><category domain='http://www.blogger.com/atom/ns#'>USB</category><category domain='http://www.blogger.com/atom/ns#'>Ubuntu</category><title>My new PC</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/__yhIucXCneI/R_vcYZX4fJI/AAAAAAAAANU/quLL6Y95SXQ/s1600-h/newpc.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/__yhIucXCneI/R_vcYZX4fJI/AAAAAAAAANU/quLL6Y95SXQ/s320/newpc.jpg" alt="" id="BLOGGER_PHOTO_ID_5186981707533286546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt; After a long long break, I finally got some time for  some new experiments (ok, it is not so new anymore). But this is something I always wanted to have.&lt;br /&gt;&lt;br /&gt;This is my new PC with Ubuntu 7.10, on a USB memory stick. Thanks to the numerous detailed tutorial on the net, the installation was very easy. I did have problems setting up my WLAN, which was fixed by disabling the switch in the BIOS.&lt;br /&gt;&lt;br /&gt;Another problem I have is with the internal SD/MMC reader. Ubuntu seems to recognize the MMC, but not the SD card. I am still searching for a solution.&lt;br /&gt;&lt;br /&gt;But all the other devices on my notebook work. And I can now carry a whole system, will all my applications, data, and  my settings; literally in my pocket. But of-course, there some disadvantages to.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I will still need access to a computer or notebook to use my "Pocket Computer (PC)". Additionally, the notebook should also support "Boot from USB".&lt;/li&gt;&lt;li&gt;It is a bit slow, as compared to running it from hard-disk.&lt;/li&gt;&lt;li&gt;The life of the flash memory is very limited. For an average usage it might last for approx. 10 years. But when one runs an OS on USB, this will be lot less.&lt;/li&gt;&lt;/ul&gt;But thats the small price you pay for the convenience.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7347428118982274070-683839975840475103?l=t-skariah.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://t-skariah.blogspot.com/2008/04/my-new-pc.html</link><author>noreply@blogger.com (Thomas Skariah)</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/__yhIucXCneI/R_vcYZX4fJI/AAAAAAAAANU/quLL6Y95SXQ/s72-c/newpc.jpg' height='72' width='72'/><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-7347428118982274070.post-7574125189915710831</guid><pubDate>Fri, 06 Apr 2007 18:00:00 +0000</pubDate><atom:updated>2008-06-21T23:48:11.752+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>YPOPS</category><category domain='http://www.blogger.com/atom/ns#'>Yahoo</category><category domain='http://www.blogger.com/atom/ns#'>POP3</category><category domain='http://www.blogger.com/atom/ns#'>Ubuntu</category><title>YPOPS for Ubuntu.</title><description>I finally decided to replace Windows 2000 with &lt;a href="http://www.ubuntu.com/"&gt;Ubuntu&lt;/a&gt; on my good old Pentium III 600 MHz system. The installation was relatively easy. It comes with almost all applications that one would need. But there are some applications that I had been using with Windows for a long time and had developed a strong liking, but which is not available with Ubuntu. One such application is &lt;a href="http://ypopsemail.com/"&gt;YPOPS!&lt;/a&gt;. YPOPS! was a great relief after Yahoo decided to discontinue free POP3 access to the web mail account.&lt;br /&gt;&lt;br /&gt;After searching for some time, I realised there were others who are faced with the same problem as me. And there were people who have already provided some form of porting to the other platforms including Linux.&lt;br /&gt;&lt;br /&gt;caualprogrammers and onemyndseye have provided &lt;a href="http://ypopsemail.com/index.php?name=PNphpBB2&amp;amp;file=viewtopic&amp;amp;p=11000"&gt;ypops.compile&lt;/a&gt; script, that would download the sources and install the necessary packages (cvs, curl, libcurl3-dev) and would finally compile the source into binary.&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span class="name"&gt;&lt;strong&gt;&lt;/strong&gt; &lt;/span&gt;caualprogrammers has also provided the init  and install scripts in his &lt;a href="http://www.freewebs.com/casualprogrammer/myblog.htm?blogentryid=1168407"&gt;blog&lt;/a&gt; for (SuSE) Linux.&lt;br /&gt;&lt;br /&gt;I decided I would build a package, at-least for the Ubuntu (and other debian based OS) users. You could download it from here: &lt;a href="http://www.geocities.com/t_skariah/ypops/"&gt;ypops_0.8.8-1_i386.deb&lt;/a&gt;. I have additionally changed the code a little, so that the lock files are created in the log directory instead of the default directory, which is necessary if it should start automatically at start-up.&lt;br /&gt;&lt;br /&gt;UPDATE (12.09.2007):&lt;br /&gt;I have built a new &lt;a href="http://www.geocities.com/t_skariah/ypops/" rel="nofollow"&gt;package &lt;/a&gt; of YPOPS! 0.9.5 for Debian-i386 platform. But since there are new changes committed after this release, I assume it is not very stable.&lt;br /&gt;&lt;br /&gt;UPDATE (04.10.2007):&lt;br /&gt;YPOPs! 0.9.5.1 port for Ubuntu is now available. Please check the &lt;a href="http://www.geocities.com/t_skariah/ypops/"&gt;instructions&lt;/a&gt; for installation. Features added:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;GUI config tool&lt;/li&gt;&lt;li&gt;Automatic update notification&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;UPDATE (03.06.2008)&lt;br /&gt;The server hosting the repository is currently down. I apologize for the inconvenience. I will post, as soon as I get it running again.&lt;br /&gt;&lt;br /&gt;UPDATE (19.06.2008)&lt;br /&gt;The repository is up again. Please note that the URL has changed.&lt;br /&gt;&lt;br /&gt;UPDATE (21.06.2008)&lt;br /&gt;Added support for amd64 (64 bit) platform. Follow the same instruction as for i386, the OS would automatically select the right package.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7347428118982274070-7574125189915710831?l=t-skariah.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://t-skariah.blogspot.com/2007/04/ypops-for-ubuntu.html</link><author>noreply@blogger.com (Thomas Skariah)</author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>75</thr:total></item></channel></rss>