Difference between revisions of "Application:Terminal"

From WebOS Internals
Jump to navigation Jump to search
(Prerequisites.)
(Use links instead of move.)
Line 25: Line 25:
 
ipkg -o /var update
 
ipkg -o /var update
 
ipkg -o /var install x-webosinternals-termplugin
 
ipkg -o /var install x-webosinternals-termplugin
mv /var/usr/lib/BrowserPlugins/termplugin.so /usr/lib/BrowserPlugins/
+
ln -s /var/usr/lib/BrowserPlugins/termplugin.so /usr/lib/BrowserPlugins/
 
ipkg -o /var install org.webosinternals.terminal
 
ipkg -o /var install org.webosinternals.terminal
 
</source>
 
</source>
Line 36: Line 36:
  
 
<source lang="text">
 
<source lang="text">
 +
rm /usr/lib/BrowserPlugins/termplugin.so
 
ipkg -o /var remove org.webosinternals.terminal
 
ipkg -o /var remove org.webosinternals.terminal
mv /usr/lib/BrowserPlugins/termplugin.so /var/usr/lib/BrowserPlugins/
 
 
ipkg -o /var remove x-webosinternals-termplugin
 
ipkg -o /var remove x-webosinternals-termplugin
 
rm /var/etc/ipkg/preware.conf
 
rm /var/etc/ipkg/preware.conf

Revision as of 13:32, 24 July 2009

Installation

You need to be logged in as root with a writeable filesystem. Instructions for both those things can be found elsewhere on this wiki.

<source lang="text"> mkdir -p /var/etc/ipkg/ echo "src/gz all http://ipkg.preware.org/feeds/preware/all" > /var/etc/ipkg/preware.conf </source>

If you are on the Pre, type:

<source lang="text"> echo "src/gz all http://ipkg.preware.org/feeds/preware/armv7" >> /var/etc/ipkg/preware.conf </source>

If you are on the Emulator, type:

<source lang="text"> echo "src/gz all http://ipkg.preware.org/feeds/preware/i686" >> /var/etc/ipkg/preware.conf </source>

Then type:

<source lang="text"> ipkg -o /var update ipkg -o /var install x-webosinternals-termplugin ln -s /var/usr/lib/BrowserPlugins/termplugin.so /usr/lib/BrowserPlugins/ ipkg -o /var install org.webosinternals.terminal </source>

Then reboot.

Removal

You need to be logged in as root with a writeable filesystem. Instructions for both those things can be found elsewhere on this wiki.

<source lang="text"> rm /usr/lib/BrowserPlugins/termplugin.so ipkg -o /var remove org.webosinternals.terminal ipkg -o /var remove x-webosinternals-termplugin rm /var/etc/ipkg/preware.conf </source>

Then reboot.