<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4947158320195449074</id><updated>2011-04-21T17:26:48.959-04:00</updated><title type='text'>Schmots's time with the Nokia Internet Tablet</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-5611953933036436871</id><published>2008-04-07T08:05:00.003-04:00</published><updated>2008-04-07T08:09:13.470-04:00</updated><title type='text'>Dual Booting OS 2008 Step 3: The Actual Dual boot</title><content type='html'>Ok, so now we have root access, we have a partitioned mmc/sd card.. we are ready for the cool part.&lt;br /&gt;&lt;br /&gt;First things first, either plug in your tablet or make sure you have a full battery, you don't want the power to go out during this part.&lt;br /&gt;&lt;br /&gt;From the tablet you need to download this;&lt;br /&gt;&lt;a href="http://fanoush.wz.cz/maemo/initfs_flasher.tgz"&gt;http://fanoush.wz.cz/maemo/initfs_flasher.tgz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(for more information about fanoush's work and info on this flasher, see &lt;a href="http://fanoush.wz.cz/maemo/#initfs" target="_blank"&gt;http://fanoush.wz.cz/maemo/#initfs&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;By default the tablet will want to save to your Documents folder in your /home directory (/home/user/MyDocs/.documents/)&lt;br /&gt;&lt;br /&gt;Don't save it on your card, not because that will cause problems, but because you can't execute applications by default from your cards. This program is going to replace the initfs section of the device with the dual boot, but first lets look at that extension...tgz&lt;br /&gt;&lt;br /&gt;This means that this is a tar file, compressed with gzip compression.. if it read tar.gz it would mean the same thing. In linux file extensions don't mean anything. They are just there to help the user know what to do with the file.&lt;br /&gt;&lt;br /&gt;We are going to use the version of tar that comes with the tablet to open this file. This will probably be the last time we use that version, more on this later.&lt;br /&gt;&lt;br /&gt;In xterm as root run the following;&lt;br /&gt;&lt;br /&gt;cd /home/user/MyDocs/.documents&lt;br /&gt;tar xvzf initfs_flasher.tgz&lt;br /&gt;cd initfs_flasher&lt;br /&gt;./initfs_flash&lt;br /&gt;&lt;br /&gt;The first command (cd) Changes Directory to your documents folder. The "." before a file or directory means its a hidden file and won't show up in a listing with out the -a switch (google for "manpage ls" for more info). The second command opens the archive file the switch (xvzf) means X=extract V=verbose(more info) Z=gzip format F=specified file. Then we are switching into the directory that we just extracted, and finally we are running a local application (./). Unix uses something called your "PATH" (try "echo $PATH" at xterm). The path is where the system looks for executables. Since your documents folder isn't in your path, we tell the system to run the local app directly (./ means "here" ../ means "one level above me" ../../ "two levels above" and so on and so forth)&lt;br /&gt;&lt;br /&gt;Read the applications instructions carefully, but you should be safe answering yes to all the questions.&lt;br /&gt;&lt;br /&gt;When it says press enter to reboot.. do so. If upon boot for some strange reason your highlighted selection is not "internal flash" hit the menu key, and then the up key to highlight it, then hit the square button. If it is highlighted, you can either wait the 30 seconds for the menu to finish, or hit the menu key, then the square key.&lt;br /&gt;&lt;br /&gt;Congratulations!  You can now dual-boot, but dual boot to what?  Continued Next Time.&lt;br /&gt;&lt;br /&gt;Just kidding.. man wouldn't that have sucked!&lt;br /&gt;&lt;br /&gt;We are going to copy the whole rootfs over to the card. Remember when I talked about that other version of tar.. well here it is. We are going to use GNUtar.. it has more features.. though it will look and feel pretty much the same.&lt;br /&gt;&lt;br /&gt;To install, open Xtem, and run this command&lt;br /&gt;&lt;br /&gt;apt-get -d install tar&lt;br /&gt;&lt;br /&gt;Apt-get is the front end for dpkg, the debian package managment software, and we are telling it to fetch and install tar...well almost. See that -d? That means download only. In this case that is 147% important! Without that it will delete your whole system and you will have to flash and start over. Don't be worried though, just double check for the -d before you hit enter.&lt;br /&gt;&lt;br /&gt;If you made sure the -d was there you can ignore the warnings and go ahead and enter "Y".&lt;br /&gt;&lt;br /&gt;Once it has downloaded, we will run the following commands as root in an xterm.&lt;br /&gt;&lt;br /&gt;cd /var/cache/apt/archives/&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; mkdir /tar-temp/&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; dpkg -x tar*.deb /tar-temp/&lt;br /&gt;&lt;br /&gt;Ok, you already know what the cd command does. The mkdir command makes a new directory where you tell it to. This new directory we are making is called tar-temp, and it is being made in the top level directory "/" also called the root. The last command uses the debian package management software to extract the tar program to that directory.&lt;br /&gt;&lt;br /&gt;Now we need to mount our partitions to locations that we can copy over the files&lt;br /&gt;&lt;br /&gt;Again, as root in an xterm;&lt;br /&gt;&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt;insmod /mnt/initfs/lib/modules/2.6.18-omap1/mbcache.ko  (this is .21-omapl in OS2008)&lt;br /&gt;insmod /mnt/initfs/lib/modules/2.6.18-omap1/ext2.ko&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt;mkdir /opt/&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; mount /dev/mmcblk0p2 /opt&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; mkdir /floppy/&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt;mount -t jffs2 /dev/mtdblock4 /floppy&lt;br /&gt;&lt;br /&gt;Now to explain those commands.&lt;br /&gt;&lt;br /&gt;Insmod is a command to load a module into the running kernel space. We load the two modules needed to mount an ext2 partition. Then we make an /opt directory, and mount the ext2 second partition internal card to that directory. Then we make a directory called /floppy and mount the running rootfs to it.&lt;br /&gt;&lt;br /&gt;Now for the magic.&lt;br /&gt;&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt;/tar-temp/bin/tar cf - -C /floppy . | /tar-temp/bin/tar xvf - -C /opt&lt;br /&gt;&lt;br /&gt;*editors note.. the above command is one long line.  On some screens it gets cut into two lines.  I blame blogspot :-)&lt;br /&gt;&lt;br /&gt;That command will use our new version of tar to properly copy everything over to&lt;br /&gt;our card's partition.  The tall bar in the middle is called a pipe.  It is located&lt;br /&gt;on the finger keyboard of the third tab fifth key from the right.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;again root with xterm;&lt;br /&gt;&lt;br /&gt;umount /opt&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; umount /floppy&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; chroot /mnt/initfs cal-tool --set-root-device ask:immc2&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt; shutdown -r now&lt;br /&gt;&lt;br /&gt;What this does is unmounts our card and rootfs. The chroot sets a little jailed system of our initfs and the rest of it adjusts the boot menu to default to the internal card's boot. Finally we reboot with the shutdown.&lt;br /&gt;&lt;br /&gt;When the system comes back up the internal card will be selected. You can either wait the 30 seconds for the boot to start or hit the menu key, then the square key to start it right along.&lt;br /&gt;&lt;br /&gt;Ok, a few things to be aware of running off your internal card. Sometimes because of how the card works, your system can get a little off... if you notice items missing from menus or it's just not working right, reboot to the internal flash and run this command as root from the xterm&lt;br /&gt;&lt;br /&gt;fsck -fy /dev/mmcblk0p2&lt;br /&gt;&lt;br /&gt;The fsck command is a file system checker, the -fy is a force run saying yes to all fixes.&lt;br /&gt;&lt;br /&gt;These are the only other caveats I have to booting off the internal card. First, if you hook up to usb, only the external card will be usable on the pc and the internal card will not remount for use once you disconnect without a reboot. If you have to do alot of usb work, boot off the internal flash for that time. Second, sometimes the system may lock up a bit.. just pull the battery out.. boot to internal flash, run the fsck then reboot to the card and all will be well.&lt;br /&gt;&lt;br /&gt;Enjoy&lt;br /&gt;&lt;br /&gt;*all procedures are attempted at your own risk.  I claim no responsibility if you ruin your tablet.&lt;br /&gt;&lt;br /&gt;Props..&lt;br /&gt;&lt;a href="http://www.internettablettalk.com/"&gt;www.internettablettalk.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://maemo.org/maemowiki/HowTo_EASILY_Boot_From_MMC_card"&gt;http://maemo.org/maemowiki/HowTo_EASILY_Boot_From_MMC_card&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-5611953933036436871?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/5611953933036436871/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=5611953933036436871' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5611953933036436871'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5611953933036436871'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/04/dual-booting-os-2008-step-2-actual-dual.html' title='Dual Booting OS 2008 Step 3: The Actual Dual boot'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-6844412501874576100</id><published>2008-04-04T13:00:00.005-04:00</published><updated>2008-04-04T14:28:52.411-04:00</updated><title type='text'>Dual Booting OS 2008 Step 2: Partitioning</title><content type='html'>First you need to make sure you have root access, which was described in my previous post. Now we need to partition the ssd/mc card in order to be able to handle both the OS(Operating System, in this case also called the "*rootfs", and storage space for your music/videos etc.&lt;br /&gt;&lt;br /&gt;This entire process can be done from your tablet.  I always do it from my n800, you can to.  It's easy.&lt;br /&gt;&lt;br /&gt;Step 1: Unmount the mmc/sd&lt;br /&gt;&lt;br /&gt;Since your already root in an xterm (right???) we are going to "unmount" the card. Everything in linux is a file, harddrives, soundcards, your mmc/sd.. all files. Unix "mounts" certain devices to be seen in different locations and to make them accessible. How ever we want to make major changes to that card, so we don't want the OS controlling it.&lt;br /&gt;_&lt;br /&gt;umount /dev/mmcblk0p1&lt;br /&gt;or&lt;br /&gt;umount /media/mmc2&lt;br /&gt;&lt;br /&gt;Now to explain what those mean.&lt;br /&gt;&lt;br /&gt;umount is the command that removes a mounted location from the system.&lt;br /&gt;&lt;br /&gt;/dev/mmcblk0p1 is the hardware device file for the internal card partition 1&lt;br /&gt;&lt;br /&gt;mmcblk0 == internal card&lt;br /&gt;mmcblk1 == external card&lt;br /&gt;p1 == partition 1;p2 == partition 2;etc&lt;br /&gt;&lt;br /&gt;If you are in the dir anywhere, or maybe have extended memory running on the card it won't unmount.. stop playing music, cd out of the dir, turn off your extended virtual memory.. try again.&lt;br /&gt;&lt;br /&gt;Step 2: Partition the card&lt;br /&gt;&lt;br /&gt;We need some tools for formating and partitioning so we have to do two things&lt;br /&gt;&lt;br /&gt;First we have to add a new repository to our applications list.&lt;br /&gt;&lt;br /&gt;To add a repository Click&lt;br /&gt;MENU - &gt; SETTINGS -&gt; APPLICATION MANAGER&lt;br /&gt;&lt;br /&gt;Then click on the file button or the title bar of Application manager and select TOOLS -&gt; APPLICATION CATALOG &lt;br /&gt;&lt;br /&gt;We want to add a repository so click NEW.&lt;br /&gt;&lt;br /&gt;Catalog name: Maemo Repository&lt;br /&gt;Web address: http://repository.maemo.org/&lt;br /&gt;Distribution: bora&lt;br /&gt;Components: free non-free&lt;br /&gt;&lt;br /&gt;Make sure that "disabled" is unchecked&lt;br /&gt;&lt;br /&gt;Click OK, then click CLOSE&lt;br /&gt;&lt;br /&gt;Ok, now back in xterm as root&lt;br /&gt;&lt;br /&gt;apt-get install e2fsprogs&lt;br /&gt;&lt;br /&gt;now that thats installed. We are going to use sfdisk to partition the card. Sfdisk is kinda clunky and no user-friendly... however its on the tablet.&lt;br /&gt;&lt;br /&gt;Start the app with this command&lt;br /&gt;&lt;br /&gt;sfdisk -uM /dev/mmcblk0&lt;br /&gt;&lt;br /&gt;the -uM means display and accept Megabyte units, and you remember that /dev/mmcblk0 is your internal card&lt;br /&gt;&lt;br /&gt;Now once your in there you need to setup 4 partitions.. well really just two but its gonna make you set up 2 empty ones too.. don't worry it will make sense.&lt;br /&gt;&lt;br /&gt;I am going to use my card as an example, you can modify fairly easily. I have a 2 gig sd card. I am going to give 356 megs to my first partition for use by the applications for music and files and what not, and approximately 1.6 gigs for my rootfs(where the os and applications go). I am going to show all for lines of entry, then explain them.&lt;br /&gt;&lt;br /&gt;,356,6&lt;br /&gt;,,L&lt;br /&gt;,,&lt;br /&gt;,,&lt;br /&gt;&lt;br /&gt;Ok, sfdisk is configured with three items per line sepearted by ",". The first item is the starting point. We leave it blank to use default, or the next point in line. The second spot is the ending spot. In the first line I defined it to stop 356 megs into the card and in the second left it blank because I wanted to use the rest of the space. The third spot is for filesystem type. 6 is a fat16 type and L is a linux partition type(also called a type 83). The last two lines are completely empty because there is no where to start, and no where to end because there is no more space. When prompted to write the information you can type y. Don't worry about any warnings.. its an old format tool and not aware of the advances in linux.&lt;br /&gt;&lt;br /&gt;Step 3: Formating the partitions&lt;br /&gt;&lt;br /&gt;Now that our partitions are cut, we can begin to format them.  Formating a partition gives it space usable by the OS.&lt;br /&gt;&lt;br /&gt;The first partition we are going to format fat16 so that its usable by windows via usb and the tablets software can access it just like it could before you formated.&lt;br /&gt;&lt;br /&gt;*The difference between the rootfs and the initfs is that the initfs is part of your firmware, replaced by flashing. It holds the kernel, that part of the unix OS that handles everything else. The rootfs is the userspace file system. All your applications, device files, program libraries etc go here. The following command will handle this&lt;br /&gt;&lt;br /&gt;mkdosfs /dev/mmcblk0p1&lt;br /&gt;&lt;br /&gt;As you recall mmcblk0p1 is the internal card, partition 1. The second partition we will format for the rootfs a filesystem type called EXT2.&lt;br /&gt;&lt;br /&gt;mke2fs /dev/mmcblk0p2&lt;br /&gt;&lt;br /&gt;mmcblk0p2 = second partition.&lt;br /&gt;&lt;br /&gt;Now its all done. For the system to be able to recognize these partitions we have to reboot. The easiest way at this point is from the xterm using the shutdown command.&lt;br /&gt;&lt;br /&gt;shutdown -r now&lt;br /&gt;&lt;br /&gt;The -r means reboot, a -h would mean halt, or turn off. The "now" part defines when this action should happen. After reboot the first partition should operate just like the card did before the partitioning, and the second partition will be discussed in the next section&lt;br /&gt;&lt;br /&gt;** Usual props to sites I get tablet info from&lt;br /&gt;&lt;a href="http://www.internettablettalk.com/"&gt;www.internettablettalk.com&lt;/a&gt; and &lt;a href="http://www.maemo.org/"&gt;www.maemo.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Most of the information in this post was double checked from &lt;a href="http://maemo.org/maemowiki/HowTo_EASILYPartition_your_MMC_card"&gt;http://maemo.org/maemowiki/HowTo_EASILYPartition_your_MMC_card&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-6844412501874576100?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/6844412501874576100/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=6844412501874576100' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/6844412501874576100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/6844412501874576100'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/04/dual-booting-os-2008-step-2.html' title='Dual Booting OS 2008 Step 2: Partitioning'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-5466246201819242154</id><published>2008-03-31T11:12:00.004-04:00</published><updated>2008-03-31T11:41:56.750-04:00</updated><title type='text'>Dual Booting OS2008 Step 1: Root Access</title><content type='html'>The first step to being able to boot your tablet off an internal mmc/sd card is to have the rights to make these kind of changes.&lt;br /&gt;&lt;br /&gt;What is Root Access?&lt;br /&gt;&lt;br /&gt;Root(root) is the name of a unix systems master account. Like your Local administrator or Domain Admin type accounts in windows, root is the end all be all of unix rights.&lt;br /&gt;&lt;br /&gt;Why be root?&lt;br /&gt;&lt;br /&gt;There are many things that can not be done as a normal user that we will need to do in order to have these extra options.&lt;br /&gt;&lt;br /&gt;I am not going to dual boot, should I still know how to be root?&lt;br /&gt;&lt;br /&gt;Absolutely. Even if your not going to dual boot, there are many advantages to being root and having root command line abilities.&lt;br /&gt;&lt;br /&gt;The n800 is actually a debian linux system. Debian is a distribution of linux, like fedora, or mandriva or my favorite gentoo (google for LinuxMint if you want a reallllly easy ubuntu based desktop linux OS). Debians method of package management is called dpkg (debian package.. clever huh) and a front end for this is called apt. Apt is a tool for fetching and installing .deb files (the dpkg format) and all the files needed to install that file (called dependencies) on your system. Repositories are locations for your system to look online or locally to find these files.  Get it?  Good.  Moving on.&lt;br /&gt;&lt;br /&gt;Before OS2008 you had to add a terminal (a command line access to your tablet) from a new repository.  With OS2008 nokia has decided to make access to this application a default install with the OS.  Big thumbs up to Nokia on that one. However we still need access to the root level account.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 1. Install becomeroot&lt;/span&gt;&lt;br /&gt;We are going to install a package that lets you become root.. its called becomeroot :-)&lt;br /&gt;&lt;br /&gt;The repository that contains becomeroot doesn't work well with OS2008, but you can download the app by itself. From your n800 click on the following link&lt;br /&gt;&lt;br /&gt;&lt;a href="http://eko.one.pl/maemo/dists/bora/user/binary-armel/becomeroot_0.1-2_armel.deb"&gt;http://eko.one.pl/maemo/dists/bora/user/binary-armel/becomeroot_0.1-2_armel.deb&lt;/a&gt;&lt;br /&gt;&lt;a href="http://eko.one.pl/maemo/index.php?path=dists%2Fbora%2Fuser%2Fbinary-armel/becomeroot_0.1-2_armel.deb" title="becomeroot_0.1-2_armel.deb"&gt;&lt;/a&gt;&lt;br /&gt;When the options pop up click "Open", this will run the .deb file in the Application Manager and install it properly.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 2.  Gain root access&lt;/span&gt;&lt;br /&gt;Once your done with that, you need to start the xterm(The console application).&lt;br /&gt;MENU -&gt; Utilities -&gt; X Terminal&lt;br /&gt;&lt;br /&gt;From with in xterm type the following&lt;br /&gt;&lt;br /&gt;sudo gainroot&lt;br /&gt;&lt;br /&gt;That command will give you your root account. Sudo is a command that lets you run other commands as root, in this case gainroot.&lt;br /&gt;&lt;br /&gt;Do be a bit careful as root if don't know linux, as you can cause a lot of problems.&lt;br /&gt;&lt;br /&gt;Most of this info was garnered from &lt;a href="http://www.internettablettalk.com/"&gt;www.internettablettalk.com&lt;/a&gt; and &lt;a href="http://www.maemo.org/"&gt;www.maemo.org&lt;/a&gt; especially &lt;a href="http://maemo.org/maemowiki/HowTo_EASILY_BecomeRoot"&gt;http://maemo.org/maemowiki/HowTo_EASILY_BecomeRoot&lt;/a&gt;, however this doc was written to explain whats happening and update for OS2008&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-5466246201819242154?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/5466246201819242154/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=5466246201819242154' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5466246201819242154'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5466246201819242154'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/03/dual-booting-os2008-step-1-root-access.html' title='Dual Booting OS2008 Step 1: Root Access'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-7914978808703863984</id><published>2008-03-31T11:00:00.002-04:00</published><updated>2008-03-31T11:03:45.862-04:00</updated><title type='text'>OS2008 First Tweaks you should do</title><content type='html'>I am reposting some of my earlier tips because OS 2008 has changed the menu/config settings slightly.&lt;br /&gt;&lt;br /&gt;There are two things that you should tweak on your OS2008 tablet right out of the gate.&lt;br /&gt;&lt;br /&gt;1. Virtual Memory. Referred to as swap space in linux, this allows your running processes to use physical storage space as ram.&lt;br /&gt;&lt;br /&gt;To set this up, you will need a card in the internal slot. If the only card you have is the one that came with the unit, that will work, though far from ideal. I suggest at least a 512 (I have a 2gig) so that in addition to the swap, you have space files.&lt;br /&gt;&lt;br /&gt;Menu -&gt; Settings -&gt; Control Panel -&gt; Memory&lt;br /&gt;&lt;br /&gt;Select the "Virtual" tab in the Memory window.&lt;br /&gt;&lt;br /&gt;Click the "Extend Virtual Memory" check box.&lt;br /&gt;&lt;br /&gt;If you have plenty of space use the full 128 max option for the most performance. If you only have the 128 meg card, use 64 megs or 112 megs if you don't want to use the card for any storage. I recommend against the 128 meg file size on a 128 meg card. Even if you do get it to write.. it will most likely cause errors&lt;br /&gt;&lt;br /&gt;Click "OK"&lt;br /&gt;&lt;br /&gt;2. Screen - Keys Locking&lt;br /&gt;&lt;br /&gt;While you are still in the Control Panel, select the "Display" applet.&lt;br /&gt;&lt;br /&gt;There is a known bug that the screen won't blank when you lock the device unless you set both the "Brightness period" and the "Switch off display" time to be the same. Set it to what your comfortable with.&lt;br /&gt;&lt;br /&gt;Now when you press the power button then the square in the directional pad.. the screen will blank with the keys.. hit the same key combination to unlock the device.&lt;br /&gt;&lt;br /&gt;Schmots&lt;br /&gt;These and other great tips have been gathered from &lt;a href="http://www.internettablettalk.com/"&gt;www.internettablettalk.com&lt;/a&gt; and &lt;a href="http://www.maemo.org/"&gt;www.maemo.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-7914978808703863984?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/7914978808703863984/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=7914978808703863984' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/7914978808703863984'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/7914978808703863984'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/03/os2008-first-tweaks-you-should-do.html' title='OS2008 First Tweaks you should do'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-7340641443979075701</id><published>2008-03-28T08:17:00.001-04:00</published><updated>2008-03-28T09:51:57.770-04:00</updated><title type='text'>Site Needs updating</title><content type='html'>UPDATE:&lt;br /&gt;I have gotten my n800 dual booting with OS2008.  I notice a lot of new features and great things that can be done.  I will be updating the How To shortly.&lt;br /&gt;&lt;br /&gt;After upgrading from OS2007 to OS2008 I tried to follow my own instructions for dual booting.  Unfortunately in that time a lot of files have been moved or changed/renamed.  My method for dual booting is no longer valid.  I will be reworking it as I get my own unit to dual boot.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-7340641443979075701?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/7340641443979075701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=7340641443979075701' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/7340641443979075701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/7340641443979075701'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/03/site-needs-updating.html' title='Site Needs updating'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-2349965262554283616</id><published>2008-03-26T09:11:00.001-04:00</published><updated>2008-03-26T09:12:20.417-04:00</updated><title type='text'>I'm Back</title><content type='html'>Let me get re-acquainted with my device and I will hopefully begin posting new information again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-2349965262554283616?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/2349965262554283616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=2349965262554283616' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/2349965262554283616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/2349965262554283616'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2008/03/im-back.html' title='I&apos;m Back'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-9025834067599530569</id><published>2007-08-10T09:51:00.000-04:00</published><updated>2007-08-10T09:53:20.126-04:00</updated><title type='text'>Even Easier</title><content type='html'>I have begun a project on my own to get an easy to add perl binary (its an application that runs scripts) and a script program to do all this work.  All you would have to do is download two files, move one to the proper place, and run the other...  I might even be able to make a bash script (thats which shell we run) to do it all so all you have to do is download one file and run it.. I will keep you posted.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-9025834067599530569?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/9025834067599530569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=9025834067599530569' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/9025834067599530569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/9025834067599530569'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2007/08/even-easier.html' title='Even Easier'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-6818889582835171778</id><published>2007-03-12T14:08:00.000-04:00</published><updated>2007-03-12T14:10:01.216-04:00</updated><title type='text'>Small delay</title><content type='html'>As a server Admin the DST (Daylight Savings Time)change has taken a great deal of my time.   I was pleasantly surprised to see my n800 handle it with no problem.  I am also working on switching the dual boot from ext2 to ext3 and the installation of an alternate WindowManager (go to www.internettablettalk.com and search the forums for ROX).&lt;br /&gt;&lt;br /&gt;New stuff coming.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-6818889582835171778?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/6818889582835171778/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=6818889582835171778' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/6818889582835171778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/6818889582835171778'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2007/03/small-delay.html' title='Small delay'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-8206819533363131874</id><published>2007-02-17T11:52:00.000-05:00</published><updated>2007-02-17T21:22:30.083-05:00</updated><title type='text'>Coming Soon</title><content type='html'>I am putting together all the information needed to boot off your mmc/sd with the n800.  Working on making it easy to follow for first-timers, and explaing what all the steps mean/do.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-8206819533363131874?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/8206819533363131874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=8206819533363131874' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/8206819533363131874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/8206819533363131874'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2007/02/coming-soon.html' title='Coming Soon'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-1251714935787680687</id><published>2007-02-13T20:05:00.000-05:00</published><updated>2007-02-08T09:57:22.640-05:00</updated><title type='text'>Why should I do this.</title><content type='html'>I noticed that there is so much that can be done with the n800, but so few easy to read and understand instructions.&lt;br /&gt;&lt;br /&gt;This site will be filled will explanations and examples of how to modify the n800 (sorry n770 users, I just have the n800)&lt;br /&gt;&lt;br /&gt;Ok, what makes me qualified&lt;br /&gt;&lt;br /&gt;1. I have a n800&lt;br /&gt;2. I am Linux certified LPI&lt;br /&gt;3. I have been a unix admin for 3 years now and have 5 years of windows admin experience.&lt;br /&gt;&lt;br /&gt;Any instructions I give, I will attempt to make them all tablet only.  In other words, I will set these instructions whenever possible so you don't need a computer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-1251714935787680687?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/1251714935787680687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=1251714935787680687' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/1251714935787680687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/1251714935787680687'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2007/02/why-should-i-do-this.html' title='Why should I do this.'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4947158320195449074.post-5584193425568961917</id><published>2007-02-08T09:52:00.000-05:00</published><updated>2007-02-08T09:52:09.386-05:00</updated><title type='text'>So it Begins</title><content type='html'>I just ordered my n800 from TigerDirect.&lt;br /&gt;&lt;br /&gt;I paid $369 for the tablet, 51 dollars for a One year extended replacement plan past the 12 months you get from Nokia, and 24 dollars for a 2 gig sd card to get me started.&lt;br /&gt;&lt;br /&gt;Once I have the device in hand, I am going to play with it a bit as stock, then begin to modify it.&lt;br /&gt;&lt;br /&gt;I will be posting information on what I do, how, where and why, and hopefully it will wind up being useful to someone.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4947158320195449074-5584193425568961917?l=schmots.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://schmots.blogspot.com/feeds/5584193425568961917/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4947158320195449074&amp;postID=5584193425568961917' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5584193425568961917'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4947158320195449074/posts/default/5584193425568961917'/><link rel='alternate' type='text/html' href='http://schmots.blogspot.com/2007/02/so-it-begins.html' title='So it Begins'/><author><name>Schmots</name><uri>http://www.blogger.com/profile/00366263773212555171</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
