Android Telefonlarda Terminal Emilator-Emulator. Command Prompt Shell Komutları

Paylaş.

Herkeze Merhabalar,

Android root özelliğine sahip telefonlarda Command Shell komutlarını aşağıdaki gibi çalıştırabilirsiniz.

Tek yapmanız gereken Termina Emulator programını store dan indirmek : https://play.google.com/store/apps/d…roidterm&hl=en

Komut Örnekleri aşağıdaki gibidir.

Code:
su

Some useful commands:

Turning device off (Turns your device off very fast!! ):

Code:
poweroff

Rebooting:

Code:
reboot

Rebooting to Recovery

Code:
reboot recovery

Rebooting to download mode:

Code:
reboot download

Forcing Most Apps to install to SDcard(Root needed with Terminal Emulator, no need root with ADB):

Code:
pm set-install-location 2

Mounting R/W in system(Use with caution)

Code:
mount -o rw,remount -t /system

If above one doesnt work, try this.

Code:
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system

Unmounting R/W in system.

Code:
mount -o ro,remount -t /system

If above code doesn’t work, try this

Code:
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system

Moving files from sdcard to system (Use after mounting R/W):

Code:
busybox cp /sdcard/<path> /system/<path>

Example: busybox cp /sdcard/demo/framework-res.apk /system/framework/

Changing file permissions to rw-r–r– (Use after mounting R/W):

Code:
chmod 644 /<path>

Example 1: chmod 644 /system/app/mms.apk
Example 2: chmod 644 /system/app/*.apk (This command changes the file permission of all apps in the folder to rw-r–r–)

Removing files (For System files, Use after mounting R/W)

Code:
rm /<path>

Example: rm /system/app/demoapp.apk

Removing Folders:

Code:
rmdir /<path>

Get info you build.prop values

Code:
getprop

Making a new folder:

Code:
mkdir /<path>

Example: mkdir /sdcard/newfolder

Teşekkürler.

 

VN:F [1.9.22_1171]
Rating: 5.5/10 (2 votes cast)
VN:F [1.9.22_1171]
Rating: 0 (from 0 votes)
Android Telefonlarda Terminal Emilator-Emulator. Command Prompt Shell Komutları, 5.5 out of 10 based on 2 ratings