大力
世界多么美好,我却如此暴燥
博客园
首页
新闻
新随笔
联系
管理
订阅
随笔- 367 文章- 9 评论- 137
08 2008 档案
bind 安装笔记,named.conf 的理解。
摘要: [root@46 /]#yum -y install bind bind-chroot bind-libs bind-utils caching-nameserver目录说明/var/named/chroot/etc #存放named.conf/var/named/chroot/var/named#存放zone&arpa文件/var/log/messages #查看配置过程中出错信息[ro...
阅读全文
posted @
2008-08-29 15:55
大力 阅读(1347) |
评论 (0)
编辑
简易DNS快速设置(正反解析)
摘要: 按以下的教程有测试成功,这样一个域名要建立一个zone文件。。/步骤: 1. 修改named.con文件,添加记录,指向某个域名文件。#vi /etc/named.conf找到zone "localhost" IN { type master; file "localhost.zone"; allow-update { none; }; };在它下面添加如下内容:zone "51test.com"...
阅读全文
posted @
2008-08-27 16:28
大力 阅读(298) |
评论 (0)
编辑
LINUX界面/命令符
posted @
2008-08-27 14:48
大力 阅读(111) |
评论 (0)
编辑
proftpd ,基于mysql磁盘配额使用比较失望。
摘要: 基于mysql 验证 proftpd 安装成功。测试发现proftpd跟SERV-U一样,无法计算实际FTP文件大小且性能上也不是很好,因为客户端每个操作都要查询或修改MYSQL数据行。[代码][代码]2008年8月27日无法计算实际FTP文件大小<-----抱歉,没有深入了解他的配置,proftpd新版已经可以实时计算空间大小了。QuotaOptions ScanOnLogin #登录时扫...
阅读全文
posted @
2008-08-26 15:05
大力 阅读(112) |
评论 (0)
编辑
安装php URL重写 mod_rewrite
摘要: [root@66 bin]# pwd/usr/local/apache/bin[root@66 bin]# find / -name mod_rewrite.c/usr/local/httpd-2.2.9/modules/mappers/mod_rewrite.c[root@66 bin]# ./apxs -i -a -c /usr/local/httpd-2.2.9/modules/mapper...
阅读全文
posted @
2008-08-21 07:48
大力 阅读(860) |
评论 (0)
编辑
php5终于连上了mysql5了
摘要: 测试代码<?php$db=mysql_connect("127.0.0.1", "root", "123456");if (!$db){echo "connect fail !";exit;}mysql_select_db("mysql",$db);$query=mysql_query("select * from user",$db);// $query1=mysql_num_rows($...
阅读全文
posted @
2008-08-21 01:40
大力 阅读(51) |
评论 (0)
编辑
php-5.2.6 编译xml2错误解决方法
摘要: ./configure --prefix=/usr/local/php5 \--with-apxs2=/usr/local/apache/bin/apxs \--with-libxml-dir=/usr/local/libxml2/lib \--with-zlib --with-zlib-dir=/usr/local/lib \--with-mysql=/home/lcx/mysql \--ena...
阅读全文
posted @
2008-08-20 23:04
大力 阅读(129) |
评论 (0)
编辑
apache 403
摘要: apache的配置文件httpd.conf,逐行检查。在大约快一半的地方有以下这段代码: <Directory/>OptionsFollowSymLinksAllowOverrideNoneOrderdeny,allowDenyfromall</Directory>发现了吧。由于配置了php后,这里的“Denyfromall”已经拒绝了一切连接。把该...
阅读全文
posted @
2008-08-20 19:35
大力 阅读(181) |
评论 (1)
编辑
linux 时间校准
摘要: [root@localhost ~]# ntpdate 210.72.145.44 ; clock --systohc20 Aug 08:38:40 ntpdate[2499]: step time server 210.72.145.44 offset 17954.657810 sec[root@localhost ~]# date2008年 08月 20日 星期三 08:39:01 CST国家...
阅读全文
posted @
2008-08-20 08:41
大力 阅读(197) |
评论 (0)
编辑
linux指令大全(完整篇)
摘要: linux指令大全(完整篇)名称:cat使用权限:所有使用者使用方式:cat [-AbeEnstTuv] [--help] [--version] fileName说明:把档案串连接后传到基本输出(萤幕或加 > fileName 到另一个档案)参数:-n 或 --number 由 1 开始对所有输出的行数编号-b 或 --number-nonblank 和 -n 相似,只不过对于空白行不编号...
阅读全文
posted @
2008-08-18 09:40
大力 阅读(43) |
评论 (0)
编辑
configure: error: no acceptable cc found in $PATH
摘要: [lcx@111 mp3blaster-3.2.0]$ ./configurecreating cache ./config.cachechecking for a BSD compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking whether make s...
阅读全文
posted @
2008-08-16 14:06
大力 阅读(2153) |
评论 (0)
编辑
rpm 基本命令
摘要: RPM包管理系统: $ rpm RPPM包的文件名称: bash-3.0-19.2.i386.rpm bash:软件名称。 3.0-19.2:软件的版本号。 i386:软件所运行的最低硬件平台。 rpm:文件的扩展名,用来标识当前文件是rpm格式的软件包。 RPM包管理功能: rpm命令配合不同的参数可以实现以下的rpm包的管理功能: 查询已安装在linux系统中的RPM软件包的信息。 查询RPM软件包安装文件的信息。 安装RPM软件包到当前linux系统。 从当前linux系统中卸载已安装的RPM软件包。 从当前linux系统中升级已安装的RPM软件包。
阅读全文
posted @
2008-08-16 11:18
大力 阅读(250) |
评论 (0)
编辑
刚接10058我中奖了,三天之内他们会送TD手机过来。
摘要: 前二个月在电信网站随便填了一下资料,上面说明是通话费用及手机都是免费的。不知道有谁用过,是否真的全免费。???
阅读全文
posted @
2008-08-15 09:24
大力 阅读(273) |
评论 (4)
编辑
yum 的基本操作
摘要: yum 的基本操作包括软件的安装(本地,网络),升级(本地,网络),卸载,另外还有一定的查询功能。 设定好了本地的 yum 之后,就可以很方便的进行安装(现在假设就用 fc5 自带的 yum 进行安装),如我们需要安装虚拟机 bochs,可以使用
阅读全文
posted @
2008-08-14 17:41
大力 阅读(274) |
评论 (0)
编辑
CentOS 5 乱码解决
摘要: vi /etc/sysconfig/i18nLANG="zh_CN.GB18030"服务器这样可以解决中文乱码,不知道为啥在虚拟机上不行。挂载光驱乱码的解决方法[root@localhost mnt]# mount -t iso9660 -o iocharset=cp936 /dev/cdrom /mnt/cdrommount: block device /dev/cdrom is write-p...
阅读全文
posted @
2008-08-08 17:06
大力 阅读(2628) |
评论 (0)
编辑
公告
昵称:
大力
园龄:
7年5个月
粉丝:
0
关注:
0
<
2008年8月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
我的标签
screen
(1)
BackgroundWorker
(1)
随笔分类
(423)
c#(38)
(rss)
C++(1)
(rss)
linux(44)
(rss)
mssql(45)
(rss)
mysql(8)
(rss)
NT(74)
(rss)
Perl/php(21)
(rss)
postfix(1)
(rss)
script/css/html(19)
(rss)
vb.net(52)
(rss)
vbscript(8)
(rss)
其它(112)
(rss)
随笔档案
(373)
2011年12月 (1)
2011年10月 (3)
2011年9月 (2)
2011年8月 (2)
2011年7月 (7)
2011年6月 (3)
2011年5月 (2)
2011年4月 (3)
2011年3月 (5)
2011年2月 (2)
2010年12月 (4)
2010年11月 (4)
2010年9月 (2)
2010年8月 (1)
2010年7月 (4)
2010年6月 (1)
2010年5月 (5)
2010年4月 (8)
2010年3月 (3)
2010年2月 (2)
2010年1月 (11)
2009年12月 (10)
2009年11月 (3)
2009年10月 (4)
2009年9月 (3)
2009年8月 (7)
2009年7月 (6)
2009年6月 (7)
2009年5月 (3)
2009年4月 (3)
2009年3月 (4)
2009年2月 (1)
2009年1月 (3)
2008年12月 (6)
2008年11月 (3)
2008年10月 (10)
2008年9月 (8)
2008年8月 (15)
2008年7月 (6)
2008年6月 (7)
2008年5月 (7)
2008年4月 (7)
2008年3月 (5)
2008年2月 (5)
2008年1月 (2)
2007年12月 (10)
2007年11月 (6)
2007年10月 (4)
2007年9月 (9)
2007年8月 (12)
2007年5月 (1)
2007年4月 (1)
2007年3月 (1)
2007年2月 (3)
2007年1月 (5)
2006年12月 (2)
2006年11月 (9)
2006年10月 (2)
2006年9月 (9)
2006年8月 (18)
2006年7月 (6)
2006年6月 (6)
2006年5月 (7)
2006年4月 (11)
2006年3月 (10)
2006年2月 (2)
2006年1月 (2)
2005年12月 (3)
2005年11月 (3)
2005年9月 (1)
2005年4月 (1)
2005年3月 (1)
2005年2月 (3)
2004年11月 (2)
2004年10月 (3)
2004年9月 (10)
水晶报表
阿泰的软件实用主义
(rss)
最新评论
推荐排行榜