วิธีการ force reboot/shutdown เสมือน กดปุ่มหน้าเครื่อง

พอดี เล่น nginx + da เยอะไปหน่อย เครื่องค้างไปเลย สั่งรีบูตไปหลายทีก็ไม่ยอมทำตาม จะให้เปิด ticket แจ้ง ก็คงรอนาน เลยไปหาข้อมุลเล่นๆใน google ทำตามดู เจ๋งเฮ้ย กดปุ้บ ดับปั้บ -*-

คำเตือน! การชัตดาวน์/reboot ด้วยวิธีนี้จะไม่มีการ sync ข้อมูล ลงดิส เพราะฉะนั้นอาจทำให้ข้อมูลเสียหายได้

Forcing reboot

Linux is not Windows XP and if reboot fail you usually still connect by SSH and do something. This commands will show you how to remotely hard reboot machine. Hard reboot mean that shutdown scripts will not run and machine reboot immediately without syncing hard disk drives, shutdown applications etc, it’s more like hitting the reset button.



    echo 1 > /proc/sys/kernel/sysrq



    echo b > /proc/sysrq-trigger

This commands enable sysrq and after this calls fast reboot. If you want to force shutdown machine try this.

Force shutdown

    echo 1 > /proc/sys/kernel/sysrq



    echo o > /proc/sysrq-trigger

ที่มา http://smshaker.wordpress.com/2009/03/02/linux-force-rebootshutdown/

+1

+1

+1

+1