还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

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

来源:清泛原创     2016-06-28 09:49:16    人气:     我有话说( 0 人参与)

Linux启动、停止、查询系统服务的命令:chkconfig --list #列出所有的系统服务chkconfig --add xxx #增加xxx系统服...

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

命令 常用

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: