내가 뭘 잘못하고 있는지 어떤 아이디어가 있습니까?
mkdir /mnt/zmg
mount -t cifs -o username=Administrator,password=*****,domain=Provisorio,noserverino //10.20.30.1/zmg /mnt/zmg
insmod /mnt/zmg/tntfs.ko
이것은 Bash에서의 오류 인쇄입니다.
mkdir: cannot create directory '/mnt/zmg' : File exists
mount error(16): Device or resource busy
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
insmod: ERROR: could not insert module /mnt/zmg/tntfs.ko: File exists
/#
편집: insmod 오류와 관련하여 insmod 호출 앞에 "rmmod /mnt/zmg/tntfs.ko"를 추가하여 해결했습니다.
답변1
당신은 아무 잘못도 하지 않았습니다. 이러한 모든 오류 메시지는 작업이 수행되었음을 알려줍니다. 확인하려면 실행 lsmod | grep ntfs
(또는 그냥 실행 )하세요.lsmod
아마도 이러한 명령이 시작 스크립트에 있으므로 시작 시 자동으로 실행될 수 있습니까? 아니면 다른 사람이 운영하는 걸까요? 아니면 직접 실행했는데 그 중 어느 것도 성공 결과가 없었기 때문에 모두 작동했지만 이를 깨닫지 못했을 수도 있습니다.