实习前,有一种做法是兄弟一起过来问我“操作和维护有一些东西你不经常使用的命令状?”。我当时就诧异了。好像真没好好归纳一下。所以趁着这几个月时间比較闲,慢慢把平时的经常使用命令归纳一下。然后就我感觉的话,运维命令靠背别人的归纳是非常难学的。
可能每一个人习惯不一样吧,然后最重要还是自己敲的多。所以就当是纯碎是个人笔记、备忘录。假设有记错或者不对的地方,希望大家能够帮忙指正一下
1、find -name filename
find searchparth -name filename
2、rm -rf filename/matchstring
3、service servicename stop|restart|start
4、chkconfig servicename off/on
5、ls | grep -E matchstring
6、ll | grep -E matchstring
7、rpm -ivh filename
8、tar xvf filename.tar
9、tar zxvf filename.tar.gz
10、tar jxvf filename.tar.bz2/.tar.bz
11、unzip filename.zip
12、bunzip filename.bz2
13、tar cvf fileName.tar dirName
14、fdisk /dev/sda
15、su root
sudo -u user(except root) command
16、ps -aux | grep -E matchstring
17、kill -l PID
kill 9/-kill PID
18、chmod a+x filename
chmod XXX filename
19、cat filename
more filename
less filename
tail -n lastline filename
20、date
21、touch filename
22、mv oldfilepath newfilepath
23、cp oldfilepath newfilepath
24、./configure
make
make install
25、free -m
26、vmstat
27、sar
28、iostat
29、uptime
30、netstat
31、top
32、dd of=/dev/sda count=512 count=1
33、df -h
34、mount -l
mount device dir
umount dir
/etc/fstab
35、crontab -e
分时日月周
33、man command
版权声明:本文博客原创文章。博客,未经同意,不得转载。