我正在通过以下方式将一组文件复制到 SD 卡安装的目录中
$ cp -a * /media/BOOT
但我明白
cp: cannot create regular file '/media/BOOT/u-boot.img': Permission denied
使用 sudo
$ sudo cp -a * /media/BOOT
我明白了
cp: failed to preserve ownership for '/media/BOOT/u-boot.img': Operation not permitted
但在中/media/BOOT
,我已经看到文件被复制,但具有不同的权限。
// source permissions
-rwxrwx--- 1 root vboxsf 367496 Aug 10 22:46 u-boot.img
// destination permissions
-rwxr-xr-x 1 root root 367496 Aug 10 22:46 u-boot.img
- 有人知道为什么我会收到错误以及为什么尽管如此文件还是被复制了?
- 权限的改变是否也是我无法从 SD 卡启动启动映像的原因?
chmod 777
在目标文件夹中运行听起来是个好主意吗?
OS: 18.04.1-Ubuntu
SD card partition FS: vfat
在虚拟机上使用它但应该没关系
编辑:
尝试过此解决方案但没有运气!