Reference:
http://www.youtube.com/watch?v=-B_ZD6YyWs8
2013年2月27日 星期三
delete out-of-date tracelog on Linux
Reference:
http://stackoverflow.com/questions/5142429/unix-how-to-delete-files-listed-in-a-file
http://itigloo.com/how-do-i/binrm-argument-list-too-long-error/
Uses command: rm -rf `find . -name *.tr[0-9]* -print` and gets ‘/bin/rm: Argument list too long’ error.
Solution 1:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print > /root/list.txt
for f in $(cat /root/list.txt); do
rm $f
done
Solution 2:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print | xargs rm
http://stackoverflow.com/questions/5142429/unix-how-to-delete-files-listed-in-a-file
http://itigloo.com/how-do-i/binrm-argument-list-too-long-error/
Uses command: rm -rf `find . -name *.tr[0-9]* -print` and gets ‘/bin/rm: Argument list too long’ error.
Solution 1:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print > /root/list.txt
for f in $(cat /root/list.txt); do
rm $f
done
Solution 2:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print | xargs rm
backup Linux on VMware ESX
Backup Linux files with Symantec Backup Exec 2012:
- Linux on Physical machine: backup speed 750MB/min
- Linux on VMware without vmware tools: backup speed 350MB/min
- Linux on VMware with vmware tools: backup speed 1500MB/sec
2013年2月25日 星期一
2013年2月23日 星期六
Do not automatically mark as read (Outlook)
Reference:
http://www.msoutlook.info/question/250
http://www.msoutlook.info/question/250
- Outlook 2007 and previous
- Tools-> Options…-> tab Other-> button Reading Pane…
- Outlook 2010 and Outlook 2013
- tab View-> Reading Pane-> Options…
2013年2月21日 星期四
訂閱:
文章 (Atom)







