摘要:
awk '/^UUID/{fs[$3]++}END{for(i in fs) {print i,fs[i]}}' /etc/fstab /^UUID/ 匹配确定行范围 阅读全文
摘要:
! Configuration File for keepalived global_defs { notification_email { xaioqiang.he@xinboxinmo.com } notification_email_from h_find@sina.com smtp_server 192.168.200.1 smtp_connect... 阅读全文
摘要:
http://www.cnblogs.com/crysmile/p/9505527.html 阅读全文
摘要:
说明:centos7单机部署 nginx fastdfs ## 创建一下目录作为存储数据图片的路径 可以自己定义 mkdir -pv /data/application/{storage,tracker,client} cd /data/application/ yum install lrzsz 阅读全文
摘要:
在新建导向的时候最后一步之前,选择查看细节那里,在desplay的地方选择VNC server ,再在keyboard地方选择us-en,这下进入安装界面就可以了。 阅读全文
摘要:
https://www.oschina.net/news/97476/zentao-10-0-stable-released 阅读全文
摘要:
set -x 脚本部分内容 set +x 阅读全文
摘要:
变量="变量" readonly 变量名="变量" 表示设置该变量为只读变量 ,这个变量不能别改变 echo $变量名 set 显示本地所有的变量 unset 变量名 表示清除变量 readonly 显示当前shell下有哪些只读变量 阅读全文
摘要:
:<<BLOCK 中间为要注释的内容 BLOCK 阅读全文
摘要:
@ 如果有很多图片(比如web服务器的页面上有多个小图片),通常是没有必要记录文件的访问时间的,这样就可以减少写磁盘的I/O,这个要如何配置 @ 首先,修改文件系统的配置文件/etc/fstab ,然后,在包含大量文件的分区中使用noatime和nodiratime这俩个命令 /dev/sda5 / 阅读全文