May 24 2005
近期学习列表
solaris系统管理
freebsd系统管理
apache优化
mysql 优化
php 优化
DNS安装及管理
网络工程师
oracle安装及管理
May 18 2005
May 17 2005
http://www.icann.org/ 顶级域名的管理组织
http://www.isc.org/ BIND 软件官方网站
http://www.isc.org/ml-archives/ BIND 的邮件列表,有很多问题可以在列表中找到你要的答案
http://www.internic.net/ Internet 域名注册
http://www.internic.net/regist.html 世界各地区的注册代理商数据
http://www.internic.net/whois.html 域名信息 whois 数据查询,国家后缀除外
http://www.allwhois.com/ 注册代理商、whois 数据查询
http://www.cnnic.cn/ .cn 后缀的域名服务,需要注册 .cn 后缀可以从这里开始
http://www.apnic.net/index.html 亚太地区网络 IP 注册查询服务
http://www.ripe.net/ 欧洲、中东、非洲等地区网络 IP 注册查询服务
http://www.arin.net/ 南美地区网络 IP 注册查询服务
http://www.dnsstuff.com/ dns online tools 可以查询很多有用数据,特别是反垃圾邮件的信息
http://www.dnsreport.com/ 可以对你的域名进行全面的测试,并提供完成的报告哦
May 16 2005
很多人反复在问Linux如何设置才能实现共享上网,干脆写一个步骤出来吧
1、vi /usr/local/sbin/firewall
代码:
#! /bin/bash
# Project by Platinum, 2005-05-12″
# Set Interface WAN
WAN_IP=”外网卡地址”
WAN_ETH=”eth0″
WAN_MASK=”外网卡掩码地址”
May 10 2005
This page briefly documents the installation of Apache 2.0.xx, MySQL 4.0.xx and PHP 5.0.x on Sparc Solaris 8.
Disclaimer
Rapid revision is the nature of Open Source products and the versions I refer to in this document are probably already outdated. Therefore, I am not sharing this information with the promise that I will keep it current or am in any way obligated for any problems you may encounter. Because there was not much in the way of Solaris specific integration information available, I have decided to share what has worked for me in this instance. You are welcome to make use of this information at your own risk. Please exercise caution — especially if you are unsure of the consequences of issuing certain commands with Systems Administrator priviledges. Most of the command examples can be cut and pasted, but you should Read The Fine Manual pages if you are not familiar with the possible consequences.
Assumptions:
Specific version numbers will probably have changed.
Installations are done using ksh as superuser (root).
lines starting with #: are literal examples of root commands.
Variable parameters that may be specific to your installation are shown in itallics.
Sparc Solaris 8 installed with most recent recommended patches:
#: uname -a
SunOS hostname 5.8 Generic_117000-03 sun4u sparc SUNW,UltraAX-i2
A source or build directory exists on a filesystem with plenty of free space:
#: mkdir /build
#: cd /build
Continue Reading »