Linux下常用命令备忘录

ntsysv ---------- 启动服务配置程序

df -lh   ---------- 查看服务器硬盘可用空间

/etc/init.d/iptables restart  ---------- 重启防火墙

/usr/local/mysql/bin/mysql -u root -p  登录mysql服务

zip -r test.zip ./*  ---------- 遍历压缩当前文件夹至test.zip档

unzip test.zip ---------- 将zip文档解压至当前目录

chmod -R 777 ./ ----------遍历将当前目录下所有文件权限设置为777

chown -R mysql /text ----------遍历将text目录下所有文件所有者改成mysql

 

 

 

设置lampp随系统自动启动
ln -s /opt/lampp/lampp /etc/rc3.d/S99lampp
ln -s /opt/lampp/lampp /etc/rc4.d/S99lampp
ln -s /opt/lampp/lampp /etc/rc5.d/S99lampp

 

Ctrl+Alt+F1~F2 ----------可以在命令行和图形模式间切换Centos系统

linux下防火墙配置文件地址:/etc/sysconfig/iptables

服务器IP配置文件地址: /etc/sysconfig/network-scripts/ifcfg-eth0 

Linux启动脚本地址:/etc/rc.d/rc.local

你可能感兴趣的:(linux)