Difference between revisions of "Blocking Updates"

From WebOS Internals
Jump to navigation Jump to search
(just stopping UpdateDaemon did it for me. added note about 1.0.4)
Line 9: Line 9:
 
Some may want to block the 1.0.4 update, as it prevents apps from being installed through email link.
 
Some may want to block the 1.0.4 update, as it prevents apps from being installed through email link.
  
<pre>
+
cd /usr/bin
cd /usr/bin
+
mount -o remount,rw /
mount -o remount,rw /
+
chmod -x UpdateDaemon
chmod -x UpdateDaemon
+
mount -o remount,ro /
mount -o remount,ro /
 
</pre>
 
  
No more executing the update program.
+
Reboot, afterwards no more executing the update program.
 +
 
 +
'''*note*''' if you do not want to reboot from shell you can execute
 +
 
 +
killall UpdateDaemon

Revision as of 04:56, 24 July 2009

Here is a quick and dirty way to block webOS updates.

We do not recommend doing this.

webOS is in a very early stage. One webOS-internals team member (tharris) has identified over seven security errors in webOS as of 20 July 2009, and that process is far from done.

Additionally, updates like the forthcoming 1.1 will make available new functions including accelerometer to the mojo interface.

Some may want to block the 1.0.4 update, as it prevents apps from being installed through email link.

cd /usr/bin
mount -o remount,rw /
chmod -x UpdateDaemon
mount -o remount,ro /

Reboot, afterwards no more executing the update program.

*note* if you do not want to reboot from shell you can execute

killall UpdateDaemon