A while back we reviewed 15 practical find command examples (Part I). Find command can do […]
Linux
Mommy, I found it! — 15 Practical Linux Find Command Examples
Apart from the basic operation of looking for files under a directory structure, you can […]
Proftpd Time zone 时区设置
使用 FTP 连接到服务器修改文件,发现修改时间总是差 8 个小时。比如我 10:28 修改的,显示时间是 2:28。 2:28 是 GMT 时间,北京是 GMT+8:00,东八区,也就是说,应该比 GTM 提前 […]
Mac OS X 开启 sshd
运行 /usr/sbin/sshd ,系统报错: Could not load host key: /etc/ssh_host_rsa_key Could not load host key: /etc/ssh_host_dsa_key […]
awk printf 输出转义单引号 \047
用 pipe + awk 批量生成 mysql 命令行,遇到个问题。 | awk ‘{printf("ctime > ‘2012-08-08 00:00:00′ ")}’ 这样是不行的。 […]
svg 文件批量转换 png 介绍 mogrify
我找到一套图标,几百个文件都是 .svg 格式的,只能一个一个在浏览器里面打开,从中找到一个满意的太麻烦了。 通过搜索,找到了一个超级工具,ImageMagick 的 mogrify。 用法也是相当简单,把所有 svg 文件放在一个目录下,然后进入这个目录,执行命令: find ./ -name *.svg -exec mogrify […]
grep 归档日志的好办法
归档的日志文件,想要从中找出匹配的数据,我最近才知道有更好的办法。 先说说我以前的笨方法: * 先解压 bz2 文件到纯文本 * 再 grep 这个文本 * 完成后再删除这个纯文本 整个过程很麻烦。 有位高手告诉我更简单的办法: […]
使用 rsync 备份多台服务器
今天对服务器备份的脚本进行了重构,把配置参数独立成文件,使用 PHP 代替不熟悉的 shell,理顺了思路,分享一下。 【环境】 一共3台服务器,server-1 和 server-2 是线上生产环境,backup-server 是专门用于备份的服务器。 【目的】 定期把 server-1 和 server-2 […]
sudo: sorry, you must have a tty to run sudo
I was recently working on a Perl script that would SSH to another server and […]
su 环境变量 小发现
Linux 下普通用户 su 成 root 后,环境变量以及路径等都还使用原用户的,比如没法直接执行 ifconfig,必须要用 /sbin/ifconfig。 今天受 wangjun 提醒,原来 su – 可以解决问题,直接切换到 root […]