<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RichT23</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=RichT23"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/RichT23"/>
	<updated>2026-04-07T18:59:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=MojoDB_Partition_Resize&amp;diff=22001</id>
		<title>MojoDB Partition Resize</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=MojoDB_Partition_Resize&amp;diff=22001"/>
		<updated>2014-06-04T16:46:06Z</updated>

		<summary type="html">&lt;p&gt;RichT23: Addling a link to the quota DB issue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
If you use your webOS device frequently, you have probably encountered the &amp;quot;Application database full&amp;quot; error, and were confused by it. It is a very confusing error, and the remedies are equally confusing. The error suggests deleting data, but it isn't clear what data. I learned that it meant app data (such as emails, contacts, calendar events), and not media. Though, the amount of files that you have on your USB partition can play a factor, too. Unfortunately, the tricks to get this error to go away are very few and short-lived. As a result, you will be greeted with the next evil error. That error will force you to reset your device. In this process, you are required to sign back into your Palm profile and watch in horror as all of your apps re-download, all of your Preware apps gone, as if you got the device new.... Nasty.&lt;br /&gt;
&lt;br /&gt;
Well, there is a solution (and no, I won't be trying to sell you some anti-aging cream, or miracle spray, so rest assured, I have tried this on my own Pre3).&lt;br /&gt;
&lt;br /&gt;
== The Dirty Bits ==&lt;br /&gt;
&lt;br /&gt;
webOS 2.0 came along and offered a new application data storage feature. It allowed you to store data in a database called db8. It is pretty magical, and allows apps to share data through permissions. But, this feature had one fatal flaw. It was placed on its own isolated partition. This is a great way to protect the data, to some extent, but it limits how much data you can have on your device. The partition is only 135MB in size... You can use that quickly if you have a ton of files on your USB partition (the media indexer uses this database to store the index of the files on the USB partition), a few email accounts syncing regularly and storing a large backlog, and Koto Player indexing your media... This partition is /var/db... We will resize it.&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
&lt;br /&gt;
There are three partitions of interest in the webOS world that can hold some valuable data. There is /var/db (the application data store), /var/file-cache (this stores a cache of contact pictures, email attachements, and a few other things, but is generally less important), and /var itself. The one we will focus on now (that causes the most trouble) is /var/db. Later I may add notes to changing the sizes of the others.&lt;br /&gt;
&lt;br /&gt;
==== FAIR WARNING ====&lt;br /&gt;
&lt;br /&gt;
I have seen people on the webOSNation forums recommend deleting large text files from the /var/db partition that do not have a &amp;quot;.db&amp;quot; extension. DO NOT (let me repeat that '''DO NOT''') delete these files. They are database journal files. A journal is a small record of entries written to a database or filesystem that a data management system can look to in the event that it is abruptly and uncleanly shutdown. It allows the device to &amp;quot;replay&amp;quot; transactions (so to speak) if you, say, were to pull the battery because the device seemed frozen. Deleting these files can put the journal and database out of sync, and the results of that are pretty messy and require a few hours of patient database cleanup....&lt;br /&gt;
&lt;br /&gt;
== Pre-Operation Warnings ==&lt;br /&gt;
&lt;br /&gt;
As should always be noted, there is always a chance that something could go HORRIBLY wrong. As a result, I provide absolutely NO warranty of any kind. You are on your own. As always, backup your data (using whatever process makes you feel the most secure, whether it is just copying off a few beloved photos, or doing a full mem dump).&lt;br /&gt;
&lt;br /&gt;
I have only tested this on webOS 2.2.4 on a Pre3. It should work on any webOS 2.0+ device (likely including a TouchPad). If you do this on some other type of device, please report back!&lt;br /&gt;
&lt;br /&gt;
== Let's Go! ==&lt;br /&gt;
&lt;br /&gt;
Basically, what you will do is shave some space off of your /media/internal partition, and hand that over to the application database. I went safe and did about 500MB for mine. &amp;quot;Memory is cheap&amp;quot;, so why not? I'll give you the commands below.&lt;br /&gt;
&lt;br /&gt;
You can check your current usage with this command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
df -h&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I recommend getting your current usage (-h means &amp;quot;human&amp;quot;), then subtract about 512MB from it and use that number below when shrinking the media partition (My media partition was about 12.8G, so I just made it 12.2G, which gives me about 600MB available, and I enlarged my mojodb partition by 512MB, so I'll have a few MB leftover, which is fine since you may have to grow /var later on). Make sure that you have enough room to shrink your media partition! I recommend backing it up, and deleting anything to clear space if you need to.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
## Shrink the media partition&lt;br /&gt;
&lt;br /&gt;
# Need to stop the cryptofs process, or rather &amp;quot;pause&amp;quot; it&lt;br /&gt;
pkill -SIGUSR1 cryptofs&lt;br /&gt;
&lt;br /&gt;
# Unmount the /media/internal partition&lt;br /&gt;
umount /media/internal&lt;br /&gt;
&lt;br /&gt;
# Shrink the partition (Replace 12.2G with the amount of space you want to reduce to. I think that the partition is 12.8 by default?)&lt;br /&gt;
resizefat -v /dev/mapper/store-media 12.2G&lt;br /&gt;
&lt;br /&gt;
# Reduce the logical volume (make the &amp;quot;physical&amp;quot; disk smaller) 12.2G is the **SAME** number as above.&lt;br /&gt;
lvreduce -L 12.2G /dev/mapper/store-media&lt;br /&gt;
&lt;br /&gt;
# Remount&lt;br /&gt;
mount /media/internal&lt;br /&gt;
&lt;br /&gt;
# Restart the cryptofs service&lt;br /&gt;
pkill -SIGUSR2 cryptofs&lt;br /&gt;
&lt;br /&gt;
## Increase the Application Database&lt;br /&gt;
&lt;br /&gt;
# Stop the MojoDB service&lt;br /&gt;
/sbin/stop mojodb&lt;br /&gt;
&lt;br /&gt;
# Unmount the filesystem&lt;br /&gt;
umount /dev/mapper/store-cryptodb&lt;br /&gt;
&lt;br /&gt;
# Extend the file system up&lt;br /&gt;
lvextend -L 512M /dev/mapper/store-mojodb&lt;br /&gt;
&lt;br /&gt;
# Extend the encrypted size up&lt;br /&gt;
cryptsetup resize /dev/mapper/store-cryptodb&lt;br /&gt;
&lt;br /&gt;
# Resize the underlying filesystem&lt;br /&gt;
resize2fs -f -p /dev/mapper/store-cryptodb&lt;br /&gt;
&lt;br /&gt;
# Remount&lt;br /&gt;
mount /dev/mapper/store-cryptodb&lt;br /&gt;
&lt;br /&gt;
# Restart the service&lt;br /&gt;
/sbin/start mojodb&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It might be worth rebooting here, too. df -h should show that you have a roughly 512MB /var/db. The application database error should be in your past. :) The only time you may experience a serious error about the application database is if it happens to become corrupt...&lt;br /&gt;
&lt;br /&gt;
== Further reading ==&lt;br /&gt;
&lt;br /&gt;
If you are resizing your Partition like this you will most lickaly run into this problem next [[DB_quota_exceeded]], so for awareness it could be worth reading that page too. &lt;br /&gt;
&lt;br /&gt;
== Future Looking ==&lt;br /&gt;
&lt;br /&gt;
My goal is to add this feature to Tailor. What I really am considering is setting up the partition like /media/cryptofs. If you notice, it shares the same size attributes as /media/internal. That is because they are the same partition! /media/cryptofs is actually a special cryptofs partition ontop of /media/internal. I would think that one could do this to /var/db, too. This would give one the most flexibility over application installation, data storage, and media space.&lt;/div&gt;</summary>
		<author><name>RichT23</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=DB_quota_exceeded&amp;diff=21999</id>
		<title>DB quota exceeded</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=DB_quota_exceeded&amp;diff=21999"/>
		<updated>2014-06-04T16:42:23Z</updated>

		<summary type="html">&lt;p&gt;RichT23: a little more infomation, should be nicer looking!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
A Problem often encountered after completeation of the [[MojoDB Partition Resize]] process is user notice (amongst other smptions) that they can not send Email or text messages. &lt;br /&gt;
&lt;br /&gt;
In the messages log (via command line its /var/log/messages, this is a large file so might be troublesome to open via internals) or in Lumberjack you will see errors including the text &amp;quot;db: quota exceeded&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You will also notice that the db files them self's are large, you can check in /var/db/main via command line or via internals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you see that my objects.db is over 60Mb&lt;br /&gt;
 root@PigeonHawkPre:/# ls -al /var/db/main/&lt;br /&gt;
 drwx------    2 root     root          4096 Jun  2 23:57 .&lt;br /&gt;
 drwxr-xr-x    5 root     root          4096 Jun  3 02:24 ..&lt;br /&gt;
 -rw-------    1 root     root         24576 Jun  3 09:42 UsageDbName&lt;br /&gt;
 -rw-------    1 root     root             1 Dec 29  2011 _version&lt;br /&gt;
 -rw-------    1 root     root         45056 Jun  3 02:24 indexIds.db&lt;br /&gt;
 -rw-------    1 root     root      30490624 Jun  3 09:42 indexes.db&lt;br /&gt;
 -rw-------    1 root     root         69632 Jun  3 02:24 kinds.db&lt;br /&gt;
 -rw-------    1 root     root      71565312 Jun  3 09:42 objects.db&lt;br /&gt;
 -rw-------    1 root     root         16384 Jun  3 08:37 sequences.db&lt;br /&gt;
 root@PigeonHawkPre:/etc/palm# ls -lh /var/db/main/&lt;br /&gt;
 -rw-------    1 root     root       24.0K Jun  3 09:42 UsageDbName&lt;br /&gt;
 -rw-------    1 root     root           1 Dec 29  2011 _version&lt;br /&gt;
 -rw-------    1 root     root       44.0K Jun  3 02:24 indexIds.db&lt;br /&gt;
 -rw-------    1 root     root       29.1M Jun  3 09:42 indexes.db&lt;br /&gt;
 -rw-------    1 root     root       68.0K Jun  3 02:24 kinds.db&lt;br /&gt;
 -rw-------    1 root     root       68.3M Jun  3 09:42 objects.db&lt;br /&gt;
 -rw-------    1 root     root       16.0K Jun  3 08:37 sequences.db&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The size of the database is restricted ==&lt;br /&gt;
There is a quota on the size the database can reach its set in &amp;quot;/etc/palm/mojodb.conf&amp;quot;&lt;br /&gt;
# cat /etc/palm/mojodb.conf&lt;br /&gt;
 ...&lt;br /&gt;
   &amp;quot;quotas&amp;quot; : [&lt;br /&gt;
     {&amp;quot;owner&amp;quot;:&amp;quot;*&amp;quot;,&amp;quot;size&amp;quot;:20971520},&lt;br /&gt;
     {&amp;quot;owner&amp;quot;:&amp;quot;com.palm.*&amp;quot;,&amp;quot;size&amp;quot;:78643200}&lt;br /&gt;
   ],&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
I wanted to increase the size of mine to 128Mb 128*1024*1024 = '134217728'&lt;br /&gt;
&lt;br /&gt;
Via a commandline edit the max size of your database:&lt;br /&gt;
&lt;br /&gt;
I'm my case I changed the &amp;quot;78643200&amp;quot; to &amp;quot;134217728&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
so my Quota now looks like this:&lt;br /&gt;
&lt;br /&gt;
# cat /etc/palm/mojodb.conf&lt;br /&gt;
 ...&lt;br /&gt;
   &amp;quot;quotas&amp;quot; : [&lt;br /&gt;
     {&amp;quot;owner&amp;quot;:&amp;quot;*&amp;quot;,&amp;quot;size&amp;quot;:20971520},&lt;br /&gt;
     {&amp;quot;owner&amp;quot;:&amp;quot;com.palm.*&amp;quot;,&amp;quot;size&amp;quot;:134217728}&lt;br /&gt;
   ],&lt;br /&gt;
 ...&lt;br /&gt;
&lt;br /&gt;
the just restart the mojodb (to be safe you should probably restart your device)&lt;br /&gt;
&lt;br /&gt;
 # Stop the MojoDB service&lt;br /&gt;
 /sbin/stop mojodb&lt;br /&gt;
&lt;br /&gt;
 # Start the MojoDB service&lt;br /&gt;
 /sbin/start mojodb&lt;/div&gt;</summary>
		<author><name>RichT23</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=DB_quota_exceeded&amp;diff=21997</id>
		<title>DB quota exceeded</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=DB_quota_exceeded&amp;diff=21997"/>
		<updated>2014-06-03T10:01:43Z</updated>

		<summary type="html">&lt;p&gt;RichT23: DRAFT&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
A Problem often encountered after completeation of the [[MojoDB Partition Resize]] process is user notice (amongst other smptions) that they can not send Email or text messages. &lt;br /&gt;
&lt;br /&gt;
In the messages log (via command line its /var/log/messages, this is a large file so might be troublesome to open via internals) or in Lumberjack you will see errors including the text &amp;quot;db: quota exceeded&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You will also notice that the db files them self's are large, you can check in /var/db/main via command line or via internals.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you see that my objects.db is over 60Mb&lt;br /&gt;
 root@PigeonHawkPre:/# ls -al /var/db/main/&lt;br /&gt;
 drwx------    2 root     root          4096 Jun  2 23:57 .&lt;br /&gt;
 drwxr-xr-x    5 root     root          4096 Jun  3 02:24 ..&lt;br /&gt;
 -rw-------    1 root     root         24576 Jun  3 09:42 UsageDbName&lt;br /&gt;
 -rw-------    1 root     root             1 Dec 29  2011 _version&lt;br /&gt;
 -rw-------    1 root     root         45056 Jun  3 02:24 indexIds.db&lt;br /&gt;
 -rw-------    1 root     root      30490624 Jun  3 09:42 indexes.db&lt;br /&gt;
 -rw-------    1 root     root         69632 Jun  3 02:24 kinds.db&lt;br /&gt;
 -rw-------    1 root     root      71565312 Jun  3 09:42 objects.db&lt;br /&gt;
 -rw-------    1 root     root         16384 Jun  3 08:37 sequences.db&lt;br /&gt;
 root@PigeonHawkPre:/etc/palm# ls -lh /var/db/main/&lt;br /&gt;
 -rw-------    1 root     root       24.0K Jun  3 09:42 UsageDbName&lt;br /&gt;
 -rw-------    1 root     root           1 Dec 29  2011 _version&lt;br /&gt;
 -rw-------    1 root     root       44.0K Jun  3 02:24 indexIds.db&lt;br /&gt;
 -rw-------    1 root     root       29.1M Jun  3 09:42 indexes.db&lt;br /&gt;
 -rw-------    1 root     root       68.0K Jun  3 02:24 kinds.db&lt;br /&gt;
 -rw-------    1 root     root       68.3M Jun  3 09:42 objects.db&lt;br /&gt;
 -rw-------    1 root     root       16.0K Jun  3 08:37 sequences.db&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The size of the database is restricted&lt;/div&gt;</summary>
		<author><name>RichT23</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Portal:Accessing_Linux&amp;diff=21973</id>
		<title>Portal:Accessing Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Portal:Accessing_Linux&amp;diff=21973"/>
		<updated>2014-04-08T19:59:19Z</updated>

		<summary type="html">&lt;p&gt;RichT23: Adding a link to the Archive download page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is currently available in two languages:&lt;br /&gt;
:[[Image:Australia.png]] [[Image:USA.png]] [[Portal:Accessing Linux]]&lt;br /&gt;
:[[Image:China.png]] [[Portal:Accessing Linux-ZH]]&lt;br /&gt;
&lt;br /&gt;
__notoc__&lt;br /&gt;
{{portal-one-column-blue&lt;br /&gt;
|header=Accessing Linux on the Pre or the Pre Emulator&lt;br /&gt;
|column1=&lt;br /&gt;
The Palm Pre is a Linux based device.  Palm provides a simple method to access Linux running on the Pre or the Pre Emulator. A terminal program called ''novaterm'' is bundled with the freely available SDK, enabling command line access to your device (see below for instructions).&lt;br /&gt;
&lt;br /&gt;
Once you have command line access to Linux, everything else is a process of installing a ''community standard library'' of Linux programs so that users have the same tools and options available to them. (For example, you can [[OpenSSH_Install|install openssh]] or [[Dropbear_Install|dropbear]] enabling shell access to your device.) Once this is process is completed, pretty much anything you can do on a Linux box you can also do on the Pre or the Pre Emulator. &lt;br /&gt;
&lt;br /&gt;
Notice, that the described procedure below is not compulsorily necessary for you to just install further linux software packages to your device. The [[Application:Preware|Preware]] application manager (an app you install to your device) is capable of installing these as well.&lt;br /&gt;
&lt;br /&gt;
The following procedures will walk you through the process of obtaining initial command line access to Linux via novaterm on the Pre or the Pre Emulator, and installing the community standard software packages. The same instructions apply to the Pixi as well.&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{portal-two-columns&lt;br /&gt;
|column1=&lt;br /&gt;
== Before you start ==  &lt;br /&gt;
&lt;br /&gt;
Please make a note of this page:  [[How To Recover]]&lt;br /&gt;
&lt;br /&gt;
If you are unfamiliar with basic Linux command usage, you should visit this page: [[Basic_Linux_Use|Basic Linux Use]]&lt;br /&gt;
&lt;br /&gt;
===Disclaimer===&lt;br /&gt;
Enacting any set of instructions from this site has the (remote, but greater than zero) potential to void your warranty.  Our intention and the specific design of all instructions is such that you should be able to recover using the [http://www.palm.com/ROM webOS Doctor] should anything go wrong, and put your Pre back to a state which is indistinguishable from a factory-new Pre, but we give no guarantee.  Use any information from this site at your own risk.  At the very least, you should be prepared to lose all data on your phone at any time.  We cannot tell you what you should do - we provide the information, but it's up to your own sense of personal responsibility to determine what you do with that information.  '''We require you to use the [http://www.palm.com/ROM webOS Doctor] to put your Pre back to factory condition before contacting Palm or your cellular carrier for service or support.'''&lt;br /&gt;
&lt;br /&gt;
You might also want to consider backing up any files you have in the usb drive portion of the Pre. &lt;br /&gt;
|column2=&lt;br /&gt;
== Procedure: ==&lt;br /&gt;
&lt;br /&gt;
In general, simply installing the Palm SDK gives you everything you need for full access to the Linux operating system on the Pre or Pixi.  There is no special &amp;quot;rooting&amp;quot; or &amp;quot;jailbreaking&amp;quot; process.  Simply installing the SDK provides you with unlimited access to the Linux operating system logged in as the root user.  Palm does not see this as a bad thing. '''Palm''' provides all these tools for download by anyone, anytime, for free. &lt;br /&gt;
&lt;br /&gt;
# Download the [http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;layout=page&amp;amp;id=1788&amp;amp;Itemid=321# Palm SDK].&lt;br /&gt;
# Install it using the installation instructions for [http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;layout=page&amp;amp;id=1545&amp;amp;Itemid=55 Mac], [http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;layout=page&amp;amp;id=1585&amp;amp;Itemid=55 Linux], or [http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;layout=page&amp;amp;id=1661&amp;amp;Itemid=55 Windows]. These links to the Palm site point to a page with broken download links, some older still working links are available on the Web Archives version of this page [https://web.archive.org/web/20121023072516/https://developer.palm.com/content/resources/develop/sdk_pdk_download.html Web Archive Page]&lt;br /&gt;
# Enable dev mode on your Pre:&lt;br /&gt;
## In Card view or in the Launcher application, type the following:   webos20090606&lt;br /&gt;
## Tap the resulting Developer Mode Enabler icon.&lt;br /&gt;
## In the application, move the Developer Mode slider to the On position.&lt;br /&gt;
## Tap Reset the Device . &lt;br /&gt;
##* When reset is complete, Developer mode is enabled.&lt;br /&gt;
# Plug the device into the computer via the USB cable, and select &amp;quot;Charge only.&amp;quot;  &lt;br /&gt;
# The next step varies: &lt;br /&gt;
#* On Mac or Linux, type '''novaterm''' in a command (terminal) window to directly access the Linux command line.&lt;br /&gt;
#* On Windows you will need to download and install a novaterm program. &lt;br /&gt;
#** On 32 bit Windows download [http://tkgeisel.com/stuff/novaterm-1.zip novaterm1.zip] and unzip it into the \program files\palm\sdk\bin directory.  &lt;br /&gt;
#** On 64 bit Windows download [http://vocshop.com/stuff/novaterm64.zip novaterm64.zip] and unzip it into the \program files\palm\sdk\bin directory.  &lt;br /&gt;
#**Then, just like the Mac and Linux users you can just type '''novaterm'''.&lt;br /&gt;
&lt;br /&gt;
'''At this point you will have a window with a prompt that says   root@webos-device:   or something similar. &lt;br /&gt;
&lt;br /&gt;
You are now logged in as root on your webOS device and can do anything you would normally do on a Linux device. &lt;br /&gt;
&lt;br /&gt;
Please be careful, you can seriously bork your phone now.  '''&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT NOTE:''' &lt;br /&gt;
With the addition of the ability to  install Optware packages to Preware, unless you have a need or desire to type commands into the native Linux shell of your Palm device, there is no need to use the novaterm terminal to log into your devices. ''' Webos Quick Install''' (a java program for your desktop) and '''Preware''' (an app to run on your device) '''are fully capable of installing any Optware IPK (including *.patch and *.diff) to Palm devices'''. Linux command line access is needed by very few people.  If you came here from a web page that talked about &amp;quot;root access&amp;quot; or &amp;quot;rooting your Pre&amp;quot; be aware that most of the instructions which require root access have been superseded. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
{{portal-two-columns&lt;br /&gt;
|column1=&lt;br /&gt;
== Advanced Topics ==&lt;br /&gt;
&lt;br /&gt;
* [[Adding Disks to the Emulator]]&lt;br /&gt;
* [[Backing_Up_via_Rsync|Backing Up via Rsync]]&lt;br /&gt;
&lt;br /&gt;
|column2=&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
* [[Tutorials_Linux_DDNS_for_EVDO|DDNS for EVDO]]&lt;br /&gt;
* [[Next_steps|Set up users, Optware, and access]] '''DEPRECATED'''&lt;br /&gt;
* [[Applying_Patches|Applying Patches]] '''DEPRECATED''' &lt;br /&gt;
* [[Setup_SFTP|Setup SFTP]] '''DEPRECATED'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>RichT23</name></author>
	</entry>
</feed>