ChinaUnix.net
相关文章推荐:

freebsd 配置 dspam

详见: http://dspamwiki.expass.de/Installation/Qmail After much tinkering with dspam, jonz (from #dspam on irc.freenode.net) suggested a rather unkosher workaround for the dspam + qmail + maildrop combo. My particular setup consists of maildrop (part of the Courier package), but this will work with just about any setup as the mail is sent over to the local deliverer AFTER it has been processed w...

by ipaddr - 服务器应用 - 2007-01-12 10:31:30 阅读(1420) 回复(2)

相关讨论

顾宏军(redarmy) 9 配置freebsd 内核 9.1 大纲 9.2 为什么要构建一个定制的内核? 9.3 建立并安装一个定制的内核 9.4 配置文件 9.5 建立设备节点 9.6 出现问题如何解决 ---------------------------------------------------------------------- Chapter 9 配置freebsd 内核 由Jake Hamby最初投稿,由Jim Mock更新 9.1 大纲 内核是freebsd系统的核心。它用来进行内存管理,安全控制,网络,磁盘访问等等。而有 时你需要重新配置和...

by 剑心通明 - BSD文档中心 - 2008-04-07 17:49:04 阅读(1014) 回复(0)

9 配置freebsd 内核 9.1 大纲 9.2 为什么要构建一个定制的内核? 9.3 建立并安装一个定制的内核 9.4 配置文件 9.5 建立设备节点 9.6 出现问题如何解决 ---------------------------------------------------------------------- Chapter 9 配置freebsd 内核 由Jake Hamby最初投稿,由Jim Mock更新 9.1 大纲 内核是freebsd系统的核心。它用来进行内存管理,安全控制,网络,磁盘访问等等。而有 时你需要重新配置和编译你的内核。 ...

by wsoft9 - BSD文档中心 - 2006-07-22 22:26:28 阅读(794) 回复(0)

摘自: http://xnming.blogbus.com/logs/16561419.html ##### # 手工指定的方式 ################################ # ipconfig fxp0 192.168.8.33/24 # 添加网卡ip # route add default 192.168.8.1 # 添加路由(也可理解为网关) 立即生效,但是重启后失效。 如何重启后仍然保持呢? # ee /etc/rc.conf ifconfig_fxp0="inet 192.168.8.8 netmask 255.255.255.0 " # fxp0 网卡地址和子网掩码 defaultrouter="192.168.8....

by antsnm - BSD文档中心 - 2009-05-05 14:08:06 阅读(1465) 回复(0)

freebsd IP 配置总结 代码:##### # 手工指定的方式 ################################ # ipconfig fxp0 192.168.8.33/24 # 添加网卡ip # route add default 192.168.8.1 # 添加路由(也可理解为网关)立即生效,但是重启后失效。 如何重启后仍然保持呢? 代码:# ee /etc/rc.conf ifconfig_fxp0="inet 192.168.8.8 netmask 255.255.255.0 " # fxp0 网卡地址和子网掩码 defaultrouter="192.168.8.10" # 网关地址 hostn...

by zbhdpx - BSD文档中心 - 2008-11-17 14:05:12 阅读(1169) 回复(0)

freebsd安装及配置 1.分区设置: 第一步使用全部分区alt+a,然后如下参考分区: / 512M swap 512M /home 512M /tmp 512M /usr 2048M 2.安装包选择: 首先选择“Minimal”,再在Custom选项里选:base,compat4x,krb5,man,src,ports 3.SSH2配置freebsd#ee /etc/ssh/sshd_config 打开允许root登录和key验证 freebsd下产生KEY命令: freebsd#ssh-keygen -b 1024 -t dsa 下面提示KEY的存放位置,K...

by gslsok - BSD文档中心 - 2008-04-21 20:43:34 阅读(1151) 回复(0)

这两天突然对svn感兴趣,按理说配置这是一件很简单的事情,结果我是做了两天才做完这件事情,不得不佩服自己啊。 刚做完,大体记录一下过程。 操作系统:freebsd 7.0 所需要软件:apr-1.2.12.tar.gz apr-util-1.2.12.tar.gz httpd-2.2.8.tar.gz subversion-1.4.6.tar.gz db-4.3.29.NC.tar.gz(Berkeley db) freebsd上一些基本的软件得有,这个就不多说。由于我的那台电脑不能上外网下不了ports里需要的软件,就自己手动编译了。...

by 傲枭 - BSD文档中心 - 2008-04-16 21:11:14 阅读(1198) 回复(0)

SSH是freebsd的远程控制,如何配置呢?看看这个! [separator] 首先vi编辑/etc/inetd.conf,去掉ssh前的#,保存退出 编辑/etc/rc.conf 最后加入:sshd_enable="yes"即可 激活sshd服务: techo#/etc/rc.d/sshd start 用下面命令检查服务是否启动,在22端口应该有监听。 #netstat -an ## check port number 22 最后 vi /etc/ssh/sshd_config, 下面是我的配置文件:(/etc/ssh/sshd_config) ###########################################...

by gslsok - BSD文档中心 - 2008-04-15 11:32:17 阅读(1199) 回复(0)

配置网络:/etc/rc.conf network_interface="dc0 lo0" ifconfig_dc0="192.168.2.11" defaultrouter="192.168.2.1" 远程登陆 freebsd远程登陆默认的是ssh,但是不能su到root,为了能su到root,打开/etc/group文件把你的用户名添加的wheel组中: wheel:*:0:root,name 重新配置内核 #cd /usr/src/sys/i386/conf #cp GENERIC MYKERNEL 编辑MYKERNEL加入 options IPSEC options IPSEC_ESP options IPSEC_DEBUG 然后 #/us...

by 剑心通明 - BSD文档中心 - 2008-04-07 21:44:52 阅读(945) 回复(0)

请问freebsd中有没有像linux中ifcfg-eth0这样的网卡配置文件? 只能在rc.conf中配置静态IP吗? 初学,多谢!

by zhaocong94005 - BSD - 2008-03-12 18:55:47 阅读(4776) 回复(3)

默认配置freebsd 7.0 采用传统的 4BSD 调度器,因此需要将其替换为 ULE 调度器 cd /usr/src/sys/i386/conf sed -e s,4BSD,ULE,g GENERIC > mykernel 适用mysql 编译内核 先应朋友之托先做防火墙试验! options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=5 options IPFIREWALL_DEFAULT_TO_ACCEPT options IPDIVERT make buildkernel KERNCONF=mykernel make installkernel ...

by crastyl - BSD文档中心 - 2008-01-07 20:35:41 阅读(971) 回复(0)