install hfs /bin/true
/etc/modprobe.d/hfs.conf
据说禁用_ hfs
为什么?好像倒退了
我正在使用 Debian 8 运行服务器,运行后modprobe nbd
,程序运行得很好。/dev/nbd0
但是,由于不存在,因此未创建该设备。我应该怎么做才能让 modprobe 正常运行?
出于某种原因(我还无法确定),昨天早上我们的网络服务器(运行 Ubuntu 8.04.2 LTS -- hardy)上的网络服务无法启动,我们的网站出现故障。
尝试重新启动时,我注意到以下错误消息:
* Reconfiguring network interfaces...
/etc/network/interfaces:6: option with empty value
ifup: couldn't read interfaces file "/etc/network/interfaces"
...fail!
文件中的第 6 行/etc/network/interfaces
涉及一个 MODPROBE 命令,该命令(我相信)加载到ip_conntrack_ftp
模块中,以便我可以在我的 FTP 服务器(vsftpd)上使用 PASV:(破坏 modprobe 命令在下面注释掉)
# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.
# The loopback network interface
auto lo
iface lo inet loopback
#MODPROBE=/sbin/modprobe
#$MODPROBE ip_conntrack_ftp
pre-up iptables-restore < /etc/iptables.up.rules
# The primary network interface
# Uncomment this and configure after the system has booted for the first time
auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx
netmask 255.255.255.0
gateway xxx.xxx.xxx.1
dns-nameservers xxx.xxx.xxx.4 xxx.xxx.xxx.5
我已经确认在/sbin
调用中有一个文件modprobe
。
就像我之前说的,这个设置一直到昨天早上都完美无缺(尽管我的老板说该网站实际上是在美国东部标准时间晚上 11 点关闭的)。
谁能解释一下(A)为什么会坏,(B)我怎样才能重新启用ip_conntrack_ftp
模块?