简体   繁体   中英

Trying to upload a file from local Mac to remote Ubuntu server

scp -r /Users/Brain/Desktop/tree.png account@address:/home/directory

I successfully connect to server and enter password, but receive this message "/Users/Brain/Desktop/tree.png: No such file or directory found"

I know the file exists, it is sitting on my desktop and I can open it.

Any guidance would be much appreciated!!

Tried looking at this post but it did not help: scp files from local to remote machine error: no such file or directory

Typo? For a location like /Users , better odds are suggested for a person with the name Brian over one like Brain. After reversing the vowels, what happens with this command?

ls -l /Users/Brian/Desktop/tree.png

When presented with unexpected errors for file(s) known to exist, there's usually an issue with one pathname component. Start with the full path and drop trailing components until there's no error, eg:

ls /Users/Brain/Desktop/tree.png
ls /Users/Brain/Desktop
ls /Users/Brain
ls /Users

Some shells can trim a pathname component from the previous command with:h; try repeating this:

!!:h

After typing the above, another possible shortcut is UP-arrow RETURN

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