<?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=81.217.39.232</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=81.217.39.232"/>
	<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php/Special:Contributions/81.217.39.232"/>
	<updated>2026-04-22T08:29:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Mbarcode_Plugin_Tutorial&amp;diff=22470</id>
		<title>Mbarcode Plugin Tutorial</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Mbarcode_Plugin_Tutorial&amp;diff=22470"/>
		<updated>2011-06-14T09:58:31Z</updated>

		<summary type="html">&lt;p&gt;81.217.39.232: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial will give you a quick introduction to writing plugins for [[mBarcode]]. We will try to guide you from your very first steps all the way to a full fledged plugin.&lt;br /&gt;
&lt;br /&gt;
The plugin we are going to create will show a quick dialog with info about the data contained in the barcode.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we&#039;ll be using Qt together with C++ to connect to the mBarcode plugin framework. To make the process very easy we are also using Qt Creator to write our code and Scratchbox to test and compile it. You don&#039;t have to use Scratchbox or Qt Creator if you don&#039;t want to, but this is not covered by this tutorial.&lt;br /&gt;
&lt;br /&gt;
Heck, you can even get through this without Qt installed, but bare in mind that you are on your own then.&lt;br /&gt;
&lt;br /&gt;
You must have:&lt;br /&gt;
* Some basic knowledge about C++ and Qt&lt;br /&gt;
* Scratchbox installed&lt;br /&gt;
* Qt&lt;br /&gt;
* Access to a terminal&lt;br /&gt;
* An OS with dpkg&lt;br /&gt;
&lt;br /&gt;
You could use:&lt;br /&gt;
* Qt Creator&lt;br /&gt;
&lt;br /&gt;
Using [[MADDE]] for development is currently a bit of a pain since it lacks an option for third party libraries. There is a tutorial that covers writing these plugins using the Nokia Qt SDK available here [[Mbarcode_Plugin_Tutorial_MADDE]]&lt;br /&gt;
&lt;br /&gt;
== Writing the plugin ==&lt;br /&gt;
&lt;br /&gt;
Using Scratchbox is the easiest way to get started. Log in to Scratchbox by typing&lt;br /&gt;
&lt;br /&gt;
 /scratchbox/login&lt;br /&gt;
&lt;br /&gt;
Install the &amp;lt;code&amp;gt;mbarcode-dev&amp;lt;/code&amp;gt; package&lt;br /&gt;
&lt;br /&gt;
 apt-get install mbarcode-dev&lt;br /&gt;
&lt;br /&gt;
Next, create a new &amp;quot;Empty Qt project&amp;quot; using Qt Creator and store this in &amp;lt;code&amp;gt;/scratchbox/users/&amp;lt;your username&amp;gt;/home/&amp;lt;your username&amp;gt;/&amp;lt;/code&amp;gt;. For the sake of simplicity, we&#039;ll name our project &amp;quot;plugin&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Alternatively, create an empty folder using the terminal and add an empty plugin.pro file.&lt;br /&gt;
&lt;br /&gt;
=== The project file ===&lt;br /&gt;
&lt;br /&gt;
Add the following to your plugin.pro file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
TEMPLATE = lib&lt;br /&gt;
CONFIG += plugin&lt;br /&gt;
INCLUDEPATH += ../..&lt;br /&gt;
&lt;br /&gt;
HEADERS = plugin.h \&lt;br /&gt;
    showdialogaction.h&lt;br /&gt;
SOURCES = plugin.cpp \&lt;br /&gt;
    showdialogaction.cpp&lt;br /&gt;
TARGET = $$qtLibraryTarget(mbarcode_myplugin)&lt;br /&gt;
&lt;br /&gt;
unix {&lt;br /&gt;
    # VARIABLES&lt;br /&gt;
    isEmpty(PREFIX):PREFIX = /usr&lt;br /&gt;
    BINDIR = $$PREFIX/bin&lt;br /&gt;
    DATADIR = $$PREFIX/share&lt;br /&gt;
    DEFINES += DATADIR=\&amp;quot;$$DATADIR\&amp;quot; \&lt;br /&gt;
        PKGDATADIR=\&amp;quot;$$PKGDATADIR\&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    # MAKE INSTALL&lt;br /&gt;
    INSTALLS += target&lt;br /&gt;
    target.path = $$DATADIR/mbarcode/plugins&lt;br /&gt;
}&lt;br /&gt;
OTHER_FILES += debian/changelog \&lt;br /&gt;
    debian/control&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== The plugin actions ===&lt;br /&gt;
&lt;br /&gt;
Let&#039;s add some actions for our plugin! In Qt Creator, right click on your project and select &amp;quot;Add New...&amp;quot;. Choose &amp;quot;C++ Class&amp;quot; and name it &amp;lt;code&amp;gt;ShowDialogAction&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Open the &amp;lt;code&amp;gt;showdialogaction.h&amp;lt;/code&amp;gt; file and overwrite it with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#ifndef SHOWDIALOGACTION_H&lt;br /&gt;
#define SHOWDIALOGACTION_H&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;QtCore&amp;gt;&lt;br /&gt;
#include &amp;lt;mbarcode-qt/plugininterfaces.h&amp;gt;&lt;br /&gt;
#include &amp;lt;mbarcode-qt/pluginaction.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
class ShowDialogAction : public PluginAction&lt;br /&gt;
{&lt;br /&gt;
    Q_OBJECT&lt;br /&gt;
public:&lt;br /&gt;
    ShowDialogAction(const PluginInterface *interface);&lt;br /&gt;
    QString getName() { return &amp;quot;EAN Local Analyser&amp;quot;; } // This name is just for convenience&lt;br /&gt;
    QString getText(); // This is the text that will show in the list&lt;br /&gt;
    void clickAction(QWidget *parentWindow); // The action which is called whenever we are clicked&lt;br /&gt;
signals:&lt;br /&gt;
    void isReady();&lt;br /&gt;
private slots:&lt;br /&gt;
    void barcodeAnalysed(QString barcodeType, QString barcodeData); // The slot where all the processing goes down&lt;br /&gt;
private:&lt;br /&gt;
    QString barcodeType;&lt;br /&gt;
    QString barcodeData;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
//Q_DECLARE_METATYPE(ShowDialogAction *);&lt;br /&gt;
&lt;br /&gt;
#endif // SHOWDIALOGACTION_H&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Open the &amp;lt;code&amp;gt;showdialogaction.cpp&amp;lt;/code&amp;gt; file and overwrite it with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;showdialogaction.h&amp;quot;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;QMessageBox&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ShowDialogAction::ShowDialogAction(const PluginInterface *interface) : PluginAction(interface)&lt;br /&gt;
{&lt;br /&gt;
    // Do your initialization here.&lt;br /&gt;
}&lt;br /&gt;
QString ShowDialogAction::getText() {&lt;br /&gt;
    // This is the text which will show in the list of results.&lt;br /&gt;
    return &amp;quot;Show Dialog&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
void ShowDialogAction::clickAction(QWidget* parentWindow)&lt;br /&gt;
{&lt;br /&gt;
    // This is what happens when the user clicks our button.&lt;br /&gt;
    QMessageBox msg(parentWindow);&lt;br /&gt;
    msg.setWindowTitle(&amp;quot;You clicked the button!&amp;quot;);&lt;br /&gt;
    msg.setText(&amp;quot;A window should be a dynamic object. Otherwise it is removed at the end of this function. A message box, on the other hand, has the exec().&amp;quot;);&lt;br /&gt;
    msg.exec();&lt;br /&gt;
}&lt;br /&gt;
void ShowDialogAction::barcodeAnalysed(QString barcodeType, QString barcodeData) {&lt;br /&gt;
    // In this function you process the data. This could be used for early web lookups or whatever.&lt;br /&gt;
    // We just store the data in memory for now.&lt;br /&gt;
    this-&amp;gt;barcodeType = barcodeType;&lt;br /&gt;
    this-&amp;gt;barcodeData = barcodeData;&lt;br /&gt;
    // We&#039;ve done what we need to and are ready to show ourselves&lt;br /&gt;
    emit isReady();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You could add more classes like this if you want different buttons with different actions, but for now, this will do.&lt;br /&gt;
&lt;br /&gt;
=== Plugin interface ===&lt;br /&gt;
&lt;br /&gt;
Let&#039;s connect to mBarcode&#039;s plugin interface. In Qt Creator, right click on your project and select &amp;quot;Add New...&amp;quot;. Choose &amp;quot;C++ Class&amp;quot; and name it &amp;lt;code&amp;gt;Plugin&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Open your &amp;lt;code&amp;gt;plugin.h&amp;lt;/code&amp;gt; file and overwrite it with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
// This is a plugin used as an example in different tutorials.&lt;br /&gt;
&lt;br /&gt;
#ifndef PLUGIN_H&lt;br /&gt;
#define PLUGIN_H&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;QObject&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;mbarcode-qt/plugininterfaces.h&amp;gt;&lt;br /&gt;
#include &amp;lt;mbarcode-qt/pluginaction.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
class Plugin : public QObject, public PluginInterface&lt;br /&gt;
{&lt;br /&gt;
    Q_OBJECT&lt;br /&gt;
    Q_INTERFACES(PluginInterface)&lt;br /&gt;
public:&lt;br /&gt;
    void initInterface(QWidget *parent);&lt;br /&gt;
&lt;br /&gt;
    QSet&amp;lt;PluginAction*&amp;gt; getPluginActions(); // returns a list of actions this plugin provides&lt;br /&gt;
    QString getName() { return &amp;quot;My Plugin&amp;quot;; } // a name of your choosing&lt;br /&gt;
&lt;br /&gt;
private:&lt;br /&gt;
    QWidget *parent;&lt;br /&gt;
    QSet&amp;lt;PluginAction*&amp;gt; pluginActions;&lt;br /&gt;
&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
#endif // PLUGIN_H&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Open your &amp;lt;code&amp;gt;plugin.cpp&amp;lt;/code&amp;gt; file and add the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;plugin.h&amp;quot;&lt;br /&gt;
#include &amp;quot;showdialogaction.h&amp;quot;&lt;br /&gt;
&lt;br /&gt;
void Plugin::initInterface(QWidget *parent)&lt;br /&gt;
{&lt;br /&gt;
    this-&amp;gt;parent = parent;&lt;br /&gt;
&lt;br /&gt;
    // Create an action&lt;br /&gt;
&lt;br /&gt;
    ShowDialogAction *showDialogAction = new ShowDialogAction(this);&lt;br /&gt;
&lt;br /&gt;
    // Add our action to the list&lt;br /&gt;
&lt;br /&gt;
    pluginActions.insert(showDialogAction);&lt;br /&gt;
&lt;br /&gt;
    // Connect the signal from the MaemoBarcodeWindow to our Action classes.&lt;br /&gt;
&lt;br /&gt;
    connect(parent, SIGNAL(barcodeAnalysedSignal(QString,QString)),&lt;br /&gt;
            showDialogAction, SLOT(barcodeAnalysed(QString,QString)));&lt;br /&gt;
&lt;br /&gt;
    // If you like to, you can connect this to whatever you want.&lt;br /&gt;
    // This means that you could even connect it to a slot in this class.&lt;br /&gt;
    // We&#039;ve only chosen to do it this way for convenience.&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
QSet&amp;lt;PluginAction*&amp;gt; Plugin::getPluginActions() {&lt;br /&gt;
    return pluginActions;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Q_EXPORT_PLUGIN2(mbqt_myplugin, Plugin) // Please change this name&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Testing your fancy new plugin ===&lt;br /&gt;
&lt;br /&gt;
There you go! You are now ready to build your plugin and test it out. Before we build a complete Debian package, let&#039;s see if everything works.&lt;br /&gt;
&lt;br /&gt;
Build your plugin by issuing this command in your project folder in Scratchbox:&lt;br /&gt;
&lt;br /&gt;
 qmake &amp;amp;&amp;amp; make&lt;br /&gt;
&lt;br /&gt;
Go to your directory and pick up the new file named &amp;lt;code&amp;gt;libmbarcode_myplugin.so&amp;lt;/code&amp;gt;. Copy this to your device and place it in &amp;lt;code&amp;gt;/home/user/.config/mbarcode/plugins&amp;lt;/code&amp;gt;. (Note: final plugins are stored in &amp;lt;code&amp;gt;/usr/share/mbarcode/plugins&amp;lt;/code&amp;gt;. The former path with .config didn&#039;t work for me).&lt;br /&gt;
&lt;br /&gt;
Start mBarcode and scan a barcode as usual. Your plugin should now show up.&lt;br /&gt;
&lt;br /&gt;
==== Troubleshooting ====&lt;br /&gt;
&lt;br /&gt;
If your plugin doesn&#039;t load, please run mbarcode from terminal and look for error messages during the loading of the application.&lt;br /&gt;
&lt;br /&gt;
== Creating a Debian package ==&lt;br /&gt;
&lt;br /&gt;
To be continued...&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;br /&gt;
[[Category:mBarcode]]&lt;/div&gt;</summary>
		<author><name>81.217.39.232</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Nitdroid_easy_install_on_EMMC&amp;diff=29545</id>
		<title>Nitdroid easy install on EMMC</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Nitdroid_easy_install_on_EMMC&amp;diff=29545"/>
		<updated>2011-04-17T20:07:34Z</updated>

		<summary type="html">&lt;p&gt;81.217.39.232: /* Installing NITDroid 0.0.9 to EMMC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{danger}}&lt;br /&gt;
{{ambox|text=&#039;&#039;&#039;Under heavy construction&#039;&#039;&#039;}}&lt;br /&gt;
Original Talk Maemo thread:&lt;br /&gt;
&lt;br /&gt;
http://talk.maemo.org/showpost.php?p=887394&amp;amp;postcount=1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing Nitdroid ==&lt;br /&gt;
&lt;br /&gt;
This tutorial is specifically designed to install Nitdroid on the internal memory of the N900 (EMMC) and does not apply to installation on an external micro SD card.&lt;br /&gt;
&lt;br /&gt;
The main purpose of installing Nitdroid on the internal memory is that in most cases you will see an increased performance.&lt;br /&gt;
&lt;br /&gt;
The EMMC is referred to the internal memory, (27 Gigabyte memory). MMC is referred to the external memory expansion card, the microSD.&lt;br /&gt;
&lt;br /&gt;
What bugs most people is that, this installing procedure is not clarified command by command, but basically, by following the next steps, you will download Nitdroid&#039;s system files, unarchive them to a specific partition in your EMMC (/home), and then create a multiboot entry to load them up.&lt;br /&gt;
&lt;br /&gt;
Reference installation video:&lt;br /&gt;
http://www.youtube.com/watch?v=Bm6spW5yadk&lt;br /&gt;
===Installing NITDroid 0.0.9 to EMMC===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/NITDroid-0.0.9.tar.bz2&lt;br /&gt;
#* Kernel:http://www.mediafire.com/?zmh7gvj626c6lrp&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d NITDroid-0.0.9.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/NITDroid-0.0.9.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/NITDroid-kernel-Mido.Fayad.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;&lt;br /&gt;
(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC (micro SD card) plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid. (Note: If boot menu doesn&#039;t come up at poweron, slide open the keyboard before turning N900 on)&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installing Gingerbread to EMMC ===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/gingerbread.tar.bz2&lt;br /&gt;
#* Kernel: http://www.mediafire.com/?zmh7gvj626c6lrp&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/NITDroid-kernel-Mido.Fayad.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Applying Gingerbread updates: ====&lt;br /&gt;
Place all updates in MyDocs i.e. root dir. of N900.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Update 1:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_update1.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_update1.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_update1.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 2:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_update2.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_update2.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_update2.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 3:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_superuser.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_superuser.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_superuser.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 4:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/LatinIME.apk&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
cp LatinIME.apk /and/system/app/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 5:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gps.nokia.so&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
cp gps.nokia.so /and/system/lib/hw/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installing NITDroid N11 to EMMC (in development)===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/N11_Vostok.tar.bz2&lt;br /&gt;
#* Kernel:http://downloads.nitdroid.com/e-yes/nitdroid-kernel-2.6.28-06_final1_armel.deb&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d N11_Vostok.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/N11_Vostok.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/nitdroid-kernel-2.6.28-06_final1_armel.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;&lt;br /&gt;
(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC (micro SD card) plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Fixes==&lt;br /&gt;
&lt;br /&gt;
===APP Market Fix===&lt;br /&gt;
&lt;br /&gt;
# Open the &#039;&#039;&#039;Market&#039;&#039;&#039; app (from the Home screen or app launcher) &lt;br /&gt;
# Leaving the Market app running, return to the Home screen and open the &#039;&#039;&#039;Settings&#039;&#039;&#039; app again &lt;br /&gt;
# Within Settings select &#039;&#039;&#039;Applications&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;Manage applications&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;Running&#039;&#039;&#039; (from Tab at top) &lt;br /&gt;
# Scroll to select the &#039;&#039;&#039;Market&#039;&#039;&#039; app &amp;amp;rarr; press the &#039;&#039;&#039;Clear Cache&#039;&#039;&#039; button &amp;amp;rarr; then press the &#039;&#039;&#039;Force Stop&#039;&#039;&#039; button (Do not press the &#039;&#039;&#039;Clear Data&#039;&#039;&#039; button) &lt;br /&gt;
# Press the back button (to go back to the list of running apps) &lt;br /&gt;
# Scroll to select &#039;&#039;&#039;Google Services Framework&#039;&#039;&#039; &amp;amp;rarr; press the &#039;&#039;&#039;Clear Data&#039;&#039;&#039; button &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; (to confirm) &amp;amp;rarr; then press the &#039;&#039;&#039;Force Stop&#039;&#039;&#039; button &lt;br /&gt;
# Return to the Home screen &lt;br /&gt;
# Launch the &#039;&#039;&#039;Market&#039;&#039;&#039; app again, which will give an error &amp;quot;Attention an error has occurred...&amp;quot; &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; button &lt;br /&gt;
# Shutdown by holding power button &amp;amp;rarr; &#039;&#039;&#039;Power Off&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; &lt;br /&gt;
# Restart, wait for wi-fi to reconnect, open &#039;&#039;&#039;Market&#039;&#039;&#039; again  (You may have to reboot several times and check &#039;&#039;&#039;Market&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
The opening &#039;&#039;&#039;Market&#039;&#039;&#039; screen should no longer be blank, and many more apps (free &amp;amp; paid) should now be available. (Although apps can be downloaded, some may still fail to install or run properly)&lt;br /&gt;
&lt;br /&gt;
===WIFI Fix (rare cases)===&lt;br /&gt;
&lt;br /&gt;
Change the encryption from WPA2 to WPA from your Wireless Access Point. This is a compatibility issue hopefully going to be fixed in later releases.&lt;br /&gt;
&lt;br /&gt;
===Airplane Mode Fix===&lt;br /&gt;
&lt;br /&gt;
For people who enabled airplane mode, fixes are here:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable the widget power control and turn airplane mode off&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If this didn&#039;t work disable pin code in maemo&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;menu&#039;&#039;&#039;&amp;amp;rarr;&#039;&#039;&#039;devtools&#039;&#039;&#039;&amp;amp;rarr;&#039;&#039;&#039;terminal emulator&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
rr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
The technical solution:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd /and/data&lt;br /&gt;
rm -rf *&lt;br /&gt;
mkdir logs&lt;br /&gt;
chmod 777 logs&lt;br /&gt;
cd /&lt;br /&gt;
umount /and&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Google account sign-in===&lt;br /&gt;
&lt;br /&gt;
Skip google sign-up in the first tutorial instead, sign up/in google once in NITDroid.&lt;br /&gt;
&lt;br /&gt;
==Overclocking Nitdroid==&lt;br /&gt;
&lt;br /&gt;
#You can download ready GUI&#039;s from the market for OCing: http://talk.maemo.org/attachment.php?attachmentid=16607&amp;amp;d=1293643705&lt;br /&gt;
#Or use one of these profiles: http://forum.nitdroid.com/index.php?topic=116.0&lt;br /&gt;
&lt;br /&gt;
==Kernel Power installation==&lt;br /&gt;
&lt;br /&gt;
For kernel-power multiboot entry:&lt;br /&gt;
http://www.mediafire.com/?t3mdemq1hj7v5ur&lt;br /&gt;
&lt;br /&gt;
1. Unrar this archive to ./MyDocs, then:&lt;br /&gt;
2. On Xterminal, execute:&amp;lt;pre&amp;gt;root&lt;br /&gt;
mount /home /and&lt;br /&gt;
dpkg -i /home/user/MyDocs/multiboot-0.2.11-kernel-power-46-Android-Kernel/*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
3. Reboot your device, you shall see a new multiboot entry for kernel-power.&lt;br /&gt;
&lt;br /&gt;
==Custom EMMC&#039;s==&lt;br /&gt;
&lt;br /&gt;
Just in case you fear to run out of memory, here are custom EMMC&#039;s if you want to reflash with:&lt;br /&gt;
&lt;br /&gt;
5GB app memory 24GB /MyDocs: http://www.mediafire.com/?j6srnaxwr3notaf&lt;br /&gt;
&lt;br /&gt;
and/or&lt;br /&gt;
&lt;br /&gt;
8GB app memory 21GB /MyDocs: http://www.mediafire.com/?5o1hkuuwhn8hh1c&lt;br /&gt;
&lt;br /&gt;
== Uninstalling Nitdroid ==&lt;br /&gt;
Open X Terminal and type the following commands:&lt;br /&gt;
&lt;br /&gt;
If on your mmc:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /dev/mmcblk1p2 /and -o noatime&lt;br /&gt;
nitdroid-uninstaller&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If on your emmc:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /dev/mmcblk0p2 /and -o noatime&lt;br /&gt;
nitdroid-uninstaller&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After it completes, simply format your microSD card, then using filebox delete nitdroid&#039;s installation folders and files that were copied to home:&lt;br /&gt;
bin, data, dev, etc (symlink), initrd, lib (symlink), mnt, proc, sbin, sdcard, sys, system, tmp, usr,default.prop, init, init.nokia.rc, init.rc&lt;br /&gt;
&lt;br /&gt;
==Videos of NITDroid running on EMMC==&lt;br /&gt;
&lt;br /&gt;
My video: http://www.youtube.com/watch?v=l_9kG81m-S4&lt;br /&gt;
&lt;br /&gt;
Mr.NokiaTecs&#039; video: http://www.youtube.com/watch?v=z7MIGu2POzY&lt;br /&gt;
&lt;br /&gt;
Nokiatolo: http://www.youtube.com/watch?v=KYmOpftdtqg&lt;br /&gt;
&lt;br /&gt;
Warlord1994&#039;s video: http://www.youtube.com/watch?v=UCVAho3_rDM&lt;br /&gt;
&lt;br /&gt;
[[Category:Power users]]&lt;br /&gt;
[[Category:N900]]&lt;/div&gt;</summary>
		<author><name>81.217.39.232</name></author>
	</entry>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=Nitdroid_easy_install_on_EMMC&amp;diff=29546</id>
		<title>Nitdroid easy install on EMMC</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=Nitdroid_easy_install_on_EMMC&amp;diff=29546"/>
		<updated>2011-04-17T20:05:56Z</updated>

		<summary type="html">&lt;p&gt;81.217.39.232: /* Installing NITDroid 0.0.9 to EMMC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{danger}}&lt;br /&gt;
{{ambox|text=&#039;&#039;&#039;Under heavy construction&#039;&#039;&#039;}}&lt;br /&gt;
Original Talk Maemo thread:&lt;br /&gt;
&lt;br /&gt;
http://talk.maemo.org/showpost.php?p=887394&amp;amp;postcount=1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing Nitdroid ==&lt;br /&gt;
&lt;br /&gt;
This tutorial is specifically designed to install Nitdroid on the internal memory of the N900 (EMMC) and does not apply to installation on an external micro SD card.&lt;br /&gt;
&lt;br /&gt;
The main purpose of installing Nitdroid on the internal memory is that in most cases you will see an increased performance.&lt;br /&gt;
&lt;br /&gt;
The EMMC is referred to the internal memory, (27 Gigabyte memory). MMC is referred to the external memory expansion card, the microSD.&lt;br /&gt;
&lt;br /&gt;
What bugs most people is that, this installing procedure is not clarified command by command, but basically, by following the next steps, you will download Nitdroid&#039;s system files, unarchive them to a specific partition in your EMMC (/home), and then create a multiboot entry to load them up.&lt;br /&gt;
&lt;br /&gt;
Reference installation video:&lt;br /&gt;
http://www.youtube.com/watch?v=Bm6spW5yadk&lt;br /&gt;
===Installing NITDroid 0.0.9 to EMMC===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/NITDroid-0.0.9.tar.bz2&lt;br /&gt;
#* Kernel:http://www.mediafire.com/?zmh7gvj626c6lrp&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d NITDroid-0.0.9.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/NITDroid-0.0.9.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/NITDroid-kernel-Mido.Fayad.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;&lt;br /&gt;
(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC (micro SD card) plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid. (Note: If boot menu doesn&#039;t come up on reboot, slide open the keyboard before turning N900 on)&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installing Gingerbread to EMMC ===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/gingerbread.tar.bz2&lt;br /&gt;
#* Kernel: http://www.mediafire.com/?zmh7gvj626c6lrp&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/NITDroid-kernel-Mido.Fayad.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Applying Gingerbread updates: ====&lt;br /&gt;
Place all updates in MyDocs i.e. root dir. of N900.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Update 1:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_update1.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_update1.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_update1.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 2:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_update2.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_update2.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_update2.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 3:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gingerbread_superuser.tar.bz2&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d gingerbread_superuser.tar.bz2&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/gingerbread_superuser.tar&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 4:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/LatinIME.apk&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
cp LatinIME.apk /and/system/app/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Update 5:&#039;&#039;&#039; http://downloads.nitdroid.com/e-yes/gps.nokia.so&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
cp gps.nokia.so /and/system/lib/hw/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installing NITDroid N11 to EMMC (in development)===&lt;br /&gt;
&lt;br /&gt;
# Download the image + the kernel to /MyDocs i.e. root dir. of N900:&lt;br /&gt;
#* Image: http://downloads.nitdroid.com/e-yes/N11_Vostok.tar.bz2&lt;br /&gt;
#* Kernel:http://downloads.nitdroid.com/e-yes/nitdroid-kernel-2.6.28-06_final1_armel.deb&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable all repositories from App manager ([[Extras-testing]], [[Extras-devel]], [[Extras]] and the default [[User:Jebba/Repositories#Nokia_Official|Nokia repos]])&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Install [http://maemo.org/downloads/product/Maemo5/leafpad Leafpad] from the App manager and make sure that you have [[root access]]&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close App manager, open [[terminal|X Terminal]] and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
apt-get update&lt;br /&gt;
apt-get install nitdroid-installer&lt;br /&gt;
y&lt;br /&gt;
y again if it asks again.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
After the [http://maemo.org/packages/view/nitdroid-installer/ nitdroid-installer] package is installed, close X Terminal, but do &#039;&#039;&#039;NOT&#039;&#039;&#039; run the installer you just downloaded.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Open X Terminal, and execute the following commands:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
cd /home/user/MyDocs&lt;br /&gt;
bzip2 -d N11_Vostok.tar.bz2&lt;br /&gt;
cd /home&lt;br /&gt;
mkdir /and&lt;br /&gt;
cd /&lt;br /&gt;
mount /home /and&lt;br /&gt;
cd /and&lt;br /&gt;
tar xvf /home/user/MyDocs/N11_Vostok.tar&lt;br /&gt;
dpkg -i /home/user/MyDocs/nitdroid-kernel-2.6.28-06_final1_armel.deb&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Edit the boot file:&lt;br /&gt;
&amp;lt;pre&amp;gt;leafpad /etc/multiboot.d/11&amp;lt;/pre&amp;gt;&lt;br /&gt;
(then tap the tab button, .item file will show, hit enter to open it in Leafpad). Edit &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; in the file according to this:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you have an MMC (micro SD card) plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=${INT_CARD}p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If you don&#039;t have an MMC plugged in your N900, change &amp;lt;code&amp;gt;ITEM_DEVICE&amp;lt;/code&amp;gt; to this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ITEM_DEVICE=mmcblk0p2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Once editing is complete click the drop down menu on Leafpad and save then close Leafpad.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Close X Terminal, reboot N900 and type ‘2’ for NITDroid.&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Fixes==&lt;br /&gt;
&lt;br /&gt;
===APP Market Fix===&lt;br /&gt;
&lt;br /&gt;
# Open the &#039;&#039;&#039;Market&#039;&#039;&#039; app (from the Home screen or app launcher) &lt;br /&gt;
# Leaving the Market app running, return to the Home screen and open the &#039;&#039;&#039;Settings&#039;&#039;&#039; app again &lt;br /&gt;
# Within Settings select &#039;&#039;&#039;Applications&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;Manage applications&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;Running&#039;&#039;&#039; (from Tab at top) &lt;br /&gt;
# Scroll to select the &#039;&#039;&#039;Market&#039;&#039;&#039; app &amp;amp;rarr; press the &#039;&#039;&#039;Clear Cache&#039;&#039;&#039; button &amp;amp;rarr; then press the &#039;&#039;&#039;Force Stop&#039;&#039;&#039; button (Do not press the &#039;&#039;&#039;Clear Data&#039;&#039;&#039; button) &lt;br /&gt;
# Press the back button (to go back to the list of running apps) &lt;br /&gt;
# Scroll to select &#039;&#039;&#039;Google Services Framework&#039;&#039;&#039; &amp;amp;rarr; press the &#039;&#039;&#039;Clear Data&#039;&#039;&#039; button &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; (to confirm) &amp;amp;rarr; then press the &#039;&#039;&#039;Force Stop&#039;&#039;&#039; button &lt;br /&gt;
# Return to the Home screen &lt;br /&gt;
# Launch the &#039;&#039;&#039;Market&#039;&#039;&#039; app again, which will give an error &amp;quot;Attention an error has occurred...&amp;quot; &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; button &lt;br /&gt;
# Shutdown by holding power button &amp;amp;rarr; &#039;&#039;&#039;Power Off&#039;&#039;&#039; &amp;amp;rarr; &#039;&#039;&#039;OK&#039;&#039;&#039; &lt;br /&gt;
# Restart, wait for wi-fi to reconnect, open &#039;&#039;&#039;Market&#039;&#039;&#039; again  (You may have to reboot several times and check &#039;&#039;&#039;Market&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
The opening &#039;&#039;&#039;Market&#039;&#039;&#039; screen should no longer be blank, and many more apps (free &amp;amp; paid) should now be available. (Although apps can be downloaded, some may still fail to install or run properly)&lt;br /&gt;
&lt;br /&gt;
===WIFI Fix (rare cases)===&lt;br /&gt;
&lt;br /&gt;
Change the encryption from WPA2 to WPA from your Wireless Access Point. This is a compatibility issue hopefully going to be fixed in later releases.&lt;br /&gt;
&lt;br /&gt;
===Airplane Mode Fix===&lt;br /&gt;
&lt;br /&gt;
For people who enabled airplane mode, fixes are here:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
Enable the widget power control and turn airplane mode off&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
If this didn&#039;t work disable pin code in maemo&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;menu&#039;&#039;&#039;&amp;amp;rarr;&#039;&#039;&#039;devtools&#039;&#039;&#039;&amp;amp;rarr;&#039;&#039;&#039;terminal emulator&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
su&lt;br /&gt;
rr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
The technical solution:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd /and/data&lt;br /&gt;
rm -rf *&lt;br /&gt;
mkdir logs&lt;br /&gt;
chmod 777 logs&lt;br /&gt;
cd /&lt;br /&gt;
umount /and&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Google account sign-in===&lt;br /&gt;
&lt;br /&gt;
Skip google sign-up in the first tutorial instead, sign up/in google once in NITDroid.&lt;br /&gt;
&lt;br /&gt;
==Overclocking Nitdroid==&lt;br /&gt;
&lt;br /&gt;
#You can download ready GUI&#039;s from the market for OCing: http://talk.maemo.org/attachment.php?attachmentid=16607&amp;amp;d=1293643705&lt;br /&gt;
#Or use one of these profiles: http://forum.nitdroid.com/index.php?topic=116.0&lt;br /&gt;
&lt;br /&gt;
==Kernel Power installation==&lt;br /&gt;
&lt;br /&gt;
For kernel-power multiboot entry:&lt;br /&gt;
http://www.mediafire.com/?t3mdemq1hj7v5ur&lt;br /&gt;
&lt;br /&gt;
1. Unrar this archive to ./MyDocs, then:&lt;br /&gt;
2. On Xterminal, execute:&amp;lt;pre&amp;gt;root&lt;br /&gt;
mount /home /and&lt;br /&gt;
dpkg -i /home/user/MyDocs/multiboot-0.2.11-kernel-power-46-Android-Kernel/*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
3. Reboot your device, you shall see a new multiboot entry for kernel-power.&lt;br /&gt;
&lt;br /&gt;
==Custom EMMC&#039;s==&lt;br /&gt;
&lt;br /&gt;
Just in case you fear to run out of memory, here are custom EMMC&#039;s if you want to reflash with:&lt;br /&gt;
&lt;br /&gt;
5GB app memory 24GB /MyDocs: http://www.mediafire.com/?j6srnaxwr3notaf&lt;br /&gt;
&lt;br /&gt;
and/or&lt;br /&gt;
&lt;br /&gt;
8GB app memory 21GB /MyDocs: http://www.mediafire.com/?5o1hkuuwhn8hh1c&lt;br /&gt;
&lt;br /&gt;
== Uninstalling Nitdroid ==&lt;br /&gt;
Open X Terminal and type the following commands:&lt;br /&gt;
&lt;br /&gt;
If on your mmc:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /dev/mmcblk1p2 /and -o noatime&lt;br /&gt;
nitdroid-uninstaller&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If on your emmc:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root&lt;br /&gt;
mount /dev/mmcblk0p2 /and -o noatime&lt;br /&gt;
nitdroid-uninstaller&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After it completes, simply format your microSD card, then using filebox delete nitdroid&#039;s installation folders and files that were copied to home:&lt;br /&gt;
bin, data, dev, etc (symlink), initrd, lib (symlink), mnt, proc, sbin, sdcard, sys, system, tmp, usr,default.prop, init, init.nokia.rc, init.rc&lt;br /&gt;
&lt;br /&gt;
==Videos of NITDroid running on EMMC==&lt;br /&gt;
&lt;br /&gt;
My video: http://www.youtube.com/watch?v=l_9kG81m-S4&lt;br /&gt;
&lt;br /&gt;
Mr.NokiaTecs&#039; video: http://www.youtube.com/watch?v=z7MIGu2POzY&lt;br /&gt;
&lt;br /&gt;
Nokiatolo: http://www.youtube.com/watch?v=KYmOpftdtqg&lt;br /&gt;
&lt;br /&gt;
Warlord1994&#039;s video: http://www.youtube.com/watch?v=UCVAho3_rDM&lt;br /&gt;
&lt;br /&gt;
[[Category:Power users]]&lt;br /&gt;
[[Category:N900]]&lt;/div&gt;</summary>
		<author><name>81.217.39.232</name></author>
	</entry>
</feed>