<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=188.221.102.245</id>
	<title>Maemo Wiki Mirror - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=188.221.102.245"/>
	<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php/Special:Contributions/188.221.102.245"/>
	<updated>2026-04-22T03:34:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Free_up_rootfs_space&amp;diff=10562</id>
		<title>Free up rootfs space</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Free_up_rootfs_space&amp;diff=10562"/>
		<updated>2010-02-16T16:01:01Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Use a script to move things from / to /home/opt/ */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here&#039;s a simple howto for those suffering from lack of space in rootfs. The first suggestion is more of a temporary matter, for example to get enough space to install an update, but it&#039;s also the fastest and easiest.&lt;br /&gt;
&lt;br /&gt;
The rest are more permanent (and thus more useful), but they require [[root access]].&lt;br /&gt;
&lt;br /&gt;
=== Disable extras-testing and extras-devel and third party repositories===&lt;br /&gt;
&lt;br /&gt;
Simply check the disabled box and save in the Application Manager&#039;s catalogues menu. wait for app manger to update the lists.&lt;br /&gt;
Of course this only helps if you actually had these repositories enabled.&lt;br /&gt;
&lt;br /&gt;
Disabling extras-testing and extras-devel will (currently) give you an extra 11.5Mb in rootfs&lt;br /&gt;
&lt;br /&gt;
=== Use apt cache outside of rootfs ===&lt;br /&gt;
&lt;br /&gt;
If you run into a problem while using apt-get you can temporarily have the apt cache outside rootfs to be able to download larger deb files.&lt;br /&gt;
&lt;br /&gt;
Create a download folder on the eMMC to be used for the downloaded packages instead of the defalut apt archive folder.&lt;br /&gt;
&lt;br /&gt;
 $ mkdir -p /home/user/MyDocs/apt-archive-cache/archives/partial&lt;br /&gt;
&lt;br /&gt;
Now execute apt-get with the -o option:&lt;br /&gt;
&lt;br /&gt;
 apt-get -o dir::cache=/home/user/MyDocs/apt-archive-cache dist-upgrade&lt;br /&gt;
&lt;br /&gt;
=== Optify python ===&lt;br /&gt;
&lt;br /&gt;
If you have installed python or a python program before python was optified, you can optify it with this method:&lt;br /&gt;
first [[open a console]], then type the following commands:&lt;br /&gt;
&lt;br /&gt;
 sudo gainroot&lt;br /&gt;
 apt-get install pymaemo-optify&lt;br /&gt;
 apt-get clean&lt;br /&gt;
&lt;br /&gt;
When the program is installed, type df -h in the xterm to see if it worked.&lt;br /&gt;
The output should now contain these lines at the end:&lt;br /&gt;
&lt;br /&gt;
 /opt/pymaemo/usr/lib/python2.5&lt;br /&gt;
                       2064208    471712   1487640  24% /usr/lib/python2.5&lt;br /&gt;
 /opt/pymaemo/usr/share/pyshared&lt;br /&gt;
                       2064208    471712   1487640  24% /usr/share/pyshared&lt;br /&gt;
 /opt/pymaemo/usr/lib/pyshared&lt;br /&gt;
                       2064208    471712   1487640  24% /usr/lib/pyshared&lt;br /&gt;
 /opt/pymaemo/usr/share/python-support&lt;br /&gt;
                       2064208    471712   1487640  24% /usr/share/python-support&lt;br /&gt;
 /opt/pymaemo/usr/lib/python-support&lt;br /&gt;
                       2064208    471712   1487640  24% /usr/lib/python-support&lt;br /&gt;
&lt;br /&gt;
=== Remove non-optified packages ===&lt;br /&gt;
&lt;br /&gt;
If you have installed programs from extras-testing, extras-devel or third party repositories, the programs might not be properly optified. Removing these might help with rootfs space.&lt;br /&gt;
&lt;br /&gt;
You can free space by uninstalling applications that you do not need. A problem is if you do not know how these applications are called. To find it out:&lt;br /&gt;
* [[open a console]]&lt;br /&gt;
* start the application that you do not need&lt;br /&gt;
* in the console, type&lt;br /&gt;
 ps -ef&lt;br /&gt;
