how to upgrade OpenBSD to -stable

2009-05-13 02:33:44来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

how to upgrade OpenBSD to -stable
You need those steps:
0. Get the source tree
# cd /usr
# cvs -d anoncvs@anoncvs.jp.openbsd.org:/cvs -q get -rOPENBSD_3_8 -P src
1.update the source tree:
Code:
--------------------------------------------------------------------------------
# cd /usr; cvs -d anoncvs@anoncvs.jp.openbsd.org:/cvs checkout -P -rOPENBSD_3_8 src
#cd /usr/src
#cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs -q up -rOPENBSD_3_8 -Pd
--------------------------------------------------------------------------------
2.rebuild the default kernel from stable:
Code:
--------------------------------------------------------------------------------
# cd /usr/src/sys/arch/i386/conf
# /usr/sbin/config GENERIC
# cd /usr/src/sys/arch/i386/compile/GENERIC
# make clean && make depend && make
--------------------------------------------------------------------------------
3.Rebooting with the new kernel
To reboot with the newly compiled kernel:
Code:
--------------------------------------------------------------------------------
# cd /usr/src/sys/arch/i386/compile/GENERIC
# cp /bsd /bsd.old
# cp bsd /bsd
# reboot
--------------------------------------------------------------------------------
4.Rebuilding the binaries
To rebuild the system binaries:
Code:
--------------------------------------------------------------------------------
# cd /usr/src
# rm -r /usr/obj/*
# make obj && make build
--------------------------------------------------------------------------------
to do all above these,You are running -stable now.

#uname -a


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/5748/showart_94444.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:在unix上让apache支持asp

下一篇:Unix Printing Basics