mecha2012
Member
- Feb 7, 2011
- 31
- 1
I'm having trouble with the trackpad not scrolling through the recent commands in terminal emulator very annoying.
So my solution for this is this
Download this bash
In terminal emulator type this to mount the system as read/write
su
mount -o rw,remount -t yaffs2 /dev/block/mtdblk3 /system
Now copy the file that you've downloaded to the /system/bin/ directory
su
cp /sdcard/download/bash /system/bin/bash
Change permission to that file
chmod 0777 /system/bin/bash (note instead of bash you can replace it with an * if you are lazy)
Press menu on the terminal emulator go to preference and select initial command
And type this
su -c bash
Menu again and reset terminal start terminal emulator again and it should say bash4.1#
You can now using the trackpad history feature and the tab button so you don't have to type everything. There's probably other ways to fix the trackpad history but this is what I preferred as I used to use bash during my study.
If you have problems with busybox basic functions like cp mv etc... just download the busybox app from the market and reinstalling it that way "the easy way" or you can follow a tutorial somewhere in the development section how you can link those commands to busybox so you don't have to type busybox cp etc....
So my solution for this is this
Download this bash
In terminal emulator type this to mount the system as read/write
su
mount -o rw,remount -t yaffs2 /dev/block/mtdblk3 /system
Now copy the file that you've downloaded to the /system/bin/ directory
su
cp /sdcard/download/bash /system/bin/bash
Change permission to that file
chmod 0777 /system/bin/bash (note instead of bash you can replace it with an * if you are lazy)
Press menu on the terminal emulator go to preference and select initial command
And type this
su -c bash
Menu again and reset terminal start terminal emulator again and it should say bash4.1#
You can now using the trackpad history feature and the tab button so you don't have to type everything. There's probably other ways to fix the trackpad history but this is what I preferred as I used to use bash during my study.
If you have problems with busybox basic functions like cp mv etc... just download the busybox app from the market and reinstalling it that way "the easy way" or you can follow a tutorial somewhere in the development section how you can link those commands to busybox so you don't have to type busybox cp etc....