摘要:
因工作的关系,很久没有用obsd了 :em16:
这里有些不错的入门文章。
首先应该看看中国bsd社区和 obsd老家:
http://www.openbsd.org/faq/index.html
http://www.cnfug.org/
还有一些其他的文档:
http://www.openbsdsupport.org/
有问题问各位前辈,比如红袖添香 :em16: ,
rain......
摘要:
作者:zenz-hu
第一课、安装openbsd 2.8
如果您的电脑不支持光盘启动,请首先在dos下进行以下的步骤,制作启动软盘,然后从软盘启动电脑。(其中e:是光盘所在盘符)
e:\2.8\tools\fdimage e:\2.8\i386\floppy28.fs a:
如果您的电脑支持光盘启动,直接从光盘启动后,按照提示一步一步完成安装,以下是安装过程的简略描述......
Apache+SSL, PHP, and MySQL的配置过程 Updated: 12/10/2004
apache+ssl, php, and mysql
【程序编程相关:
Bash中对变量的操作(ZT)】 【推荐阅读:
Solaris下使用u盘和移动硬盘。】
【扩展信息:
今天开始学习solaris】
updated: 12/10/2004
general information
im sure many of you have been wondering how people host secure sites using secure sockets layer (ssl). this guide will show you how to set up a web server with ssl, php, and mysql support.
requirements
in order for public access to your website, you must have a valid domain name.
a text editor (for this guide we will use nano)
installation
section a -- apache+mod_ssl
first thing we need to do is install the apache web server. currently there are two main versions available: 1.3.x and 2.0.x. i will be teaching from the 1.3x branch, but many of the steps are the same for 2.0.x. i will also make notes for those of you who choose to use the 2.0.x branch.
#cd /usr/ports/www/apache13-modssl
#make install distclean
apache now gets started on system boot from rc.conf so lets add the respective entry:
# echo apache_enable="yes" >> /etc/rc.conf
# echo apache_flags="-dssl" >> /etc/rc.conf
*note for apache2 users: you only need to install the apache2 port, but then you have to manually create the directories for the ssl certificate and key.
#cd /usr/ports/www/apache2
...
下一页 摘要:
比较容易:
1:
环境:
烂机器一台,支持usb hd启动。
另外一台机器装freebsd5.2.1
2:
u盘插上:
disklabel -wb da0
newfs da0a
mkdir /mnt/usb
mount /dev/da0a /mnt/usb
cd /mnt/usb
cp -r /boot ./
cp -r /etc ./
cp -r /bin ./
cp -r /sbin......