Difference between revisions of "Blocking Updates"

From WebOS Internals
Jump to navigation Jump to search
(credit to bottom, comments to discussion)
(just stopping UpdateDaemon did it for me. added note about 1.0.4)
Line 3: Line 3:
 
'''We do not recommend doing this.'''
 
'''We do not recommend doing this.'''
  
webOS is in a very early stage.  One webOS-internals team member (tharris) has through 20 July 2009 identified over seven security errors in webOS, and that process is far from done.   
+
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 (as of 20 July 2009) will make available new functions including accelerometer to the mojo interface.   
+
Additionally, updates like the forthcoming 1.1 will make available new functions including accelerometer to the mojo interface.   
  
This is only for the truly paranoic -  1.0.3 did not break anything, and we always have the older webOS Doctor to reinstall an older version of webOS if something does get broken in the future.  
+
Some may want to block the 1.0.4 update, as it prevents apps from being installed through email link.
  
Never the less, if you insist on turning off updates, this should work.
+
<pre>
 
 
<pre><nowiki>
 
 
cd /usr/bin
 
cd /usr/bin
 
mount -o remount,rw /
 
mount -o remount,rw /
chmod -x *Update*
+
chmod -x UpdateDaemon
 
mount -o remount,ro /
 
mount -o remount,ro /
</nowiki></pre>
+
</pre>
  
 
No more executing the update program.
 
No more executing the update program.
 
 
'' brought to us by "psykoz"''
 
''Ported by hopspitfire''
 

Revision as of 18:35, 20 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 /

No more executing the update program.