简体   繁体   中英

I have an Arduino Yun and when i use putty (SSH) to execute mkdir command it shows “can't create directory: No such file or directory”

The web page related to this is Link

I connected Yun with my laptop and use root to run the putty

I'm trying to use mkdir but it shows

root@spare:~# mkdir /mnt/sda1/python-packages
mkdir: can't create directory '/mnt/sda1/python-packages': No such file or  directory

need help on this

I tried to creat a folder in the SD card named "python-packages" but it didn't work

Sounds like one of those directories doesn't exist. Maybe you didn't mount sda1. You could also try the -p switch to create parent directories, and see what happens...

mkdir -p /mnt/sda1/python-packages

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM