日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

1、系統(tǒng)安裝 FreeBSD網(wǎng)站平臺建設(shè)全過程( 三 )


device npx0 at nexus? port IO_NPX irq 13


# Serial (COM) ports
device sio0 at isa? port IO_COM1 flags 0x10 irq 4

# 我用的是8139和Dlink DFE-530TX網(wǎng)卡,大家可根據(jù)自己的網(wǎng)卡型號保留或刪除
# 使用公共的MII總線控制器代碼的PCI以太網(wǎng)適配器
# 注意:一定要保留"device miibus"以確??捎?
# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the "device miibus" line in order to use these NICs!
device miibus # MII bus support
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
device rl # RealTek 8129/8139
device vr # VIA Rhine, Rhine II
device xl # 3Com 3c90x (``Boomerang"", ``Cyclone"")

# Pseudo devices - the number indicates how many units to allocate.
pseudo-device loop # Network loopback
pseudo-device ether # Ethernet support
pseudo-device sl 1 # Kernel SLIP
pseudo-device ppp 1 # Kernel PPP
pseudo-device tun # Packet tunnel.
pseudo-device pty # Pseudo-ttys (telnet etc)
pseudo-device md # Memory "disks"
pseudo-device gif # IPv6 and IPv4 tunneling
pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation)

# The `bpf" pseudo-device enables the Berkeley Packet Filter.
# Be aware of the administrative consequences of enabling this!
pseudo-device bpf #Berkeley packet filter
(完)

我用的是8139網(wǎng)卡和Dlink DFE-530TX網(wǎng)卡,如果你用其他型號的網(wǎng)卡,需要察看當(dāng)前目錄的GENERIC 內(nèi)核文件,找到描述自己的網(wǎng)卡型號的段并將其添加到新的內(nèi)核文件里 。其他的不改直接拷貝過來就可以用了 。
接下來編譯安裝新內(nèi)核:
# /usr/sbin/config kernel_wwwx #kernel_wwwx為你的內(nèi)核文件名
# cd ../../compile/kernel_wwwx
# make depend
# make
# make install
重新啟動(dòng)(reboot)

如果系統(tǒng)升級過源代碼樹,按下面方法編譯內(nèi)核:
# cd /usr/src
# make kernel KERNCONF=kernel_wwwx #kernel_wwwx為你的內(nèi)核文件名
重新啟動(dòng)

推薦閱讀