Android ADB 실행 권한이 적용되지 않습니다


0

adb 파일에 대한 실행 권한을 적용하려고 시도했지만 성공하지 못했습니다. 여기 내가 한 일이 있습니다.

root@themanish:/media/BACKUP/AndroidBackup/android-sdk-linux/platform-tools# chmod +x adb
root@themanish:/media/BACKUP/AndroidBackup/android-sdk-linux/platform-tools# ls -l
total 2136
-rw------- 1 themanish themanish 1231255 Jun  6 17:38 adb
drwx------ 1 themanish themanish       0 Jun  6 17:38 api
-rw------- 1 themanish themanish  197710 Jun  6 17:38 fastboot
-rw------- 1 themanish themanish  727881 Jun  6 17:38 NOTICE.txt
-rw------- 1 themanish themanish   16648 Jun  6 17:38 source.properties
drwx------ 1 themanish themanish    4096 Jun  6 17:38 systrace

여전히 권한은 -rw입니다.

답변:


0

아마도 / media / BACKUP은 FAT 또는 NTFS 드라이브이며 유닉스 사용 권한이 아닙니다.

가능한 해결책:

  • 해당 파일을 ext4 또는 유사한 파티션으로 이동
  • ext4 또는 유사한 파일 시스템으로 드라이브 포맷
  • 강제 실행 권한을 다시 마운트하십시오. 기기 이름 XXX를 알고있는 경우 :

sudo umount /media/BACKUP sudo mount /dev/XXX /media/BACKUP -o exec,umask=000,fmask=000


나는 그 사실을 몰랐다. 시도해 볼게요.
TheManish

효과가있었습니다. 고맙습니다.
TheManish
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.