You get a listing of all running processes, including the application you just started. To find out what package an application belongs to, enter&lt;br /&gt;
 dpkg --search $(which &#039;&#039;processname&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
source:http://talk.maemo.org/showpost.php?p=468063&amp;amp;postcount=1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Use a script to move things from / to /home/opt/ ===&lt;br /&gt;
&lt;br /&gt;
This script will move some files to /home/opt/ allowing rootfs space to be freed:&lt;br /&gt;
&lt;br /&gt;
First, create a file, move-to-opt.sh for example, containing this script:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # script for moving stuff from / to /home/opt to get more rootfs space on Nokia N900 Maemo 5&lt;br /&gt;
 # ignoring errors when creating dirs that may already exist&lt;br /&gt;
 mkdir -p /home/opt/usr/share/themes 2&amp;gt; /dev/null&lt;br /&gt;
 mkdir -p /home/opt/usr/share/icons 2&amp;gt; /dev/null&lt;br /&gt;
 mkdir -p /home/opt/usr/share/hildon-welcome 2&amp;gt; /dev/null&lt;br /&gt;
 mkdir -p /home/opt/usr/share/pixmaps 2&amp;gt; /dev/null&lt;br /&gt;
 mkdir -p /home/opt/var/cache/apt 2&amp;gt; /dev/null&lt;br /&gt;
 &lt;br /&gt;
 cp -r /usr/share/themes/* /home/opt/usr/share/themes&lt;br /&gt;
 rm -r /usr/share/themes&lt;br /&gt;
 ln -s /home/opt/usr/share/themes /usr/share/themes&lt;br /&gt;
 &lt;br /&gt;
 cp -r /usr/share/icons/* /home/opt/usr/share/icons&lt;br /&gt;
 rm -r /usr/share/icons&lt;br /&gt;
 ln -s /home/opt/usr/share/icons /usr/share/icons&lt;br /&gt;
 &lt;br /&gt;
 cp -r /usr/share/hildon-welcome/* /home/opt/usr/share/hildon-welcome&lt;br /&gt;
 rm -r /usr/share/hildon-welcome&lt;br /&gt;
 ln -s /home/opt/usr/share/hildon-welcome /usr/share/hildon-welcome&lt;br /&gt;
 &lt;br /&gt;
 cp -r /usr/share/pixmaps/* /home/opt/usr/share/pixmaps&lt;br /&gt;
 rm -r /usr/share/pixmaps&lt;br /&gt;
 ln -s /home/opt/usr/share/pixmaps /usr/share/pixmaps&lt;br /&gt;
 &lt;br /&gt;
 cp -r /var/cache/apt/* /home/opt/var/cache/apt&lt;br /&gt;
 rm -r /var/cache/apt&lt;br /&gt;
 ln -s /home/opt/var/cache/apt /var/cache/apt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Make the script executable:&lt;br /&gt;
 chmod +x move-to-opt.sh&lt;br /&gt;
&lt;br /&gt;
Then run the script as root. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;MISSING HOW TO RUN??&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Category:Power users]]&lt;br /&gt;
[[Category:N900]]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Updating_the_firmware&amp;diff=41935</id>
		<title>Updating the firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Updating_the_firmware&amp;diff=41935"/>
		<updated>2010-02-08T04:55:31Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* N900: XP (SP3) / Vista (SP2) / Windows 7 32-bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Beware that flashing a new image on your device will reset the device back to factory defaults and remove all data not on the memory card: preferences, bookmarks, installed applications, with a single exception that any previously-set lock code will be kept and not reset to the factory-default of &amp;quot;12345&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Backup/Restore&amp;quot; application only saves a list of your repositories and installed applications (the applications you can reinstall after flashing), files in &amp;lt;code&amp;gt;/home/user/MyDocs&amp;lt;/code&amp;gt;, some settings in &amp;lt;code&amp;gt;/home/user&amp;lt;/code&amp;gt;, gconf and &amp;lt;code&amp;gt;/etc&amp;lt;/code&amp;gt;, and additional files reported by applications on install. In general, properly packaged applications tell the backup tool what to back up, but if you&#039;ve created extra shell scripts or files outside MyDocs, you&#039;ll have to back them up yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updating &amp;amp; Flashing your device ==&lt;br /&gt;
&lt;br /&gt;
For Windows, Mac or Linux you can use flasher-3.5 which can be download from the [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php tablets-dev] page. This page contains all installation packages include documentation for using the flasher.&lt;br /&gt;
&lt;br /&gt;
# Download the [[Flasher]] for your device model: [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php N900, N810, N800] or [http://tablets-dev.nokia.com/d3.php 770]&lt;br /&gt;
# In the same directory, download the latest firmware image for your device model:&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N900.php N900]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N810wimax.php N810 WiMAX Edition]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N810.php N810]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N800.php N800]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_770.php 770] (or, for the Hacker Editions, [http://tablets-dev.nokia.com/os2007_hacker_edition.php OS2007HE] and [http://tablets-dev.nokia.com/os2008_hacker_edition.php OS2008HE])&lt;br /&gt;
# Ensure the battery is fully charged.&lt;br /&gt;
# Unplug the charger and switch off the device. &lt;br /&gt;
# Connect the device to the computer via USB without turning it on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
Once you have downloaded the flasher and the fiasco-image, follow these steps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Now turn off your device (&#039;&#039;make sure you unplug the charger or else the device wont power down completely, you can plug the device back into power once it starts flashing&#039;&#039;) and plug in the USB cable to a port on the computer and the port on your device.&lt;br /&gt;
&amp;lt;li&amp;gt;Now, open up a terminal and run:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;It will ask you for an administrator password, enter it.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;sudo ./flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;small&amp;gt; &#039;&#039;Note: If you installed from the .deb package, the command will omit the &#039;./&#039;&#039;&#039; (sudo flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R). &amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It will say:&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;Suitable USB device not found, waiting&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;N900: Remove USB, hold the u key and plug it back in. Wait until you get a boot screen with usb logo in top right, and let go of the key.&amp;lt;br /&amp;gt;&lt;br /&gt;
N810, N800 and 770: First, unplug the power cord from the device, as this will prevent it from updating. Then take your device, and hold down the Home/Swap button (looks like a little house on the N800 and 770, and two overlapping rectangles on the N810), and while holding down the Home/Swap button press the power button to turn it on.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;If it doesn&#039;t boot and start flashing, make sure the USB cable is plugged in.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It should start flashing and then reboot.&lt;br /&gt;
&amp;lt;li&amp;gt;You can remove the USB cable after it has booted to a normal desktop (just make sure to eject any cards that may have mounted on your computer).&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
There are two methods for flashing the device on OS X, using the GUI, with the 770Flasher application or using the console, much like the Linux flashing method. &#039;&#039;Both methods work fine for both the 770 and the N800/N810.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== GUI with 770Flasher ====&lt;br /&gt;
This is the easier of the two methods, and should be used by most people.&lt;br /&gt;
&lt;br /&gt;
# Download the [http://maemo.org/downloads/product/PC/770flasher/ 770Flasher] (yes, it will work fine for flashing an N800 or N810). Latest flashers (Linux/Mac), which work also for N900,  are also available on [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php Latest Official Maemo Development Environment Page]&lt;br /&gt;
# Follow the [[Upgrading_tablet_OS#Flashing_your_Nokia_tablet|steps above]] to get the appropriate firmware image.&lt;br /&gt;
# Drag the firmware image (will end in .bin) onto 770Flasher.&lt;br /&gt;
# Follow the on-screen prompts.&lt;br /&gt;
# You should now see &#039;&#039;Suitable USB device not found, waiting&#039;&#039;, switch on your device while holding the Home-button. Note for N810 users: switch on your device while holding the Swap button.&lt;br /&gt;
# Watch the messages as the image loads to the device after which it reboots automatically.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Console with Flasher-3.5 ====&lt;br /&gt;
These steps cover flashing the device with OS X using the Terminal. This is the more difficult than using [[Upgrading_tablet_OS#GUI_with_770Flasher|770Flasher]], but gives you access to the advanced options flasher-3.5 provides (like setting R&amp;amp;D flags, flashing only parts of the image, unpacking the image, etc).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Follow the [[Upgrading_tablet_OS#Flashing_your_Nokia_tablet|steps above]] to get the appropriate firmware image and flasher.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Now turn off your device (&#039;&#039;make sure you unplug the charger or else the device wont power down completely&#039;&#039;) and plug in the USB cable to a port on the computer and the port on your device. N900 users can&#039;t plug the usb cable yet as it would start recharging the battery.&lt;br /&gt;
&amp;lt;li&amp;gt;Now, open up the Terminal (it&#039;s in /Applications/Utilities/) and run:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;It will ask you for an administrator password, enter it.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;sudo /usr/bin/flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It will say:&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;Suitable USB device not found, waiting&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;First, unplug the power cord from the device, as this will prevent it from updating. Then take your device, and hold down the Home/Swap button (looks like a little house on the N800 and 770, and two overlapping rectangles on the N810  users do not need to hold down anything), and while holding down the Home/Swap button press the power button to turn it on. N900 users press u button and plug the usb cable. Release button when flashing process begins.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;If it doesn&#039;t doesn&#039;t boot and start flashing, make sure the USB cable is plugged in.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It should start flashing and then reboot. &lt;br /&gt;
&amp;lt;li&amp;gt;You can remove the USB cable after it has booted to a normal desktop (just make sure to eject any cards that may have mounted on your Mac).&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
==== N900: XP (SP3) / Vista (SP2) / Windows 7 32-bit ====&lt;br /&gt;
Microsoft Windows users wanting to update their [[N900]] can use the [http://europe.nokia.com/get-support-and-software/download-software/device-software-update Nokia Software Updater] or flash their devices (see the [[Flasher]] documentation.)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: On Windows 7, install the current Nokia Software Updater (NSU) under compatibility mode or alternatively get the [http://nds2.betalabs.nokia.com/NokiaSoftwareUpdater/NokiaSoftwareUpdaterSetup_2.4.3EN.exe beta version 2.3.4] at [http://betalabs.nokia.com/apps/nokia-software-updater Betalabs] which now supports Windows 7.&lt;br /&gt;
&lt;br /&gt;
It is possible to flash the N900 directly without using the NSU. This is handy when you like to update the device with the same firmware that is already installed on the N900 (reflash). The NSU will only update the N900 if there is a version newer than the one currently installed on the device.&lt;br /&gt;
&lt;br /&gt;
In order to flash directly from the XP/Vista/Windows 7 command line, follow these steps:&lt;br /&gt;
&lt;br /&gt;
# [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php Download] and install the latest version of Flasher e.g. maemo_flasher-3.5_2.5.2.2.exe&lt;br /&gt;
# [http://tablets-dev.nokia.com/nokia_N900.php Download] the latest firmware (.bin) file and save it to %ProgramFiles%\maemo\flasher-3.5\ (the default installation path for Flasher) or to the custom path of your choice.&lt;br /&gt;
# Ensure the battery is at least half full.&lt;br /&gt;
# Unplug charger cable and switch off the device.&lt;br /&gt;
# Open the Command Prompt (Start then Run or Windows Logo key + R) and type &#039;&#039;&#039;cmd&#039;&#039;&#039; then press Enter.&lt;br /&gt;
# Change the directory to the Flasher&#039;s path (TIP: Use the TAB key to auto-complete the commands and file-names)&lt;br /&gt;
:: &amp;lt;pre&amp;gt; cd &amp;quot;%ProgramFiles%\maemo\flasher-3.5&amp;quot; &amp;lt;/pre&amp;gt;&lt;br /&gt;
# Hold the &#039;&#039;u&#039;&#039; key on the keyboard and connect the USB cable at the same time (details on the [http://wiki.maemo.org/Flasher wiki])&lt;br /&gt;
# Run the following command:&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5.exe -F RX-51_2009SE_2.2009.51-1_PR_COMBINED_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace &#039;&#039;RX-51_2009SE_2.2009.51-1_PR_COMBINED_MR0_ARM.bin&#039;&#039; with the firmware you wish to update. There are specific firmwares for N900 UK devices, go to [http://wiki.maemo.org/Maemo_UK_variant_firmware Maemo UK variant firmware]&lt;br /&gt;
&lt;br /&gt;
The update will take approximately 4 minutes after which the N900 will reboot and display the Welcome Screen with Regional settings.&lt;br /&gt;
&lt;br /&gt;
==== N900: Vista (64bit) ====&lt;br /&gt;
According to [http://talk.maemo.org/showpost.php?p=411019&amp;amp;postcount=67 this] post, you need to turn on the loading of unsigned drivers. This is done by choosing the option &amp;quot;Boot without checking for signed drivers&amp;quot; (or something similar) in the boot-menu. To display the boot-menu press the &amp;quot;F8&amp;quot; key as soon as the windows boot process starts. The rest of the process is similar to XP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== N900: Vista &amp;amp; 7 (64bit) ====&lt;br /&gt;
An alternative approach is to either download [http://www.ubuntu.com/getubuntu/download Ubuntu LiveCD] and burn it to cd or create a [https://wiki.ubuntu.com/LiveUsbPendrivePersistent persistent installation] to usb disk. After that you must get (another) usb stick where you will download [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php maemo_flasher-3.5_2.5.2.2_i386.deb] -file (versions may vary) &#039;&#039;&#039;and&#039;&#039;&#039; firmware files needed for reflashing. Additionally one can save this page to usb stick just in case.&lt;br /&gt;
&lt;br /&gt;
After that you only boot your LiveCD or persistent Ubuntu, install [[Flasher]] (doubleclick the file should work fine) and after that follow instructions from Linux - chapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== N770/N800/N810 ====&lt;br /&gt;
Internet Tablet users can go to the appropriate support page for their device ([https://www.nokiausa.com/A41271130 N810 WiMAX Edition], [https://www.nokiausa.com/A4686323 N810], [https://www.nokiausa.com/A4410958 N800], or [http://europe.nokia.com/A4144790 770]), download and install the Software Update Wizard, run it and follow the on-screen prompts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flashing the eMMC in the N900 ===&lt;br /&gt;
Flasing the eMMC resets the MyDocs folder contents to factory settings. N900 users don&#039;t need to reflash the eMMC of their device. If you are reading this it&#039;s probably because you got a pre-production device e.g. in the Maemo Summit. If you have a sales unit and you have problems with your eMMC you should contact Nokia Care.&lt;br /&gt;
&lt;br /&gt;
Also note that &#039;&#039;&#039;any backups created in your MyDocs area will need to be copied off the device to be safe across an eMMC flash&#039;&#039;&#039; as the MyDocs area and other partitions on /dev/mmcblk0 will be erased.&lt;br /&gt;
&lt;br /&gt;
Note that the eMMC images available do not contain pre-loaded maps. If you reflash your eMMC you will lose them (the Maps application will work as usual but you will need to download the maps needed).&lt;br /&gt;
&lt;br /&gt;
In order to flash the eMMC, follow these steps:&lt;br /&gt;
* Fully charge the battery (IMPORTANT!!)&lt;br /&gt;
* Unplug the USB cable from the device.&lt;br /&gt;
* Turn off the device.&lt;br /&gt;
* Install [[Flasher]] for your OS (Linux, Mac OS X or MS Windows)&lt;br /&gt;
* Grab the Vanilla eMMC image (.bin file) from [http://tablets-dev.nokia.com/nokia_N900.php the Nokia repository]&lt;br /&gt;
* Navigate to the directory where the image file was saved.&lt;br /&gt;
* Plug in the USB cable into the computer.&lt;br /&gt;
* Execute the following command (in linux you have to be root!):&lt;br /&gt;
::* Windows&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5.exe -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::* Linux&lt;br /&gt;
::&amp;lt;pre&amp;gt;./flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:: Debian based Linux (e.g Ubuntu)&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Text similar to the following will be displayed on the computer:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
flasher v2.5.2 (Oct 21 2009)&lt;br /&gt;
&lt;br /&gt;
Image &#039;mmc&#039;, size 241163 kB&lt;br /&gt;
    Version RX-51_2009SE_1.2009.41-1.VANILLA&lt;br /&gt;
Suitable USB device not found, waiting.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Plug the USB cable into the N900.&lt;br /&gt;
* The dim Nokia screen will be displayed for a few seconds followed by progression dots. Text similar to the following will be displayed on the computer:&lt;br /&gt;
&amp;lt;pre&amp;gt;USB device found found at bus 001, device address 006.&lt;br /&gt;
Found device RX-51, hardware revision 2101&lt;br /&gt;
NOLO version 1.4.13&lt;br /&gt;
Version of &#039;sw-release&#039;: RX-51_2009SE_1.2009.42-11.002_PR_002&lt;br /&gt;
Booting device into flash mode.&lt;br /&gt;
Suitable USB device not found, waiting.&lt;br /&gt;
USB device found found at bus 001, device address 007.&lt;br /&gt;
Raw data transfer EP found at EP2.&lt;br /&gt;
[writing     74 %  179200 /  241163 kB 13180 kB/s]&lt;br /&gt;
Image(s) flashed successfully in 26.848 s (8982 kB/s)!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* The flash will take around 1 minute after which the device will reboot.&lt;br /&gt;
* The bright Nokia screen will come up on the screen with the USB icon on the top right followed by progression dots with yellow LED blinking for a few seconds. The device will then turn off and go into charging mode with the yellow LED blinking (NOTE: If the device appears to reboot, unplug the cable.)&lt;br /&gt;
* Unplug cable and wait for device to turn off completely. You may hear a sound (punk) of the device turning off.&lt;br /&gt;
* Having flashed the eMMC, you should now flash the [[#Flashing your device|firmware of your device]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Seamless Software Update ==&lt;br /&gt;
{{main|Seamless Software Update}}&lt;br /&gt;
[http://en.wikipedia.org/wiki/Maemo_(operating_system)#SSU SSU] is Nokia&#039;s new method for upgrading the devices over-the-air without requiring a reflash. When Nokia pushes an update over SSU, you will see an update notification and be given the option to install the update—just like with your computer.&lt;br /&gt;
&lt;br /&gt;
Generally speaking, SSU updates should be relatively pain-free, but there are a few issues to watch out for.&lt;br /&gt;
* If you have an aftermarket kernel or intifs installed (like the rotation support kernel or [[Booting_from_a_flash_card#Install_bootmenu|fanoush&#039;s bootmenu]]) and a kernel or initfs upgrade is pushed, they will be overwritten and you&#039;ll need to wait for your kernel or the bootmenu to be updated to reinstall them.&lt;br /&gt;
* If you have extensively modified the home directory for user &amp;quot;user&amp;quot;, such as moved all the documents to a memory card or removing or leaving empty some of the subdirectories&lt;br /&gt;
&lt;br /&gt;
If the update doesn&#039;t show up for you at all, you may have accidentally (or intentionally) uninstalled osso-software-version-rx*4, which is required to update. You can get it back by simply running an &amp;lt;code&amp;gt;apt-get install osso-software-version-rx34&amp;lt;/code&amp;gt;, for the N800, and an &amp;lt;code&amp;gt;apt-get install osso-software-version-rx44&amp;lt;/code&amp;gt;, for the N810. Then updating your repository list in Application manager.&lt;br /&gt;
&lt;br /&gt;
If the packages that caused osso-software-version-rx*4 to be removed are still installed, they will need to be removed completely (in the case of conflicting packages). Alternatively, for packages which are simply newer than those specified by osso-software-version-rx*4, you can install osso-software-version-rx*4-unlocked, which does not have strict dependencies.&lt;br /&gt;
&lt;br /&gt;
On N900 (probably also previous devices), it&#039;s possible the application manager ends up with message stating that it&#039;s required to upgrade using the Nokia PC application. In this case please check out [[OTA to PR1.1 troubleshooting]].&lt;br /&gt;
&lt;br /&gt;
You can show the list of packages that are not going to be ugraded with &amp;lt;code&amp;gt;apt-get update &amp;amp;&amp;amp; apt-get upgrade&amp;lt;/code&amp;gt;. In that case, you can try using &amp;lt;code&amp;gt;apt-get dist-upgrade&amp;lt;/code&amp;gt; command (as root, the app manager has to be shut down) to override. &#039;&#039;&#039;This is not supported because you can break future updates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
* If you get a &amp;quot;Permission denied&amp;quot; error then chmod +x flasher-2.0 or chmod +x flasher-3.0 to make the flasher tool executable. You may also need root permissions, run command with sudo or su to root.&lt;br /&gt;
* If you need to flash your Nokia 770 with an image from 2005 then use the [http://tablets-dev.nokia.com/d3.php older flasher] called &amp;quot;flasher&amp;quot; with no number in the name&lt;br /&gt;
* If you get &amp;quot;Error claiming USB interface: Device or resource busy&amp;quot; error, as root, run &amp;quot;modprobe -r cdc_phonet&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===USB===&lt;br /&gt;
It may help to connect directly to the computer USB ports, avoiding the use of a hub - which includes the USB ports on laptop docking stations.  The USB ports in the back of a laptop may also be better than using those in the front.&lt;br /&gt;
&lt;br /&gt;
Some distributions do not present the USB device in the way that it expects it.  First, see if it is necessary to &amp;quot;mount&amp;quot; USB:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mount -t usbfs usbfs /proc/bus/usb&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If that does not work, try patching the &#039;&#039;flasher&#039;&#039; code.  This replaces the use of /proc/bus/usb with the newer /dev/bus/usb filesystem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;perl -pi -e &#039;s-/proc/bus/usb-/dev/bus/usb\000-;&#039; -i.backup $FLASHER&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace $FLASHER with the path to your flasher-2.0 or flasher-3.0 Linux binary.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;br /&gt;
[[Category:HowTo]]&lt;br /&gt;
[[Category:USB]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Power users]]&lt;br /&gt;
[[Category:N900]]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Updating_the_firmware&amp;diff=41937</id>
		<title>Updating the firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Updating_the_firmware&amp;diff=41937"/>
		<updated>2010-02-06T22:27:45Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Beware that flashing a new image on your device will reset the device back to factory defaults and remove all data not on the memory card: preferences, bookmarks, installed applications, with a single exception that any previously-set lock code will be kept and not reset to the factory-default of &amp;quot;12345&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;Backup/Restore&amp;quot; application only saves a list of your repositories and installed applications (the applications you can reinstall after flashing), files in &amp;lt;code&amp;gt;/home/user/MyDocs&amp;lt;/code&amp;gt;, some settings in &amp;lt;code&amp;gt;/home/user&amp;lt;/code&amp;gt;, gconf and &amp;lt;code&amp;gt;/etc&amp;lt;/code&amp;gt;, and additional files reported by applications on install. In general, properly packaged applications tell the backup tool what to back up, but if you&#039;ve created extra shell scripts or files outside MyDocs, you&#039;ll have to back them up yourself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updating &amp;amp; Flashing your device ==&lt;br /&gt;
&lt;br /&gt;
For Windows, Mac or Linux you can use flasher-3.5 which can be download from the [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php tablets-dev] page. This page contains all installation packages include documentation for using the flasher.&lt;br /&gt;
&lt;br /&gt;
# Download the [[Flasher]] for your device model: [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php N900, N810, N800] or [http://tablets-dev.nokia.com/d3.php 770]&lt;br /&gt;
# In the same directory, download the latest firmware image for your device model:&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N900.php N900]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N810wimax.php N810 WiMAX Edition]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N810.php N810]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_N800.php N800]&lt;br /&gt;
#* for [http://tablets-dev.nokia.com/nokia_770.php 770] (or, for the Hacker Editions, [http://tablets-dev.nokia.com/os2007_hacker_edition.php OS2007HE] and [http://tablets-dev.nokia.com/os2008_hacker_edition.php OS2008HE])&lt;br /&gt;
# Ensure the battery is fully charged.&lt;br /&gt;
# Unplug the charger and switch off the device. &lt;br /&gt;
# Connect the device to the computer via USB without turning it on.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
Once you have downloaded the flasher and the fiasco-image, follow these steps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Now turn off your device (&#039;&#039;make sure you unplug the charger or else the device wont power down completely, you can plug the device back into power once it starts flashing&#039;&#039;) and plug in the USB cable to a port on the computer and the port on your device.&lt;br /&gt;
&amp;lt;li&amp;gt;Now, open up a terminal and run:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;It will ask you for an administrator password, enter it.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;sudo ./flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&amp;lt;small&amp;gt; &#039;&#039;Note: If you installed from the .deb package, the command will omit the &#039;./&#039;&#039;&#039; (sudo flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R). &amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It will say:&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;Suitable USB device not found, waiting&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;N900: Remove USB, hold the u key and plug it back in. Wait until you get a boot screen with usb logo in top right, and let go of the key.&amp;lt;br /&amp;gt;&lt;br /&gt;
N810, N800 and 770: First, unplug the power cord from the device, as this will prevent it from updating. Then take your device, and hold down the Home/Swap button (looks like a little house on the N800 and 770, and two overlapping rectangles on the N810), and while holding down the Home/Swap button press the power button to turn it on.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;If it doesn&#039;t boot and start flashing, make sure the USB cable is plugged in.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It should start flashing and then reboot.&lt;br /&gt;
&amp;lt;li&amp;gt;You can remove the USB cable after it has booted to a normal desktop (just make sure to eject any cards that may have mounted on your computer).&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
There are two methods for flashing the device on OS X, using the GUI, with the 770Flasher application or using the console, much like the Linux flashing method. &#039;&#039;Both methods work fine for both the 770 and the N800/N810.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== GUI with 770Flasher ====&lt;br /&gt;
This is the easier of the two methods, and should be used by most people.&lt;br /&gt;
&lt;br /&gt;
# Download the [http://maemo.org/downloads/product/PC/770flasher/ 770Flasher] (yes, it will work fine for flashing an N800 or N810). Latest flashers (Linux/Mac), which work also for N900,  are also available on [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php Latest Official Maemo Development Environment Page]&lt;br /&gt;
# Follow the [[Upgrading_tablet_OS#Flashing_your_Nokia_tablet|steps above]] to get the appropriate firmware image.&lt;br /&gt;
# Drag the firmware image (will end in .bin) onto 770Flasher.&lt;br /&gt;
# Follow the on-screen prompts.&lt;br /&gt;
# You should now see &#039;&#039;Suitable USB device not found, waiting&#039;&#039;, switch on your device while holding the Home-button. Note for N810 users: switch on your device while holding the Swap button.&lt;br /&gt;
# Watch the messages as the image loads to the device after which it reboots automatically.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Console with Flasher-3.5 ====&lt;br /&gt;
These steps cover flashing the device with OS X using the Terminal. This is the more difficult than using [[Upgrading_tablet_OS#GUI_with_770Flasher|770Flasher]], but gives you access to the advanced options flasher-3.5 provides (like setting R&amp;amp;D flags, flashing only parts of the image, unpacking the image, etc).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Follow the [[Upgrading_tablet_OS#Flashing_your_Nokia_tablet|steps above]] to get the appropriate firmware image and flasher.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Now turn off your device (&#039;&#039;make sure you unplug the charger or else the device wont power down completely&#039;&#039;) and plug in the USB cable to a port on the computer and the port on your device. N900 users can&#039;t plug the usb cable yet as it would start recharging the battery.&lt;br /&gt;
&amp;lt;li&amp;gt;Now, open up the Terminal (it&#039;s in /Applications/Utilities/) and run:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;It will ask you for an administrator password, enter it.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;sudo /usr/bin/flasher-3.5 -F &amp;lt;FIASCO image&amp;gt; -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It will say:&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
::&amp;lt;pre&amp;gt;Suitable USB device not found, waiting&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;ol start=&amp;quot;5&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;First, unplug the power cord from the device, as this will prevent it from updating. Then take your device, and hold down the Home/Swap button (looks like a little house on the N800 and 770, and two overlapping rectangles on the N810  users do not need to hold down anything), and while holding down the Home/Swap button press the power button to turn it on. N900 users press u button and plug the usb cable. Release button when flashing process begins.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;&#039;&#039;If it doesn&#039;t doesn&#039;t boot and start flashing, make sure the USB cable is plugged in.&#039;&#039;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;It should start flashing and then reboot. &lt;br /&gt;
&amp;lt;li&amp;gt;You can remove the USB cable after it has booted to a normal desktop (just make sure to eject any cards that may have mounted on your Mac).&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
==== N900: XP (SP3) / Vista (SP2) / Windows 7 ====&lt;br /&gt;
Microsoft Windows users willing to update the [[N900]] can use the [http://europe.nokia.com/get-support-and-software/download-software/device-software-update Nokia Software Updater] or see the [[Flasher]] documentation.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE&#039;&#039;&#039;: at this moment i&#039;ve downloaded italian version of NSU and to make it work with Windows 7, i configured it for Vista compatibility.--[[User:pippomu|pippomu]] 16:18, 14 January 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
It is possible to flash the N900 directly without using the Nokia Software Updater (NSU). This is handy when you like to update the device with the same firmware that is already installed on the N900 (reflash). The NSU will update only if there is a version newer than the one installed on the device.&lt;br /&gt;
&lt;br /&gt;
To flash directly from the XP/Vista/Windows 7 command line, follow these steps:&lt;br /&gt;
* [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php Download] and install the latest version of Flasher (e.g. maemo_flasher-3.5_2.5.2.2.exe)&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php Download] the latest firmware (.bin) file and save to %ProgramFiles%\maemo\flasher-3.5\ (default installation path of Flasher) or to the custom path of your choice.&lt;br /&gt;
* Fully charge the battery.&lt;br /&gt;
* Unplug charger and switch off the device.&lt;br /&gt;
* Open the Command Prompt by going to Start then Run (or Windows Logo key + R) and type &#039;&#039;&#039;cmd&#039;&#039;&#039; then press Enter.&lt;br /&gt;
* Change directory to the flasher&#039;s program path (TIP: Use the TAB key to auto-complete the commands and file-names)&lt;br /&gt;
:: &amp;lt;pre&amp;gt; cd &amp;quot;%ProgramFiles%\maemo\flasher-3.5&amp;quot; &amp;lt;/pre&amp;gt;&lt;br /&gt;
* Connect the USB cable while hold &#039;u&#039; key on the N900 (details on the [http://wiki.maemo.org/Flasher wiki])&lt;br /&gt;
* Run the following command:&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5.exe -F RX-51_2009SE_2.2009.51-1_PR_COMBINED_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Remember to replace the &#039;&#039;RX-51_2009SE_2.2009.51-1_PR_COMBINED_MR0_ARM.bin&#039;&#039; with the firmware you wish to update with. For UK devices, go to [http://wiki.maemo.org/Maemo_UK_variant_firmware Maemo UK variant firmware]&lt;br /&gt;
&lt;br /&gt;
The update will take about 3 minutes after which the N900 will reboot and display the Welcome screen with Regional settings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== N900: Vista (64bit) ====&lt;br /&gt;
According to [http://talk.maemo.org/showpost.php?p=411019&amp;amp;postcount=67 this] post, you need to turn on the loading of unsigned drivers. This is done by choosing the option &amp;quot;Boot without checking for signed drivers&amp;quot; (or something similar) in the boot-menu. To display the boot-menu press the &amp;quot;F8&amp;quot; key as soon as the windows boot process starts. The rest of the process is similar to XP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== N900: Vista &amp;amp; 7 (64bit) ====&lt;br /&gt;
An alternative approach is to either download [http://www.ubuntu.com/getubuntu/download Ubuntu LiveCD] and burn it to cd or create a [https://wiki.ubuntu.com/LiveUsbPendrivePersistent persistent installation] to usb disk. After that you must get (another) usb stick where you will download [http://tablets-dev.nokia.com/maemo-dev-env-downloads.php maemo_flasher-3.5_2.5.2.2_i386.deb] -file (versions may vary) &#039;&#039;&#039;and&#039;&#039;&#039; firmware files needed for reflashing. Additionally one can save this page to usb stick just in case.&lt;br /&gt;
&lt;br /&gt;
After that you only boot your LiveCD or persistent Ubuntu, install [[Flasher]] (doubleclick the file should work fine) and after that follow instructions from Linux - chapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== N770/N800/N810 ====&lt;br /&gt;
Internet Tablet users can go to the appropriate support page for their device ([https://www.nokiausa.com/A41271130 N810 WiMAX Edition], [https://www.nokiausa.com/A4686323 N810], [https://www.nokiausa.com/A4410958 N800], or [http://europe.nokia.com/A4144790 770]), download and install the Software Update Wizard, run it and follow the on-screen prompts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flashing the eMMC in the N900 ===&lt;br /&gt;
Flasing the eMMC resets the MyDocs folder contents to factory settings. N900 users don&#039;t need to reflash the eMMC of their device. If you are reading this it&#039;s probably because you got a pre-production device e.g. in the Maemo Summit. If you have a sales unit and you have problems with your eMMC you should contact Nokia Care.&lt;br /&gt;
&lt;br /&gt;
Also note that &#039;&#039;&#039;any backups created in your MyDocs area will need to be copied off the device to be safe across an eMMC flash&#039;&#039;&#039; as the MyDocs area and other partitions on /dev/mmcblk0 will be erased.&lt;br /&gt;
&lt;br /&gt;
Note that the eMMC images available do not contain pre-loaded maps. If you reflash your eMMC you will lose them (the Maps application will work as usual but you will need to download the maps needed).&lt;br /&gt;
&lt;br /&gt;
In order to flash the eMMC, follow these steps:&lt;br /&gt;
* Fully charge the battery (IMPORTANT!!)&lt;br /&gt;
* Unplug the USB cable from the device.&lt;br /&gt;
* Turn off the device.&lt;br /&gt;
* Install [[Flasher]] for your OS (Linux, Mac OS X or MS Windows)&lt;br /&gt;
* Grab the Vanilla eMMC image (.bin file) from [http://tablets-dev.nokia.com/nokia_N900.php the Nokia repository]&lt;br /&gt;
* Navigate to the directory where the image file was saved.&lt;br /&gt;
* Plug in the USB cable into the computer.&lt;br /&gt;
* Execute the following command (in linux you have to be root!):&lt;br /&gt;
::* Windows&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5.exe -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::* Linux&lt;br /&gt;
::&amp;lt;pre&amp;gt;./flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:: Debian based Linux (e.g Ubuntu)&lt;br /&gt;
::&amp;lt;pre&amp;gt;flasher-3.5 -F RX-51_2009SE_1.2009.41-1.VANILLA_PR_EMMC_MR0_ARM.bin -f -R&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Text similar to the following will be displayed on the computer:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
flasher v2.5.2 (Oct 21 2009)&lt;br /&gt;
&lt;br /&gt;
Image &#039;mmc&#039;, size 241163 kB&lt;br /&gt;
    Version RX-51_2009SE_1.2009.41-1.VANILLA&lt;br /&gt;
Suitable USB device not found, waiting.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Plug the USB cable into the N900.&lt;br /&gt;
* The dim Nokia screen will be displayed for a few seconds followed by progression dots. Text similar to the following will be displayed on the computer:&lt;br /&gt;
&amp;lt;pre&amp;gt;USB device found found at bus 001, device address 006.&lt;br /&gt;
Found device RX-51, hardware revision 2101&lt;br /&gt;
NOLO version 1.4.13&lt;br /&gt;
Version of &#039;sw-release&#039;: RX-51_2009SE_1.2009.42-11.002_PR_002&lt;br /&gt;
Booting device into flash mode.&lt;br /&gt;
Suitable USB device not found, waiting.&lt;br /&gt;
USB device found found at bus 001, device address 007.&lt;br /&gt;
Raw data transfer EP found at EP2.&lt;br /&gt;
[writing     74 %  179200 /  241163 kB 13180 kB/s]&lt;br /&gt;
Image(s) flashed successfully in 26.848 s (8982 kB/s)!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* The flash will take around 1 minute after which the device will reboot.&lt;br /&gt;
* The bright Nokia screen will come up on the screen with the USB icon on the top right followed by progression dots with yellow LED blinking for a few seconds. The device will then turn off and go into charging mode with the yellow LED blinking (NOTE: If the device appears to reboot, unplug the cable.)&lt;br /&gt;
* Unplug cable and wait for device to turn off completely. You may hear a sound (punk) of the device turning off.&lt;br /&gt;
* Having flashed the eMMC, you should now flash the [[#Flashing your device|firmware of your device]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Seamless Software Update ==&lt;br /&gt;
{{main|Seamless Software Update}}&lt;br /&gt;
[http://en.wikipedia.org/wiki/Maemo_(operating_system)#SSU SSU] is Nokia&#039;s new method for upgrading the devices over-the-air without requiring a reflash. When Nokia pushes an update over SSU, you will see an update notification and be given the option to install the update—just like with your computer.&lt;br /&gt;
&lt;br /&gt;
Generally speaking, SSU updates should be relatively pain-free, but there are a few issues to watch out for.&lt;br /&gt;
* If you have an aftermarket kernel or intifs installed (like the rotation support kernel or [[Booting_from_a_flash_card#Install_bootmenu|fanoush&#039;s bootmenu]]) and a kernel or initfs upgrade is pushed, they will be overwritten and you&#039;ll need to wait for your kernel or the bootmenu to be updated to reinstall them.&lt;br /&gt;
* If you have extensively modified the home directory for user &amp;quot;user&amp;quot;, such as moved all the documents to a memory card or removing or leaving empty some of the subdirectories&lt;br /&gt;
&lt;br /&gt;
If the update doesn&#039;t show up for you at all, you may have accidentally (or intentionally) uninstalled osso-software-version-rx*4, which is required to update. You can get it back by simply running an &amp;lt;code&amp;gt;apt-get install osso-software-version-rx34&amp;lt;/code&amp;gt;, for the N800, and an &amp;lt;code&amp;gt;apt-get install osso-software-version-rx44&amp;lt;/code&amp;gt;, for the N810. Then updating your repository list in Application manager.&lt;br /&gt;
&lt;br /&gt;
If the packages that caused osso-software-version-rx*4 to be removed are still installed, they will need to be removed completely (in the case of conflicting packages). Alternatively, for packages which are simply newer than those specified by osso-software-version-rx*4, you can install osso-software-version-rx*4-unlocked, which does not have strict dependencies.&lt;br /&gt;
&lt;br /&gt;
On N900 (probably also previous devices), it&#039;s possible the application manager ends up with message stating that it&#039;s required to upgrade using the Nokia PC application. In this case please check out [[OTA to PR1.1 troubleshooting]].&lt;br /&gt;
&lt;br /&gt;
You can show the list of packages that are not going to be ugraded with &amp;lt;code&amp;gt;apt-get update &amp;amp;&amp;amp; apt-get upgrade&amp;lt;/code&amp;gt;. In that case, you can try using &amp;lt;code&amp;gt;apt-get dist-upgrade&amp;lt;/code&amp;gt; command (as root, the app manager has to be shut down) to override. &#039;&#039;&#039;This is not supported because you can break future updates&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
* If you get a &amp;quot;Permission denied&amp;quot; error then chmod +x flasher-2.0 or chmod +x flasher-3.0 to make the flasher tool executable. You may also need root permissions, run command with sudo or su to root.&lt;br /&gt;
* If you need to flash your Nokia 770 with an image from 2005 then use the [http://tablets-dev.nokia.com/d3.php older flasher] called &amp;quot;flasher&amp;quot; with no number in the name&lt;br /&gt;
* If you get &amp;quot;Error claiming USB interface: Device or resource busy&amp;quot; error, as root, run &amp;quot;modprobe -r cdc_phonet&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===USB===&lt;br /&gt;
It may help to connect directly to the computer USB ports, avoiding the use of a hub - which includes the USB ports on laptop docking stations.  The USB ports in the back of a laptop may also be better than using those in the front.&lt;br /&gt;
&lt;br /&gt;
Some distributions do not present the USB device in the way that it expects it.  First, see if it is necessary to &amp;quot;mount&amp;quot; USB:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;mount -t usbfs usbfs /proc/bus/usb&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If that does not work, try patching the &#039;&#039;flasher&#039;&#039; code.  This replaces the use of /proc/bus/usb with the newer /dev/bus/usb filesystem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;perl -pi -e &#039;s-/proc/bus/usb-/dev/bus/usb\000-;&#039; -i.backup $FLASHER&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace $FLASHER with the path to your flasher-2.0 or flasher-3.0 Linux binary.&lt;br /&gt;
&lt;br /&gt;
[[Category:Users]]&lt;br /&gt;
[[Category:HowTo]]&lt;br /&gt;
[[Category:USB]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Power users]]&lt;br /&gt;
[[Category:N900]]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21462</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21462"/>
		<updated>2010-02-06T22:24:24Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release: &#039;&#039;&#039;1.2009.42-11&#039;&#039;&#039;&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01: &#039;&#039;&#039;1.2009.44-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346900877/RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1: &#039;&#039;&#039;2.2009.51-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346892600/RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release: &#039;&#039;&#039;1.2009.42-11&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346901765/RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01: &#039;&#039;&#039;1.2009.44-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346901803/RX-51_2009SE_1.2009.44-1.205.1_PR_F5_205_ARM.bin RX-51_2009SE_1.2009.44-1.205.1_PR_F5_205_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1: &#039;&#039;&#039;2.2009.51-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346895475/RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21463</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21463"/>
		<updated>2010-02-06T20:46:40Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release: &#039;&#039;&#039;1.2009.42-11&#039;&#039;&#039;&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01: &#039;&#039;&#039;1.2009.44-1&#039;&#039;&#039;&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1: &#039;&#039;&#039;2.2009.51-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346892600/RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release: &#039;&#039;&#039;1.2009.42-11&#039;&#039;&#039;&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01: &#039;&#039;&#039;1.2009.44-1&#039;&#039;&#039;&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1: &#039;&#039;&#039;2.2009.51-1&#039;&#039;&#039;&lt;br /&gt;
* [http://rapidshare.com/files/346895475/RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21464</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21464"/>
		<updated>2010-02-06T20:41:44Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* [http://rapidshare.com/files/346892600/RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* [http://rapidshare.com/files/346895475/RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin RX-51_2009SE_2.2009.51-1.205.1_PR_F5_205_ARM.bin]&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21465</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21465"/>
		<updated>2010-02-06T20:33:54Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* [http://rapidshare.com/files/346892600/RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* (Uploading..)&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21466</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21466"/>
		<updated>2010-02-06T20:23:35Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* (Uploading..)&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21467</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21467"/>
		<updated>2010-02-06T20:22:38Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* (Uploading..)&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21468</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21468"/>
		<updated>2010-02-06T20:21:43Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;By downloading the software, you have accepted the end-user software agreement.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* (Uploading..)&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21469</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21469"/>
		<updated>2010-02-06T20:17:51Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* RX-51_2009SE_1.2009.42-11.205.1_PR_F5_205_ARM.bin (Uploadling..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* (Uploading..)&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21470</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21470"/>
		<updated>2010-02-06T20:13:18Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - 1.2009.42-11&lt;br /&gt;
* [http://tablets-dev.nokia.com/nokia_N900.php RX-51_2009SE_1.2009.42-11.203.2_PR_F5_203_ARM.bin]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
* RX-51_2009SE_1.2009.44-1.203.4_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
* RX-51_2009SE_2.2009.51-1.203.2_PR_F5_203_ARM.bin (Uploading..)&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21471</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21471"/>
		<updated>2010-02-06T20:06:26Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* = Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - [http://tablets-dev.nokia.com/nokia_N900.php 1.2009.42-11]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21472</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21472"/>
		<updated>2010-02-06T20:06:07Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://wiki.maemo.org/index.php?title=Updating_the_firmware Instruction how to Flash/Update firmware]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 UK variant firmware =&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - [http://tablets-dev.nokia.com/nokia_N900.php 1.2009.42-11]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21473</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21473"/>
		<updated>2010-02-06T20:04:32Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - [http://tablets-dev.nokia.com/nokia_N900.php 1.2009.42-11]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.01 - 1.2009.44-1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1 - 2.2009.51-1&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21474</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21474"/>
		<updated>2010-02-06T20:02:22Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
Initial Public Release - [http://tablets-dev.nokia.com/nokia_N900.php 1.2009.42-11]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.2009.44.1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Public Release 1.1&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21475</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21475"/>
		<updated>2010-02-06T19:58:03Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: /* Maemo 5 UK variant firmware */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Maemo 5 UK variant firmware ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Maemo 5 Vodafone UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21476</id>
		<title>Maemo UK variant firmware</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Maemo_UK_variant_firmware&amp;diff=21476"/>
		<updated>2010-02-06T19:57:38Z</updated>

		<summary type="html">&lt;p&gt;188.221.102.245: Maemo UK variant firmware&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Maemo 5 UK variant firmware ==&lt;/div&gt;</summary>
		<author><name>188.221.102.245</name></author>
	</entry>
</feed>