⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 03_sysrq_withreboot_pos.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Dan Smith <danms@us.ibm.com>from XmTestLib import *import timeif ENABLE_HVM_SUPPORT:    SKIP("Sysrq not supported for HVM domains")domain = XmTestDomain()try:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create domain:"    print e.extra    FAIL(str(e))status, output = traceCommand("xm reboot %s" % domain.getName())if status != 0:    FAIL("reboot %s failed with %i != 0" % (domain.getName(), status))# Wait for the reboot to finishtime.sleep(20)status, output = traceCommand("xm sysrq %s s" % domain.getName())if status != 0:    FAIL("sysrq failed with %i != 0" % status)try:    run = console.runCmd("dmesg | grep -i reboot")except ConsoleError, e:    FAIL(str(e))if run == 0:    FAIL("reboot/sysrq resulted in reboot!")

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -