
Android Terminal Emulator ဆိုတာ Terminal နဲ႔ command ေပးၿပီး Android ေပၚမွာ ခိုင္းေစလို႔ရတယ္လို႔ သိရပါတယ္.. Linux ကို အေျခခံထားတဲ့ Open Source ျဖစ္တဲ့ ဒီ Android Terminal Emulator ကို Developer ေတြ အမ်ားဆံုးအသံုးျပဳၾကပါတယ္.. Linux မွာ Software တင္တာတို႔၊ အျခား ခိုင္းေစတာတို႔ကို Terminal ကေန ေခၚၿပီး ခိုင္းသလို Android ေပၚမွာလည္း Android Terminal Emulator ကိုသံုးၿပီး Command ေပးခိုင္းေစႏိုင္ပါတယ္.. Fix Bug ေတြကို ေကာင္းေကာင္း
ေရးသားႏိုင္ပါတယ္.. လုပ္နည္းအျပည့္အစံုနဲ႔ အသံုးတည့္ပံုကိုေတာ့ ကၽြန္ေတာ္လည္း နားမလည္ပါဘူး.. Android Terminal Emulator 1.0.54 က ေနာက္ဆံုးထြက္ျဖစ္ၿပီး GooglePlay မွာေတာ့ Free Install ရႏိုင္ပါတယ္.. ကၽြန္ေတာ္က ကြန္ပ်ဴတာကေန ေဒါင္းလို႔ရေအာင္ တင္ပးျခင္းသာျဖစ္ပါတယ္..





Access your Android's built-in Linux command line shell. Unleash your inner geek!
Quick FAQ:
+ If you are having trouble entering text, try installing the free "Hacker's Keyboard IME". (Especially if you have an HTC or Samsung device.)
+ This app isn't a game emulator.
+ This app won't help you root your phone or change your phone's IMIE.
+ You need to know (or be willing to learn) how to use Linux command line to use this app.
+ You may want to install a set of command line utilities like "Busy Box" in order to add commands beyond the commands that come built into your Android device.
Want to know more about Android Terminal Emulator?
Join the G+ community: #Android Terminal Emulator
https://plus.google.com/u/0/communities/106164413936367578283
Or check out the wiki:
http://github.com/jackpal/Android-Terminal-Emulator/wiki
Android Terminal Emulator is an open source project. Well written patches to fix bugs or add new features are welcome!
Want to add or improve a translation of Android Terminal Emulator? See https://github.com/jackpal/Android-Terminal-Emulator/wiki/Translating-to-Other-Languages for details.
Useful commands(အသံုးခ် Command မ်ား)
Root Access
$ su -
Change directory
From current directory to '/system':
# cd /system
From current directory (assume '/system') to one down with the name 'app' (now in '/system/app'):
# cd app
From current directory, one up (back to '/system'):
# cd ..
List all files
List all files in current directory:
# ls
List all files in '/system/app':
# ls /system/app
List all files with the word 'Time' in it (case sensitive):
# ls *Time*
Mount
Get mount info:
# mount
Mount '/system' as read-write:
# mount -o rw,remount -t yaffs2 /dev/block/mtdblock0 /system
Mount '/system' as read-only:
# mount -o ro,remount -t yaffs2 /dev/block/mtdblock0 /system
Move, Copy and Remove
Move file from a to b
# busybox mv a b
Copy file from a to b
# busybox cp a b
Remove file a
# busybox rm a
Reboot
# reboot
Thanks for useful command to forum xda
Credit To : Maung Pauk