linux 基础环境配置
1、系统增加中文字符集
centos 4
yum install ttfonts-zh_CN
在centos5
fonts-chinese-3.02
2、mysql 字符集(默认是latin1 )
Windows平台
windows下的mysql配置文件是my.ini,一般在c:\windows\my.ini可以直接在这个文件里面加上
default-character-set=utf8
然后重新启动mysql
service mysql restart
linux 平台
linux下的mysql配置文件是my.cnf,一般是/etc/my.cnf
增加default-character-set=utf8
3、时区修改(以下是CST)
/etc/sysconfig/clock
ZONE="Asia/Shanghai"
UTC=false
ARC=false
cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
4 NFS
yum install nfs
[root@v3nfs log]# more /etc/exports
/root/src *(rw,sync)
/storage *(rw,insecure,sync,wdelay,no_subtree_check,nohide,no_root_squash)
/data2 *(rw,insecure,sync,wdelay,no_subtree_check,nohide,no_root_squash)
5 时钟同步
[root@bjPY59 cron.hourly]# more ntpserver.sh
#!/bin/sh
/usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
6 jboss
run.conf 增加
-DWEB_CONFIG_HOME=/infowarelab/conf -Dsun.net.inetaddr.ttl=10
用DIFF对比远程文件跟本地文件
ssh user@host cat /path/to/remotefile | diff /path/to/localfile -
diff通常的用法是从参数读入两个文件,而命令里面的-则是指从stdin读入了。
阅读(2804) | 评论(0) | 转发(0) |