linux常用命令
延伸:系统定时任务
延伸:vi/vim编辑器
延伸:shell基础
系统安全:sudo、su、chmod、setfacl
进场管理:w、top、ps、kill、pkill、pstree、killall
用户管理:id、usermod、useradd、groupadd、userdel
文件系统:mount、umount、fsck、df、du
系统关机和重启:shutdown、reboot
网络应用:curl、telnet、mail、elinks
网络测试:ping、netstat、host
网络配置:hostname、ifconfig
常用工具:ssh、screen、clear、who、date
软件包的管理:yum、rpm、apt-get
文件查找和比较:locate、find
文件内容查看:head、tail、less、more
文件处理:touch、unlink、rename、ln、cat
目录操作:cd、mv、rm、pwd、tree、cp、ls
文件权限属性:setfacl、chmod、chown、chgrp
压缩和解压:bzip2/bunzip2、gzip/gunzip、zip/unzip、tar
文件传输:ftp、scp
Linux系统定时任务
crontab命令 crontab -e *****命令(分时日月周)
at命令 一次性执行 at 2:00 tomorrow at>/home/jason/do_job at>Ctrl+D
vi/vim编辑器
模式:一般模式、编辑模式、命令行模式
一般模式:删除、复制、黏贴
切换编辑模式: i、I、o、O、a、A、r、R
切换命令行模式: :、/、?
移动光标:ctrl+f、ctrl+b、0或者功能键home、$或者功能键End、G、gg、N+enter
查找和替换:/word、?world
删除、复制和黏贴:x,X、dd、ndd、yy、nyy、p、P、ctrl+r
视图模式:v、V、ctrl+v、y、d
配置::setnu :setnonu
shell基础
脚本执行方式
赋予权限,直接执行,例:chmod +x test.sh;./test.sh
调用解释器使得脚本执行,例:bash、csh、ash、bsh、ksh等
使用source命令,例:source test.sh
编写基础:开头用#!指定脚本解释器,例如:#!/bin/sh 编写具体功能
网友评论