2013年10月26日

Access to CS3 and CS4 trial version download

http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html

2013年8月1日

harddisk failure indicator from SMART

0x05 Reallocated Sectors Count
0xC5 Current Pending Sector Count
0xC6 Uncorrectable Sector Count

http://www.ntfs.com/disk-monitor-smart-attributes.htm

2013年7月15日

2013年5月11日

Instant shutdown by pressing the power button (Ubuntu)


That's simple enough. When you press the power button a ACPI event triggers the script at /etc/acpi/powerbtn.sh.

You can edit that to just run shutdown -h now as the first thing so it looks like:

#!/bin/sh
# /etc/acpi/powerbtn.sh
# Initiates a shutdown when the power putton has been
# pressed.

/sbin/shutdown -h now "Power button pressed"
exit 0

# leave the old code below (in case you want to revert!)