版本 6 和 Core_dump 的 版本 7 之間的變動
- 時間撮記:
- 2008-9-16 上午07:23:57 (16 年 前)
圖例:
- 未更動
- 新增
- 刪除
- 修改
-
Core_dump
v6 v7 25 25 Sometimes it is required to force a !VirtualBox process to terminate, for example, a VM hangs for some unknown reason. This can be done like this (I assume that the VM was started from the GUI): 26 26 {{{ 27 $ ulimit -c unlimited 28 $ sudo echo -n 1 > /proc/sys/fs/suid_dumpable 27 29 $ /usr/lib/virtualbox/VirtualBox -startvm VM_NAME & 28 30 $ pidof VirtualBox … … 30 32 $ kill -4 7145 31 33 }}} 32 Passing the signal number 4 `SIGKILL`is essential! The same applies to the alternative frontends `VBoxHeadless` and `VBoxSDL`.34 Passing the signal number 4 (`SIGKILL`) is essential! The same applies to the alternative frontends `VBoxHeadless` and `VBoxSDL`.