-
Openbsd 3.8上安装配置 APACHE + MYSQL + PHP + mod_limiti
本文旨在用OPENBSD自己提供的软件包来搭建器环境,当然你也可以下载原代码包编译,但这样就费时费力了。实际上OPENBSD给我们提供了大量的编译好的二进制包,利用这些二进制包我们...
-
freebsd vsftpd 配置方法
1. # cd /usr/ports/ftp/vsftpd/ # make install clean 2.配置 编辑 /etc/inetd.conf , 加入狼蚁网站SEO优化一行: ftp stream tcp nowait root /usr/local/libexec/vsftpd vsftpd 编辑 /usr/local/etc/vsftpd.conf , 修改以下配置 # Al...
-
用OpenBSD 3.8 release自带的FTPD架设FTP服务器
使用OpenBSD3.8release自带的FTPD架设FTP服务器 Author: MichaelBibby Date: 2005/11/20 可以任意网络推广网站推广转载,但请保留以上信息,谢谢。 注:本文参考OpenBSD3.8的官方FAQ文档和ftpd的man文档写...
-
FreeBSD系统SSH配置详解
修改freebsd可以用sshd权限用户登录ssh 但不能用root用户登录的 在/etc/ssh/sshd_config最后中加入 PermitRootLogin yes #允许root登录 PermitEmptyPasswords no #不允许空密码登录 PasswordAuthentication yes # 是否...
-
FreeBSD双线负载均衡NAT服务器配置方法
# vi /etc/rc.conf ================+==============+================= defaultrouter=221.33.88.254 ifconfig_fxp0=inet 192.168.0.1 netmask 255.255.255.0 ifconfig_rl0=inet 221.33.88.2 netmask 255.255.255.0 ifconfig_rl1=inet 202.0.57.1 netmask 255...
-
FreeBSD系统下读写 NTFS分区
1、ntfs-3g: # cd /usr/ports/sysutils/fusefs-ntfs # make install clean 2、加入fuse加载: # ee /etc/rc.conf 加入以下这一行: fusefs_enable=YES 保存退出 # ee /boot/loader.conf 加入以下这一行: fuse_load=YES 保存退...
-
Freebsd7.0 Apache2.2+MySQL5+PHP5安装和配置方法
一、apache2.2.8 首先去网站上下载apache2.2.8源码包 解压缩 #tar zxvf httpd-2.2.8.tar.gz 得到 httpd-2.2.8文件夹 #cd httpd-2.2.8 配置 #./configure --prefix=/usr/local/apache --enable-so --enable-module=rewrite 编译 #mak...
-
freebsd6.2 nginx+php+mysql+zend系统优化防止ddos攻击
一、软件前的准备 的:插入freebsd6.2以上的光盘,最小化,同时好ports 二、手动nginx+php 1) 进入后,准备cvs更新: 1. cd /usr/ports/net/cvsup-without-gui 2. cp /usr/share/examples/cvsup/ports-supfile /etc/po...
-
FreeBSD5.2.1上建立功能完整的邮件服务器(POSTFIX)
1.更新 ports # cvsup -gL 2 -h cvsup.freebsdchina.org /usr/share/examples/cvsup/ports-supfile 2. openssl+apache 器 # cd /usr/ports/security/openssl # make install # make clean # cd /usr/ports/www/apache2 # make install # make clean # vi...
-
FreeBSD学习经验
1、进入单用户模式 BOOT: /kernel -s 就进了单用户了, 然后/sbin/mount -rw /把/设置成可写 然后 vipw把root口令置空2、开机自动fsck硬盘 fsck_y_enable=YES3、FreeBSD弹出光驱 cdcontol-Eject 4、OpenBSD弹出光驱...
-
FREEBSD系统优化精华
1、优化内核 mkdir /usr/kern cp /usr/src/sys/i386/conf/GENERIC /usr/kern/proxy ln -s /usr/kern/proxy /usr/src/sys/i386/conf/proxy cd /sys/i386/conf ee proxy options IPFILTER #ipfilter support options IPFILTER_LOG #ipfilter logging option...
-
FreeBSD su Sorry问题解决办法
FreeBSD系统下su:sorry的办法 在FreeBSD上要使用su命令成为root用户,不但要知道root的口令,还需要经过特别,否则就不能成功使用这个命令。这是因为FreeBSD对执行su命令的用户进行了更严格...
-
FreeBSD学习笔记
1、进入单用户模式 BOOT: /kernel -s 就进了单用户了, 然后/sbin/mount -rw /把/设置成可写 然后 vipw把root口令置空2、开机自动fsck硬盘 fsck_y_enable=YES3、FreeBSD弹出光驱 cdcontol-Eject 4、OpenBSD弹出光驱...
-
FREEBSD服务器端的ARP绑定脚本
#!/bin/sh _PATH=/home/shwb if [ -s $_PATH/md5 ] [ -s $_PATH/arp.txt ] ; then new=`md5 $_PATH/arp.txt | cut -d ' ' -f 4` old=`cat $_PATH/md5` if [ $new != $old ] ; then arp -a -d arp -f $_PATH/arp.txt date +DATE: %Y-%m-%d-%H:%M:%S /var/log/ar...
-
freebsd系统下安装mpd
1、mpd(都说mpd对windows支持最好),很简单 cd /usr/local/ports/net/mpd/make all install clean2、配置/usr/local/etc/mpd/mpd.confdefault: load vpnvpn: load client1 #load client2 client1: new -i ng0 pptp1 pptp1 set ipcp ranges x.x....
-
选择FreeBSD 六个理由
第一个理由:FreeBSD 是一个免费的开源的操作系统 Linux 也是一个免费的开源的操作系统。不过 Linux 是基于 GNU General Public License 的,而 FreeBSD 是基于 BSD License 的。BSD License 比 GNU General...