3일 전에 LXQT를 사용하여 데비안 10.3.0을 설치했습니다. 정말 멋지네요. 마음에 듭니다. 부팅도 잘 되고, 부팅 시 모든 커널 라인은 정말 훌륭합니다. 2개의 빨간색 라인이 나타나면 꽤 보기 흉합니다!
[OK] Started /etc/rc.local.
[26.409377] CIFS: Unknown mount option "umask=000"
[FAILED] Failed to mount /mnt/smb.
See 'systemctl status mnt-smb.mount' for details.
[DEPEND] Dependency failed for Remote File Systems.
LAN 카드가 제대로 작동하도록 수정하기 위해 ConnMan UI를 만들기 위해 rc.local을 만들었습니다. 따라서 rc.local 덕분에 부팅 시 명령이 시작되어 제대로 작동합니다. 이 변경으로 인해 시작 시 오류가 발생합니까? 모든 것이 잘 작동하고 있습니다. 100% 클린 부팅을 위해 이 문제를 해결하는 방법을 알려주세요. 또한 시스템 시작이 이 선에 도달하면 시작 속도가 5초 느려집니다.
rc.local 파일에는 다음이 포함됩니다.
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/sbin/ethtool -s ens5f5 speed 100 duplex full
exit 0
편집 #1이것은의 출력입니다systemctl status mnt-smb.mount
systemctl status mnt-smb.mount
● mnt-smb.mount - /mnt/smb
Loaded: loaded (/etc/fstab; generated)
Active: failed (Result: exit-code) since Mon 2020-03-30 15:02:35
Where: /mnt/smb
What: //192.168.1.171/ADMIN-PC
Docs: man:fstab(5)
man:systemd-fstab-generator(8)
lines 1-7/7 (END)
실제로 LAN을 통해 Windows를 Debian에 연결하려고 시도했지만 성공하지 못했습니다. 어쩌면 내 시도로 인해 해결 방법을 모르는 문제가 생겼을 수도 있습니다!