1.基本命令
①关机 [ h ]
shutdown -h now
shutdown -h 1
②重启 [ r ]
shutdown -r now
shutdown -r 1
2.目录操作
①切换目录 [ cd ]
cd /
cd /usr
cd ..
cd ~
cd -
②目录查看 [ ls ]
ls
ls -a
ls -l
ls /dir
③当前目录查看 [ pwd ]
pwd
3.查找命令
①查看指定服务 [ grep ]
ps -ef | grep orale
②查找文件 [ find ]
find . -name "*.log" -ls
find . -size +100M
4.用户操作
①用户切换 [ su ]
su oracle
②退出返回用户
exit
5.查看操作
①查看网络是否连接 [ ping ]
ping 192.168.222.132
②查看网卡信息 [ ifconfig ]
ifconfig
③查看进程 [ ps ]
ps -ef
④查看系统端口 [ netstat ]
netstat -an | grep 8080
6.其他操作
①重启网络
service network restart
②关闭防火墙
chkconfig iptables off
③清屏
clear