Mobile/Android
adb: error: failed to copy 'local_filePath' to 'remote_path': remote Read-only file system
out of coding
2018. 4. 2. 14:54
adb에 file을 밀어 넣으려고 하다가 에러가 발생하여서 찾아보았더니 해결 방법이 있네요.
에러 메세지는!
1 | adb: error: failed to copy 'local_filePath' to 'remote_path': remote Read-only file system | cs |
해결 방법은 아래와 같이 타이핑하면 되고... 안되면 다른 블로그를 찾아주세요. ㅠㅠ
1 2 3 4 5 | adb shell su mount -o rw,remount rootfs / chmod 777 /path/to/copy/in exit | cs |
아... su가 안 먹히면 sudo를 이용하세요