Search This Blog

Tuesday, July 7, 2015

Terminal နဲ႔ command ေပးၿပီး Android ေပၚမွာ ခိုင္းေစလို႔ရတယ္လို႔ သိရပါတယ္

ANDROID TERMINAL EMULATOR အတြက္ linux commend မ်ား.
Android Terminal Emulator ဆိုတာ
 
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
 
ထပ္ပီး အေသးစိတ္ကုိ ေလ႕လာခ်င္ ေသးတယ္ ဆုိ ရင္ ေအာက္က လင္႕ မွာ သြား ေရာက္ ေလ႕လာ နုိင္ပါတယ္
 
http://www.droidforums.net/threads/linux-commands-on-android.26036/
 credit Yan Naing Oo

No comments:

Post a Comment