Hacker News new | past | comments | ask | show | jobs | submit login

Oh, I see. Okay then.

  $ pgrep() { for proc in /proc/[0-9]*; do read CMDLINE < $proc/cmdline; if [[ ${CMDLINE/*$1*/x} == x ]]; then echo ${proc#/proc/}; return 0; fi; done; return 1; }
  $ kill $(pgrep mysqld)
  $ while pgrep mysqld; do sleep 5; done
  $ echo s >/proc/sysrq-trigger
  $ while sleep 2; do dmesg | tail; done
  $ echo b >/proc/sysrq-trigger



I admire your tenacity, but I think sleep, dmesg and tail are all out as well!

Though all could b mitigated by leaving it for a minute or two at the relevant point, and manually checking for the mysql process every so often. I'll keep this on file for next time it happens (though I'm hoping to replace the dodgy parts at the weekend).


grumble grumble

  $ pgrep() { for proc in /proc/[0-9]*; do read CMDLINE < $proc/cmdline; if [[ ${CMDLINE/*$1*/x} == x ]]; then echo ${proc#/proc/}; return 0; fi; done; return 1; }
  $ kill $(pgrep mysqld)
  $ pgrep mysqld; echo $?
  $ echo s >/proc/sysrq-trigger
  $ while read LAST; do; done < /proc/kmsg; echo $LAST
  $ echo b >/proc/sysrq-trigger


You, sir or madam, are awesome and very resourceful. I'll use this one :)




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: