起動時のエラー

起動時のエラー

3日前にLXQTを使用してDebian 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に接続しようとしましたが、成功しませんでした。おそらく私の試みが解決策を知らない問題を引き起こした可能性があります!

ベストアンサー1

おすすめ記事