These are possible fixes:
- run setup.exe from installation image with /I en parameter: setup.exe /i en
- use a tool to fix your registry. I've used Free Windows Registry Repair.
sudo rebootBut if those two don't work, you can use this as root:
sudo shutdown -h now
echo 1 > /proc/sys/kernel/sysrq- force shutdown:
echo b > /proc/sysrq-trigger
echo 1 > /proc/sys/kernel/sysrqWARNING: This does not sync any disks, ....
echo o > /proc/sysrq-trigger
echo s > /proc/sysrq-triggerto sync disks before reboot/shutdown.
db2greg -delinstrec instancename=db2inst1db2greg is a nice tool that lets you display and alter global registry. More at DB2 10.1 Info Center
#!/bin/sh
# File: "/etc/pm/sleep.d/ 20_custom- ehci_hcd" .
TMPLIST=/tmp/ehci- dev-list
case "${1}" in
hibernate| suspend)
;;
resume| thaw)
chvt 1
chvt 7
;;
esac