"Không có tập tin hoặc thư mục"? Không thể đẩy tệp với `adb`


-2
antonio@antonio-N150P-N210P-N220P:~$ adb push rom.zip /sdcard/
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
cannot stat 'rom.zip': No such file or directory
antonio@antonio-N150P-N210P-N220P:~$ adb push rom.zip /sdcard/
cannot stat 'rom.zip': No such file or directory
antonio@antonio-N150P-N210P-N220P:~$ ll ~/Downloads
total 573408
drwxr-xr-x  2 antonio antonio      4096 Jan 13 16:01 ./
drwxr-xr-x 19 antonio antonio      4096 Jan 13 16:29 ../
-rwxrwxr-x  1 antonio antonio 587156866 Jan 13 16:00 rom.zip*
antonio@antonio-N150P-N210P-N220P:~$ 

Tôi không thể sử dụng adbchính xác.


1
1 điều: có một * đằng sau "rom.zip". Tại sao?
Rinzwind

1
cannot stat 'rom.zip': No such file or directoryIn rất rõ ràng. :)
dobey

1
@Rinzwind nhìn vào các quyền, anh ta đặt nó để thực thi
Sergiy Kolodyazhnyy

Câu trả lời:


1

Bạn rom.zipđang ở trong Downloads, nhưng bạn đang đẩy các tập tin từ thư mục chính của bạn (Điều đó thể hiện rõ bằng cách nhìn vào lời nhắc của bạn, nơi bạn có ~trước đó $.)

antonio@antonio-N150P-N210P-N220P:~$ adb push rom.zip /sdcard/

Làm cái này:

antonio@antonio-N150P-N210P-N220P:~$ adb push ~/Downloads/rom.zip /sdcard/
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.