Motorola Droid Forum Logo
Motorola Droid Forum Logo - Right

Milestone Browser and Terminal Emulator

This is a discussion on Milestone Browser and Terminal Emulator within the Droid Hacks forums, part of the Droid Hacking category; Can someone give me directions from these instructions AllDroid - View topic - [release] Multitouch browser for Droid (2.0.1) v1.0RC2 using terminal emulator? I really ...

Navigation Navigation » Droid Forum - Verizon Droid & the Motorola Droid Forum > Droid Hacking > Droid Hacks » Milestone Browser and Terminal Emulator

Droid Hacks Discussions on hacking and rooting Android Phones. Unofficial DROID hacks belong in here.

Reply
 
LinkBack Thread Tools Display Modes
Old 01-20-2010, 07:37 PM   #1
Master Droid
 
taypotts's Avatar
 
Member #2134
Join Date: Nov 2009
Posts: 419
Phone: Moto freakin Droid
Milestone Browser and Terminal Emulator

Can someone give me directions from these instructions AllDroid - View topic - [release] Multitouch browser for Droid (2.0.1) v1.0RC2 using terminal emulator? I really don't want to use adb. Thanks!!
taypotts is offline   Reply With Quote
Old 01-20-2010, 08:02 PM   #2
Master Droid
 
taypotts's Avatar
 
Member #2134
Join Date: Nov 2009
Posts: 419
Phone: Moto freakin Droid
no one?
taypotts is offline   Reply With Quote
Old 01-20-2010, 08:16 PM   #3
Master Droid
 
taypotts's Avatar
 
Member #2134
Join Date: Nov 2009
Posts: 419
Phone: Moto freakin Droid
Could this work? Anyone?


Now for the droid multitouch browser. Download the file from this link

RapidShare: 1-CLICK Web hosting - Easy Filehosting


and extract it. copy both browser.apk and libwebmtcore.so to the root of your sd card. Then download Terminal Emulator for free from the Android Market. Launch it and type these commands in one at a time and press the enter key (the button directly below delete on the hard keyboard) after each one.

su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
rm /system/app/Browser.odex
cat /sdcard/Browser.apk > /system/app/Browser.apk
cat /sdcard/libmtwebcore.so > /system/lib/libmtwebcore.so
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot

*Note: when i typed the
rm /system/app/Browser.odex it said file does not exist, yet it still worked for me. Some people say this could cause problems down the line, but if it didnt exist in the first place on my phone (i checked ) than it is basically deleted.
taypotts is offline   Reply With Quote
Old 01-20-2010, 08:58 PM   #4
Master Droid
 
taypotts's Avatar
 
Member #2134
Join Date: Nov 2009
Posts: 419
Phone: Moto freakin Droid
this DOES work! whoo!! I now have pinch to zoom!!! I'm thrilled right now! haha
taypotts is offline   Reply With Quote
Old 01-20-2010, 11:06 PM   #5
Senior Droid
 
vpshockwave's Avatar
 
Member #16076
Join Date: Dec 2009
Posts: 164
Phone: Droid
Originally Posted by taypotts View Post

*Note: when i typed the
rm /system/app/Browser.odex it said file does not exist, yet it still worked for me. Some people say this could cause problems down the line, but if it didnt exist in the first place on my phone (i checked ) than it is basically deleted.
I had this problem when I first did it too. I'm not sure what the .odex file is, but it didn't seem to make a difference for me either.
vpshockwave is offline   Reply With Quote
Old 01-20-2010, 11:11 PM   #6
Master Droid
 
713King's Avatar
 
Member #5948
Join Date: Nov 2009
Location: Houston, Tx
Posts: 269
Phone: Droid
i have to have a rooted phone in order for me to push this one right? in that case i might as well root the phone lol
713King is offline   Reply With Quote
Old 01-20-2010, 11:12 PM   #7
Senior Droid
 
vpshockwave's Avatar
 
Member #16076
Join Date: Dec 2009
Posts: 164
Phone: Droid
Originally Posted by 713King View Post
i have to have a rooted phone in order for me to push this one right? in that case i might as well root the phone lol
Yeah I don't think it'll let you delete the old browser.apk unless you have root. Or maybe it will? I'm honestly not sure. I'd root anyway. It really can't hurt.
vpshockwave is offline   Reply With Quote
Old 01-20-2010, 11:13 PM   #8
Master Droid
 
