1. ホーム
  2. アンドロイド

adb remount failed: リマウントに失敗しました。パーミッションが拒否されました リマウントに失敗しました

2022-02-28 16:50:16
<パス

少し前に、MDMプロジェクトの一部を行い、この段階でようやく便利になったのですが、新しいデバイスが届いた後、再マウントできない、つまり、読み取り/書き込みのアクセスができないことに気づきました

最初のadbシェルは、それが失敗したことがわかりました、まあ、いくつかのポートが取られなければならない、さあ、その小さな雌犬を取得しよう、その

// Error appearance
* failed to start daemon * error: unknown host service
error: unknown host service
// Command
netstat -aon|findstr "5037"
// Let's see who is so bold
tasklist|findstr "18212"
// Direct task manager, kill him, usually 360 mobile assistant, App Store and so on

<イグ

次にリマウントの失敗を修正する

remount failed: Permission denied
adb remount failed
// See if any devices are connected to the computer
adb devices
// Enter shell mode
adb shell
// Enter the command in the shell (you don't need to type the # at the top of the command)
# su 
# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system 
# chmod 777 /system 
# cd system
# chomd 777 data
# cd data
# chomd 777 local
# cd local
# exit

// See if any devices are connected to the computer
adb devices
// Enter shell mode
adb shell
// Enter the command in the shell (you don't need to type the # at the top of the command)
# su 
# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system 
# chmod 777 /system 
# cd system
# chomd 777 data
# cd data
# chomd 777 local
# cd local
# exit

次のステップは通常通り、apkを携帯電話にプッシュするだけです。

詳しくは Androidシステムアプリ開発コンテンツ