分类: BSD
2010-08-06 17:23:14
在NetBSD上查找以太网网卡:
dmesg |grep -ir ether
vi /etc/rc.conf
auto_config=YES
hostname=NetBSD
defaultroute="192.168.0.1"
ifconfig_pcn0="inet 192.168.1.110 netmask 255.255.255.0"
2.
设定DNS
vi /etc/resolv.conf
nameserver *.*.*.*
nameserver *.*.*.*
3.启动SSHD服务
vi /etc/rc.conf
加入一行
sshd=YES
ftp://ftp.cn.NetBSD.org/pub/NetBSD/packages/pkgsrc.tar.gz
下载完后用ssh传到服务器上,然后解压
tar -zxvf pkgsrc.tar.gz -C /usr
把目录树解压到/usr下面,以后要装什么软件自己到/usr/pkgsrc目录里找。比如要装apache
#cd /usr/pkgsrc/www/apache2
#make install clean
firefox+flash
Install Firefox 3.x from pkgsrc:
# cd /usr/pkgsrc/www/firefox3
# make install clean
Now install:
# cd /usr/pkgsrc/multimedia/ns-flash
# make install clean
Configure nspluginwrapper running:
# nspluginwrapper -aAdjust maximum limit of shared memory pages (as user with root privileges):
# sysctl -w kern.ipc.shmmaxpgs=262144
Add kern.ipc.shmmaxpgs=262144 to /etc/sysctl.conf to keep this value across boots.
5.pkg_add安装二进制软件先设置环境变量:
export set PKG_PATH=ftp://nyftp.netbsd.org/pub/pkgsrc/packages/NetBSD/i386/5.0.2_2010Q4/All/
#pkg_add -v vim
把该变量加入.profile
6.调节音量:
6.1
先查看一下当前状态:mixerctl outputs.mastsr
将会显示当前的音量设定值。例如:outputs.master=120,120
调节命令:mixerctl -w outputs.master=248,248
让设置在下次启动后有效,两个步骤:
6.2、新建/etc/mixerctl.conf:
mixerctl -a >/etc/mixerctl.conf
修改outputs.master的值后保存即可。
6.3、修改/etc/rc.conf
mixerctl=YES mixectl_mixers="/dev/mixer"
6.4、重新启动。