积累些常用的命令
1 find / -name lrims2 查找根路径下名字为lrims2的文件夹
2 tail -f catalina.out 查看tomcat log
改为LANG="zh_CN.GB18030"
LANGUAGE="zh_CN.GB18030:zh_CN.GB2312:zh_CN"
SUPPORTED="zh_CN.GB18030:zh_CN:zh"
SYSFONT="lat0-sun16"
SYSFONTACM="8859-15"
6 配置ssh端口
vi /etc/ssh/sshd_config 修改Port 属性。
重启服务 service sshd restart
7 用户管理
adduser 添加用户 passwd 修改密码
8 安装ftp
如果出现another app is currently holding the yum lock;waiting for it to exit...
可以强制关掉yum进程:#rm -f /var/run/yum.pid
启动服务 service vsftpd start
ftp配置
http://lianj-lee.iteye.com/blog/519027
9 解压 tar.gz
tar -xvzf filename.tar.gz
10 安装nginx
tar -zxvf nginx-1.1.2.tar.gz
cd nginx-1.1.2
yum -y install pcre-devel openssl openssl-devel
./configure --prefix=/usr/local/nginx
make
make install
11 卸载centos自带apache
1、[root@localhost etc]# rpm -qa|grep httpd,查看与httpd相关软件包。
httpd-2.2.3-11.el5_2.centos.4
2、然后删除httpd:
[root@localhost etc]# rpm -e httpd
出现问题:
error: Failed dependencies:
httpd >= 2.2.0 is needed by (installed) gnome-user-share-0.10-6.el5.i386
3、还有一个相关的软件包没有删除,清除之,即:
[root@localhost etc]# rpm -e gnome-user-share
4、再删除httpd
[root@localhost etc]# rpm -e httpd
#可以使用参数–nodeps的意思就是不管各个程序包间的依赖关系。
[root@localhost etc]#rpm -e –nodeps httpd //这样不需要删除gnome-user-share了.
12 查看文件数量 ls -l |grep "^-"|wc -l
posted on 2012-01-03 18:54
周磊 阅读(178)
评论(0) 编辑 收藏