713King's Avatar
 
Member #5948
Join Date: Nov 2009
Location: Houston, Tx
Posts: 269
Phone: Droid
thank you, because I do like how 2.1 looks like and it says it works on 2.1
713King is offline   Reply With Quote
Old 01-20-2010, 11:48 PM   #9
Master Droid
 
Newton122189's Avatar
 
Member #1942
Join Date: Nov 2009
Location: Virginia
Posts: 553
Phone: DarkEdge FRF84B Gold
Originally Posted by taypotts View Post
Could this work? Anyone?


Now for the droid multitouch browser. Download the file from this link

RapidShare: 1-CLICK Web hosting - Easy Filehosting


and extract it. copy both browser.apk and libwebmtcore.so to the root of your sd card. Then download Terminal Emulator for free from the Android Market. Launch it and type these commands in one at a time and press the enter key (the button directly below delete on the hard keyboard) after each one.

su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
rm /system/app/Browser.odex
cat /sdcard/Browser.apk > /system/app/Browser.apk
cat /sdcard/libmtwebcore.so > /system/lib/libmtwebcore.so
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot

*Note: when i typed the
rm /system/app/Browser.odex it said file does not exist, yet it still worked for me. Some people say this could cause problems down the line, but if it didnt exist in the first place on my phone (i checked ) than it is basically deleted.
i actually made the original apk and odex into .bak files that way i could go back if i wanted to, of course i did a nandroid backup too but i figured it couldnt hurt to have a backup without the nandroid

if anyone is interested i entered this into adb, or terminal

su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
mv /system/app/Browser.odex /system/app/Browser.odex.bak
mv /system/app/Browser.apk /system/app/Browser.apk.bak
cat /sdcard/Browser.apk > /system/app/Browser.apk
cat /sdcard/libmtwebcore.so > /system/lib/libmtwebcore.so
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot

and just to report my browser does have multi touch and it seems to be working very well
Newton122189 is offline   Reply With Quote
Old 01-21-2010, 01:23 PM   #10
Master Droid
 
Newton122189's Avatar
 
Member #1942
Join Date: Nov 2009
Location: Virginia
Posts: 553
Phone: DarkEdge FRF84B Gold
by the way if you do this the way i detailed above then it is reversible without reverting to a backup, i have this confirmed working

***IF DONE THE WAY I LISTED ABOVE***

abd shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
mv /system/app/Browser.apk /system/app/Browser.apk.mt.bak
mv /system/lib/libmtwebcore.so /system/lib/libmtwebcore.so.bak
mv /system/app/Browser.apk.bak /system/app/Browser.apk
mv /system/app/Browser.odex.bak /system/app/Browser.odex
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot

that should take your backed up browser (if you did it the way i listed above) and install it and it will turn your multi touch browser into a backup
Newton122189 is offline   Reply With Quote
Reply



Lower Navigation
Go Back   Droid Forum - Verizon Droid & the Motorola Droid Forum > Droid Hacking > Droid Hacks

Tags
milestone browser, terminal emulator

Divider
Droid Accessories Store


Visitors found this page by searching for these keywords:

droid browser emulator

,

droid browser simulator

,

milestone terminal

,
motorola milestone emulator
,
what do u type in termianl emulator in milestone?
,
terminal milestone
,
milestone simulator
,
download browser.odex file for motorola droid
,
motorola milestone emulador
,
motorola milestone terminal
,
emuladores para milestone download
,
using android terminal on motorola milestone
,
milestone emulator
,
droid explorer odex
,
terminal emulatorapp for droid
,
Need a Terminal Emulator App for Droid
,
DROID TERMINAL EMULATER
,
browser emulator for droid
,
o Motorola milestone emulador
,
motorola droid browser emulator
,
moto milestone terminal
,
milestone command terminal
,
milestone better terminal
,
motorola milestone simulation
,
motorola milestone simulator download

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with Terminal, deleted Browser.apk blake New Member Introductions & Site Assistance 1 01-24-2010 09:08 AM
Terminal Emulator tony1208 Droid Hacks 5 01-18-2010 08:25 PM
Can I install BusyBox using the Terminal Emulator? blueyzfr6 Droid Hacks 1 01-14-2010 06:16 PM
PC Terminal emulator, GUI? Flowah Droid Hacks 8 12-15-2009 02:47 AM