起動時に次の情報を取得します。約3〜5分かかりますが、通常は約1分です。
Waiting network configuration Booting system without full network configuration
グーグルで調べた結果、/ etc / networks / interfaceを変更する必要があることがわかりました。私はそこにすべてをコメントアウトしましたが、問題は残ります:
# auto lo
# iface lo inet loopback
# auto eth0
# iface eth0 inet dhcp
# address 192.168.0.2
# netmask 255.255.255.0
# gateway 192.168.0.1
# broadcast 192.168.0.255
Ubuntu 11.10の起動を高速化するにはどうすればよいですか?
allow-hotplug
するのではなくauto
、例えば、/ etc / network / interfacesファイルでallow-hotplug enp0s25
、その後iface enp0s25 inet dhcp
。これは、dhcp応答でインターフェースが点灯するのを待たないようにサーバーに指示します。