sd 카드에서 Linux를 실행하고 sd 카드를 마운트하려고하면 문제가 없습니다. 그러나 플래시 메모리에서 Linux를 실행하면 SD 카드를 마운트 할 수 없습니다.
# mount /dev/mmcblk0p1 /mnt/
mount: mounting /dev/mmcblk0p1 on /mnt/ failed: Invalid argument
이 오류의 기본 원인은 무엇입니까?
추가 정보
root@Xilinx-ZC702-14_7:/# mount -t /dev/mmcblk0p1 /mnt
mount: can't find /mnt in /etc/fstab
root@Xilinx-ZC702-14_7:/var/volatile/log# ls
wtmp
root@Xilinx-ZC702-14_7:/var/volatile/log# dmesg
dmesg: klogctl: Function not implemented
/var/log/messages
있습니까? 어때요 dmesg | tail
?
mount -t /dev/mmcblk0p1 /mnt
완전한 명령이 아닙니다. filesytem 유형을 알고 있으면 -t 인수 뒤에 지정 mount -t vfat /dev/mmcblk0p1 /mnt
하거나 (예 :) -t를 완전히 생략해야합니다.
-t ...
않도록 전체 명령 ( )을 시도하십시오fstab
.