2011.7.27
shell下蜂鸣器振铃,用于执行耗时命令后提醒
echo -e "\a" 或 echo -e "\007"
必须加-e 使能 \ 转换
2011.7.29
linux根据文件中特定字符串搜索文件
grep -rni "xxxxxx" . --include *.cpp
find -type f -name *.cpp|xargs grep "xxxxxxxx"
2011.09.10
centos 安装gcc和开发库
yum groupinstall "Development Tools" "Development Libraries"
20120310
samba服务器 支持符号链接
[global]
unix extensions = no
[xxxx]
follow symlinks = Yes
wide links = Yes
20120627
重设内存盘大小:
例如:
mount -o remount,size=3G /dev/shm
注意size的大小可以的单位是M\k\G
新建内存盘:
例如:
mkdir /usr/local/squid/var/cache
mount -t tmpfs -o size=3G,mode=0755 tmpfs /usr/local/squid/var/cache
阅读(1154) | 评论(0) | 转发(0) |