- Need root
- Check $TERM is vt100 or not
- adb shell
- echo $TERM
- Yes then go on, or download other terminal info from http://z4ziggy.wordpress.com/2010/09/17/a-short-guide-to-install-midnight-commander-on-android/
- Download htop and libncurses.so for arm, find on web
- Run script
# /bin/bash
adb remount
adb push htop /system/bin/
adb shell chmod 755 /system/bin/htop
adb push libncurses.so /system/lib
adb shell mkdir /system/usr/share/terminfo
adb shell mkdir /system/usr/share/terminfo/v
adb push vt100 /system/usr/share/terminfo/v/
adb shell 'echo export TERMINFO="/system/usr/share/terminfo/" >> /system/etc/mkshrc'
adb shell 'echo busybox resize >> /system/etc/mkshrc'
adb remount