试用freebsd8.3

今天用vmware workstation8安装了FreeBSD8.3

记录一下从安装到使用中碰到的问题;

1.按照资料安装好了系统;

2.用新建的账号登陆系统后,su root  输入root密码,切换到root账号;

3.配置ip地址-------------

FreeBSD下如何更改IP
1.进入 /etc/rc.conf 文件
2.修改 ifconfig_lnc0="inet xxx.xxx.xxx.xxx netmask 255.255.255.0"
别忘了defaultrouter="xxx.xxx.xxx.xxx (gateway ip address)"
如果想一次性的话,只要直接输入 ifconfig lnc0 xxx.xxx.xxx.xxx netmask 255.255.255.0
即时生效
重启后失效!!

图形界面配置IP
sysinstall --> configure --> Networking -->interfaces -->相应网卡名

 

echo 'ifconfig_rl0="inet 192.xx.xx.xx netmask 255.255.255.0" '>;>;/etc/rc.conf and reboot

 

 

sysinstall--configure-networking
操作过程进行!
在命令提示符下
#/stand/sysinstall



者直接修改 etc/rc.conf 文件

如果要手工指定的话:)
#define ip
/etc/rc.conf
ifconfig lnc0 XXX.XXX.XXX.XXX netmask XXX.XXX.XXX.XXX
#define gateway
defaultrouter=“XXX.XXX.XXX.XXX”
#define hostname
hostname freebsd

修改/etc/resolv.conf
#add nameserver
nameserver 202.103.24.68

然后init 6
上网!

4----Freebsd 如何_打开_关闭_查看防火墙

 

在FreeBSD服务器上调试ipfw防火墙规则的时候,有时候需要临时关闭ipfw防火墙,可以使用如下命令来进行操作:

1)停止ipfw防火墙:

ipfw disable firewall

/etc/rc.d/ipfw stop

2)开启ipfw防火墙:

ipfw enable firewall

/etc/rc.d/ipfw start

随机器启动自动启用防火墙方法需要修改/etc/rc.conf文件,参考:http://blog.haohtml.com/archives/9309第三步.

3)如何查看ipfw是否在运行

方法一:通过ipfw -a list 不断的去看包的数量

方法二:sysctl -a | grep net.inet.ip.fw.enable

如果状态是1表示是开启,0为关闭.

5.配置make.conf文件

vi /etc/make.conf 

加入以下内容:

FETCH_CMD=axel
FETCH_BEFORE_ARGS= -n 10 -a
FETCH_AFTER_ARGS=
DISABLE_SIZE=yes
MASTER_SITE_OVERRIDE?=\
http://ports.hshh.org/${DIST_SUBDIR}/\
http://ports.cn.freebsd.org/${DIST_SUBDIR}/\
ftp://ftp.freeBSDchina.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/
MASTER_SITE_OVERRIDE?=${MASTER_SITE_BACKUP}

 

 

-------------------------

6.安装-vim

cd /usr/ports/esditors/vim

sudo make install clean

 

你可能感兴趣的:(FreeBSD)