Entries from August 2014

How To Resize an ext3 Filesystem

Author: , August 31st, 2014

I had to replace an ailing root volume on AWS, so I decided to double the size when I created the new volume from snapshot. After booting, I realized that df still showed the old filesystem size of 10GB, not the new size of 20GB Here is the solution: resize2fs /dev/xvda1

How To GZip Uncompressed Files Older Than a Week Using Find

Author: , August 29th, 2014

find . -mtime +7 ! -name “*.gz” -exec gzip {} \;

How to Create a Large File in CentOS

Author: , August 26th, 2014

Under Solaris: mkfile 10m large.file Under Linux: fallocate -l 7G large.file ~or~ truncate -s 7G large.file ~or~ dd if=/dev/zero of=large.file bs=1024k count=700

R.I.P. Lauren Bacall

Author: , August 12th, 2014

R.I.P. Robin Williams

Author: , August 11th, 2014

How To Fix Apple iCloud Mail Errors on Snow Leopard

Author: , August 7th, 2014

Some actions taken while the account “iCloud” was offline could not be completed online. Mail has undone actions on some messages so that you can redo the actions when online. Mail has saved other messages in mailbox “Recovered Messages (iCloud)” in “On My Mac” so that you can complete the actions when online. Step 1. […]