我最近从公司买了一台全新的联想 Thinkpad T530,上面安装了 xubuntu。除了启动之外,它运行非常迅速。它运行缓慢的时刻(约 2 分钟)是从我在登录屏幕上输入密码到我的桌面出现之间。我已经能够将问题追溯到usb0
网络接口的存在,它正在尝试启动。
如果我sudo ifconfig usb0 down
在输入密码之前运行(通过另一个屏幕),它会立即显示我的桌面。Google 并没有告诉我如何禁用此usb0
界面,但我很确定我不会使用它,而且我希望我的笔记本电脑启动速度更快一些。
答案1
您可以尝试将其放入/etc/network/interfaces
:
# Set up an interface which will not be allocated an IP address by
# ifupdown but will be configured through external programs. This
# can be useful to setup interfaces configured through other programs,
# like, for example, PPPOE scripts.
#
auto usb0
iface usb0 inet manual
up ifconfig $IFACE 0.0.0.0 up
up /usr/local/bin/myconfigscript
down ifconfig $IFACE down
请注意,这个建议取自于ubuntuforums 中的主题,我还没有测试过。