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

📄 02_block_attach_file_device_pos.py

📁 xen虚拟机源代码安装包
💻 PY
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2005# Author: Murillo F. Bernardes <mfb@br.ibm.com>import refrom XmTestLib import *from XmTestLib.block_utils import *if ENABLE_HVM_SUPPORT:    SKIP("Block-attach not supported for HVM domains")# Create a domain (default XmTestDomain, with our ramdisk)domain = XmTestDomain()try:    console = domain.start()except DomainError, e:    if verbose:        print "Failed to create test domain because:"        print e.extra    FAIL(str(e))# Set console to save commands and make sure we can run cmdstry:    console.setHistorySaveCmds(value=True)    # Run 'ls'    run = console.runCmd("ls")except ConsoleError, e:    saveLog(console.getHistory())    FAIL(str(e))    block_attach(domain, "file:/dev/ram1", "xvda1")try:    run = console.runCmd("cat /proc/partitions")except ConsoleError, e:        FAIL(str(e))# Close the consoledomain.closeConsole()# Stop the domain (nice shutdown)domain.stop()if not re.search("xvda1",run["output"]):    FAIL("Device is not actually connected to the domU")

⌨️ 快捷键说明

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