Linux常用命令(持续更新...)

清泛原创
Linux启动、停止、查询系统服务的命令:
chkconfig --list               #列出所有的系统服务
chkconfig --add xxx      #增加xxx系统服务
chkconfig xxx on/off      #开启/取消xxx系统服务的开机自启动(Linux服务开机启动)
chkconfig --del xxx       #增加xxx系统服务

#apachectl 注册为系统自启动服务的方法
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
chkconfig --add httpd
chkconfig httpd on

磁盘空间不足,查看各目录占用情况:
cd xxx
du -h --max-depth=1

查找文件(例如/usr目录下查找包含'apache'的目录和文件):
find /usr -name apache
find /usr -name apache -type f    (只找文件)
find /usr -name apache -type d   (只找目录)

查看进程:
netstat -ntpl

解压:
tar -zxvf xxx.tar.gz
tar -xvf xxx.tar.bz2
tar -xvf xxx.tar.xz

解压7z文件:
http://sourceforge.net/projects/p7zip/files/
cd xxx
make
sh install.sh
7za x xxx.7z

命令 常用

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部