电子邮件服务:
smtp:simple mail transmission protocol,用于传送邮件
pop3:Post Office Protocol
ipap4:Internet Mail Access Protocol
mailx - send and receive Internet mail
MUA:Mail User Agent
mailx [-s 'SUBJECT'] username[@hostname]
邮件正文的生成:
1):直接给出,ctrl+d(.) 退出
2):输入重定向
3):通过管道
echo -e “How are you?\nHow old are you?”| mail
示例:
mailx -s ‘hello’ root@localhost 主题为hello
邮件内容
. (退出)
mailx -s ‘he’ danrna@localhost < mail.txt 将mail.txt文件中的内容发送给本机上的danran用户,主题为he
env x='() { :;};echo be carefull' bash -c "echo this is a test" 测试系统是否存漏洞
如果返回值值为this is a test则表示bash不需升级
如果返回值为be carefull 和this is a test则表示系统存在漏洞,需要升级bash
升级bash
yum -y update bash
rpm -qa bash
VIM
vim 添加颜色 ctrl+v “[” 在vim中可添加‘^[’字符
convert -resize 640X480 -colors 14 win.jpg win.xpm 将大小为640X460的win.jpg文件转换为为win.xpm图片格式
异或的特点:
任意两个数异或,得出一个值c,则三个数之间任意两个数异或都等于第三个数
a^b=c
c^a=b
c^b=a
a=10;b=8;echo $((a^b))
a=10;b=8;echo "a=$a;b=$b";a=$((a^b));b=$((a^b));a=$((a^b));echo "a=$a;b=$b"
系统添加新的磁盘链接
硬盘识别链接规则文件
新建一规则文件,编辑链接规则,如下
cat /etc/udev/rules.d/80-usb-rules_new
SUBSYSTEM=="block",KERNEL=="sdb",SYMLINK="danranusb"