[mntent]: /etc/fstab의 15번째 줄에 문제가 있습니다.

[mntent]: /etc/fstab의 15번째 줄에 문제가 있습니다.

CLI에서 수동 설치가 제대로 작동합니다.

하지만 달릴 때

sudo mount -a 

fstab을 편집한 후 오류가 발생했습니다. 이것은 나에게 맞는 것 같습니다. 누구든지 제안을 해줄 수 있습니까?

내 fstab은 다음과 같습니다

# /etc/fstab: static file system information.                                                       
#                                                                                                   
# Use 'blkid' to print the universally unique identifier for a                                      
# device; this may be used with UUID= as a more robust way to name devices                          
# that works even if disks are added and removed. See fstab(5).                                     
#                                                                                                   
# <file system> <mount point>   <type>  <options>       <dump>  <pass>                              
proc            /proc           proc    nodev,noexec,nosuid 0       0                               
# / was on /dev/sda1 during installation                                                            
UUID=31c241fa-8ce7-4ddf-a11b-c1bb7214b9ff /               ext4    errors=remount-ro 0       1       
# swap was on /dev/sda5 during installation                                                         
UUID=f6adc6f2-a8ac-46cc-a167-fd5bdb985ca7 none            swap    sw              0       0         
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0                          

//megaboxy/inetpub /mnt/megabo cifs username=admin, password=passwd 0 0                 
//megaboxz/inetpub /mnt/megab cifs username=admin, password=passwd 0 0                 
//10.0.0.15/Share  /mnt/CodeS cifs username=admin, password=passwd 0 0                
//210.0.0.1/inetpub   /mnt/webse cifs username=admin, password=passwd 0 0                
//10.0.0.120/Kabura-Projects  /mnt/Projects  cifs username=admin, password=passwd 0 0     

답변1

//megaboxy/inetpub /mnt/megabo cifs username=admin, password=passwd 0 0
                                                   ^ this is a problem

옵션 사이에는 공백을 추가할 수 없습니다. 이를 제거하면 오류가 사라집니다.

답변2

noauto모든 cifs 시스템에 대한 옵션을 추가하고 mount -a -t cifs네트워크 서비스 후에 실행합니다.

배포판을 언급하지 않았으므로 이 단계는 다를 수 있습니다.

관련 정보