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

📄 02_sysrq_sync_pos.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Dan Smith <danms@us.ibm.com>import sysimport reimport timefrom XmTestLib import *if ENABLE_HVM_SUPPORT:    SKIP("Sysrq not supported for HVM domains")# Create a domain (default XmTestDomain, with our ramdisk)domain = XmTestDomain()# Start ittry:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))status, output = traceCommand("xm sysrq %s s" % domain.getName())if status != 0:    FAIL("Good sysrq failed with: %i != 0", status)# -- CHECK OUTPUT# Run 'ls'try:    # Check the dmesg output on the domU    run = console.runCmd("dmesg | grep Emerg\n")except ConsoleError, e:    FAIL(str(e))# Close the consoledomain.closeConsole()# Stop the domain (nice shutdown)domain.stop()# Save a transcript for human review# saveLog(console.getHistory())# Check dmesg for the sysrq noticeif not re.search("Emergency", run["output"]):    FAIL("Sync SysRq not delivered")

⌨️ 快捷键说明

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