- 浏览: 852021 次
- 性别:
- 来自: 北京
最新评论
-
zjhzwx1212:
为什么用threadLocal后,输出值是从20开始的,而定义 ...
j2ee的线程安全--threadlocal -
aeoluspu:
不错 mysql 测试部分感觉不详细
用sysbench(或者super-smack)测试mysql性能 -
nanPrivate:
有没有例子,只理论,实践起来还是不会啊
JMS可靠消息传送 -
lwclover:
一个网络工程师 装什么b
postfix 如何删除队列中的邮件 -
maimode:
我也欠缺不少啊
理想的计算机科学知识体系
文章列表
http://komku.blogspot.com/2008/11/install-windows-xp-using-usb-flash-disk.html
Someone in this post (Acer
Aspire One Specifications and Windows XP Drivers
) ask me to write a
tutorial about how to install
Windows XP using USB flash disk/flash drive.
If you want to install
Windows XP
...
http://www.pythian.com/news/1114/
Posted by Nicklas Westerlund
on
Jul 25, 2008
It felt like the right time for us to look back at some useful
commands for table maintenance that some of us may not have mastered as
much as we might like to think.
In my post about gathering ...
select
t.TABLE_SCHEMA
,t.TABLE_NAME
,s.INDEX_NAME
,s.COLUMN_NAME
,s.SEQ_IN_INDEX
,(
SELECT MAX(SEQ_IN_INDEX)
FROM INFORMATION_SCHEMA.STATISTICS s2
WHERE s.TABLE_SCHEMA = s2.TABLE_SCHEMA
AND s.TABLE_NAME = s2.TABLE_NAME
AND s.INDEX_NAME = s2.INDEX_NAME
) AS `COL ...
job server 安装在gearman-job服务器上。
worker安装在worker服务器上。
全部以gearman用户运行。
job server 启动命令:
/opt/app/gearman/sbin/gearmand -L 192.168.0.x -d
worker 启动命令:
( /opt/app/gearman/bin/gearman -w -h gearman-job -f businessLogger | /usr/local/sbin/cronolog /opt/log/business.%Y%m%d.log & ...
最新中文下载链接:http://ximix.org/translation/awk1line_zh-CN.txt
最新原文下载链接:www.pement.org/awk/awk1line.txt
AWK单行脚本快速参考 2008年4月28日
编辑: Eric Pement eric [at] pement.org 版本 0.26
翻译: 董一粟 yisudong [at] gmail.com
最新英文版本文件发布在以下地址:
http ...
HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008
Compiled by Eric Pement - eric [at] pement.org version 0.27
Latest version of this file (in English) is usually at:
http://www.pement.org/awk/awk1line.txt
This file will also be available in other lang ...
http://www.pixelbeat.org/cmdline.html
This is a linux
command line reference for common operations.
Examples marked with • are valid/safe to paste without modification into
a terminal, so
you may want to keep a terminal window open while reading this so you
can cut &
paste
.
All t ...
免得每次都要搞一遍,还容易出错
#!/bin/bash
SOURCES_LIST='/etc/apt/sources.list'
APT_HOME='/etc/apt/'
APT_SPY_SOURCES='deb http://http.us.debian.org/debian/ lenny main'
SSH_HOME='/etc/ssh'
VSFTPD_CONF='/etc/vsftpd.conf'
PASSWD_FILE='/etc/passwd'
USE_BIN='/root/bin/'
INITTAB='/etc/inittab'
date=`date + ...
install_zabbix_centos.sh
#!/bin/bash
zabbix_server_ip="192.168.x.xx"
inner_ip=`sudo /sbin/ifconfig eth1 |awk '/inet/ {split($2,x,":");print x[2]}'`
tar xvzf zabbix-1.8.2.tar.gz
cd zabbix-1.8.2
sudo /usr/sbin/useradd zabbix
sudo mkdir -p /var/log/zabbix /opt/app/zabbix /etc ...
在windows上压缩的文件,是以系统默认编码中文来压缩文件。由于zip文件中没有声明其编码,所以
linux上的unzip一般以默认编码解压,中文文件名会出现乱码。
虽然2005年就有人把这报告为bug,
但是info-zip的官方网站没有把自动识别编码列入计划,可能他们不认为这是个问题。Sun对java中存在N年的zip编码问题,采用了同样的处理
方式。
有2种方式解决问题:
1. 通过unzip行命令解压,指定字符集
unzip -O CP936 xxx.zip (用GBK, GB18030也可以)
有趣的是unzip的manual中并无这个选项的说明, unzip -- ...
最近组了一台 Linux 的主机。操作系统是 CentOS 4.4。在找一个成套的邮件解决方案时,让我折腾了许久。我要求能支持
POP3, SMTP, SSL, WEBMAIL 以及多域名设置。最后我找到了 ExtMail Solution,完美地实现了我所想要的功能。
...
一、csync2+inotify实现
http://bbs.linuxtone.org/thread-2707-1-1.html
【关键技术
】
利用csync2+sqlite实现数据
的高效实时的增量备份,相关目录及文件
信息都存储在sqlite数据库
中,
大大提升了同步的速率和效率;利用intoify触发式(实时)执行csync同步命令
更新文件。
【方案适用】
图片服务器
集群
方案:
ReiserFS4+csync2+inotify
网站服务
程序分布式方
案:csync2+inotify+NFS
[注](如,网站程序中存在缓存
目录则排除此目录 ...
一、
tar c $files | ssh niyunjiu@192.168.1.2 tar -xf - -C /tmp/test
二、
a机
$ tar cf - win98 | nc -l -p 5555
b机
nc a_ip 5555 | tar xf - -C /tmp/test
三、
a机
tar cf - win98 | nc b_ip 5555
b机
nc -l -s b_ip -p 5555 | tar -xf - -C /tmp/test
一:screen -dmS backup
二:ctrl +a d
三:screen -r backup