Efficient Embedded Software Development Using QEMU

Total Page:16

File Type:pdf, Size:1020Kb

Efficient Embedded Software Development Using QEMU Efficient embedded software development using QEMU Pradyumna Sampath ABB Corporate Research Bhoruka Tech Park, 5th Floor, Block 1, Whitefield Road, Mahadevapura, Bangalore, Karnataka, India [email protected] Rachana Rao ABB Corporate Research Bhoruka Tech Park, 5th Floor, Block 1, Whitefield Road, Mahadevapura, Bangalore, Karnataka, India [email protected] Abstract Software based processor emulators have been around for a long time and predominantly used by developers of Operating Systems. With virtualization technology becoming more common and gaining in-processor support, these emulators have expanded to support several processor architectures and a richer feature set. Consequently, popular operating systems such as Linux have been adapted to run within virtual environments seamlessly. As part of the software development process, this virtualization technology has huge potential to increase product quality and developer efficiency. This paper looks at employing virtualization for in-house real-time application software development through QEMU, a popular open source emulator. It also details the process of establishing such an environment and looks at some of the advantages of such a development model for embedded systems. 1 Introduction development by decoupling it from the underlying hardware. Industrial Automation and Power technologies are characterized by extremely complex software sys- Traditionally, embedded software development tems which are in many cases very tightly coupled is inherently dependent on hardware availibility. with mechanical and electrical sub-systems. These Hardware development includes design, simulation systems tend to be safety and mission critical. De- and testing of hardware architecture, logic, circuit velopment of such systems is considerably time con- schematics and finally the PCB. This is a very time- suming. However, they are also charecterized by consuming process, often iterative and unpredictable long if not very long product lifecycles sometimes in due to dependency on factors like component avail- the order of fifteen years. The scope and complexity ability and vendor support. Software developers of software components in these industrial products usually cannot afford to wait for the entire hardware has gone up significantly over the years. Continu- design to be completed and the board to arrive on ous remodeling and development of software for the their desks before starting on application develop- enduring industrial automation systems, places con- ment. This would increase the product development siderable challenges of efficiency on the development time substantially which is unacceptable. Appli- environment and processes followed. This paper at- cation development as well as verification(testing) tempts to look at acceleration of embedded software should be well underway by the time the hardware is finalized and delivered to the software developers. acts as a mediator between the operating system and This is where system emulation and virtual environ- the underlying hardware. This method is faster than ments step in and save the day. With the various emulation, however the criteria is that the underlying advanced hardware emulators and virtual machines hardware must be supported by operating system. available today, embedded software developers can KVM and VMware are examples of full virtualiza- get a head start on their applications. tion solutions. Paravirtualization uses a hypervisor for shared access to the underlying hardware. This The ablility to develop applications for a hard- method offers the best performance. However, since ware without the physical device itself is a definitely the virtualization code is integrated into the operat- a big advantage. However, there are other advan- ing system itself, the guest operating systems have to tages provided by the emulator too. It can make a be modified for the hypervisor. Xen and User Mode safe and secure environment for the testing of new Linux are examples of paravitualization. and untried applications. Since modern emulators now support various kinds of hardware as well as different operating systems, the application can also 3 Our Setup be tested for scalability and reliability and not just functionality. This makes virutalized environments 3.1 Hardware very powerful and feasible testing platforms. Em- ulators also prove valuable in cases of kernel and The target for emulation is a custom board made by device driver development, where a small mistake ABB. This board is based on the Freescale Lite5200 can crash the entire operating system. Developing evaluation board[5]. The microprocessor on board and debugging drivers on an emulator, makes it sim- is the Freescale MPC5200B[6], a PowerPC embed- ilar to user-space applications, which at the worst ded processor based on the 400MHz MPC603e series can lead to the emulator crash. e300 core. It is provided with 64 megabytes of RAM (DDR) and 32 megabytes of flash memory. 3.2 Software 2 Virtualization and Emula- The target board is a part of time critical control sys- tors tems and hence there are real time constraints on the application response times[7]. To accomplish this, Since the term virtualization[1] was coined, over the target runs Linux kernel patched with the latest four decades ago, it has been defined many times rt-preempt patch[8]. As of now, the version running and in many different ways. Virtualization is bas- on the hardware is Linux 2.6.29.4-rt17. However, cially abstraction of one or more computer resources since the real time performance is not a criteria as to achieve the behaviour of the desired system. The of now, we have reverted to the non rt version of desired system here could be a high end grid com- the Linux kernel for this emulation. Hence, for the puter or a testing platform for a different archi- present time our requirements are limited to the tecture etc. In the beginning, the term emulation latest mainline kernel and also support for ethernet was usually used for virtualization using hardware. ports. Ethernet is needed by the application to be However, recently it has also become common to use run on the board emulator as well as for remote de- the term emulation in the software context. Emu- bugging of the application. lation[2] refers to the replication of functions of a system by another, so that the emulator acts similar Traditionally, development of embedded software to the emulated system. has been done on Windows host, cross-compiled and deployed on the target. In order to reduce the learn- There are various types of virtualizaton[3][4], de- ing curve for embedded developers, it is important pending on the system being virtualized and levels of that the host platform for this emulation be retained abstraction used to achieve it. Hardware emulation as Windows. refers to the virtualization of the required hardware on the host machine. It usually suffers from being slow, however the major advantage offered is the abil- 4 Choices ity to simultaenously develop software through sim- ulation, as the hardware is being developed. QEMU A few virtualization methods and solutions were and Bochs are examples of hardware emulators. Na- evaluated keeping the above needs in mind. Below is tive or Full virtualization uses a hypervisor which the list of the options considered. 4.1 Kernel Virtual Machine (KVM) • QEMU supports both x86-Windows and x86- Linux as host machines KVM[9] is a full virtualization solution for Linux on x86 hardware. It comes in the form on a loadable ker- • QEMU is an active open source project with a nel module which provides the virtualization infras- good developer community and support tructure as well as the processor specfic implementa- tions. KVM has been a part of the mainline kernel since 2.6.20 and is a very active open source project 5 Programming Embedded with a strong developer community. The PowerPC support however is still work in progress. Also there systems using QEMU is no support from Windows as the host machine. An effective IDE which provides for efficient applica- tion development consists of two main components 4.2 VMware Server VMware server[10] is a virtualization platfrom which 5.1 QEMU allows one to create and run virtual machines for dif- For the reasons mentioned above, QEMU is the sys- ferent operating systems on a Linux or Windows x86 tem emulator that was selected to emulate the ABB machine. It is partly open source. However, it does custom board for which applications need to be de- not support PowerPC emulation. veloped. The applications can be run and debugged on the QEMU emulator just as they would on the 4.3 Xen real board. The compilers and linkers used to build the source code also remain the same, i.e. the ap- The Xen[11] virtual machine monitor is a paravir- plication is compiled on the host machine for the tualization solution for x86 and PowerPC architec- Lite5200 target using cross-compilers (ELDK[14] on tures. The Xen hypervisor is the most privileged Linux and CodeSourcery Lite[15] on Windows) as layer, above which a wide range of guest operating usual. It is also possible to (remotely) debug the ap- systems can run concurrently. The guest operating plication running on QEMU from the host machine systems need to be modified to be able to run on using GDB. Xen. Also the PowerPC support does not extend to MPC603e core processors. 5.2 Eclipse 4.4 PearPC Eclipse is widely adapted as a development platform for embedded systems for many good reasons[16]. PearPC[12] is an architecture independent PowerPC One of the main reasons is that it is an open frame- platform emulator. This is an outdated project with work with a plugin architecture that enables easy no current developments ongoing. development and integration of a variety of soft- ware tools for embedded development. This is also 4.5 QEMU the reason why it supports usage of a number of Qemu[13] is an open source machine emulator writ- third party tools and interoperability between them, ten by Fabrice Bellard.
Recommended publications
  • Design and Evaluation of Self-Management Approaches for Virtual Machine-Based Environments
    Fachhochschule Wiesbaden Fachbereich Design Informatik Medien Studiengang Informatik Master-Thesis zur Erlangung des akademischen Grades Master of Science – M.Sc. Design and Evaluation of Self-Management Approaches for Virtual Machine-Based Environments vorgelegt von Dan Marinescu am 29. Februar 2008 Referent: Prof. Dr. Reinhold Kröger Korreferent: Prof. Dr. Steffen Reith II Erklärung gem. BBPO, Ziff. 6.4.2 Ich versichere, dass ich die Master-Thesis selbstständig verfasst und keine anderen als die angegebenen Hilfsmittel benutzt habe. Wiesbaden, 29.02.2008 Dan Marinescu Hiermit erkläre ich mein Einverständnis mit den im Folgenden aufgeführten Verbreitungs- formen dieser Master-Thesis: Verbreitungsform ja nein Einstellung der Arbeit in die √ Bibliothek der FHW Veröffentlichung des Titels der √ Arbeit im Internet Veröffentlichung der Arbeit im √ Internet Wiesbaden, 29.02.2008 Dan Marinescu III IV Contents 1 Introduction 1 2 Background 5 2.1 Virtualization ................................ 5 2.1.1 Taxonomy ............................. 5 2.1.2 Case Study: Xen .......................... 10 2.1.3 Live Migration ........................... 13 2.1.4 Hardware-Assisted Virtualization ................. 16 2.1.5 Management of Vitual Machine Environments .......... 17 2.2 Service Level Management ......................... 20 2.3 Autonomic Computing ........................... 21 2.3.1 Motivation ............................. 21 2.3.2 Taxonomy ............................. 22 2.3.3 Architectural Considerations .................... 23 2.3.4 Examples of Autonomic Computing Systems ........... 24 2.4 Complexity theory and Optimization .................... 25 2.4.1 Introduction to Complexity Theory ................ 25 2.4.2 Complexity Classes ......................... 25 2.4.3 Optimization Problems ....................... 26 2.4.4 The Knapsack Family of Problems ................. 27 2.4.5 Approximation Algorithms ..................... 29 2.4.6 Heuristics .............................. 32 V 3 Analysis 37 3.1 State of the Art ..............................
    [Show full text]
  • Virtual Square: All the Virtuality You Always Wanted but You Were Afraid to Ask
    Virtual Square: all the virtuality you always wanted but you were afraid to ask. Renzo Davoli i Computer Science Department vol Da ALMA MATER STUDIORUM: University of Bologna o Renz eft, yl WorkShop 2007 sul Calcolo e Reti dell'INFN op C 7 Rimini, 10 maggio 2007 00 2 © re ua Sq l ua t Vir Virtual Square VIRTUAL VIRTUAL VIRTUAL SQUARED i VIRTUAL SQUARE vol Da o VIRTUAL VIRTUAL Renz eft, VIRTUAL yl VIRTUAL op C 7 00 2 VIRTUAL © re VIRTUAL ua Sq l ua t Vir VIRTUALITY today ● Virtual Machines – historical topic – lots of papers – lots of tools i vol Da – ... but something is already missing o Renz ● Virtual Networking eft, yl op – less historical C 7 00 2 – several papers © re ua Sq l ua t Vir Virtual Square Virtualization concepts and tools are disconnected. i There is a world of new applications that vol Da can be realized by interoperating, o Renz integrated virtuality eft, yl op C 7 UNIFICATION IS NEEDED 00 2 © re ua Sq l ua t Vir Virtual Square © 2007 Copyleft, Renzo Davoli Vi rtual S qu are Some Examples of VM (free software) ● Qemu: PVM or SVM, User Mode User Access (or dual-mode with KQEMU, proprietary sw). – cross emulation platform (ia32, ia64, ppc, i m68k, sparc, arm...) vol Da o – dynamic translation Renz ● eft, XEN: SVM, Native. yl op C 7 – xen uses para-virtualization (O.S. in domain0 00 2 © has the real device drivers). re ua – (xen ideas come from the Denali project: Sq l ua t SVN, Native, real virtualization).
    [Show full text]
  • KVM Based Virtualization and Remote Management Srinath Reddy Pasunuru St
    St. Cloud State University theRepository at St. Cloud State Culminating Projects in Information Assurance Department of Information Systems 5-2018 KVM Based Virtualization and Remote Management Srinath Reddy Pasunuru St. Cloud State University, [email protected] Follow this and additional works at: https://repository.stcloudstate.edu/msia_etds Recommended Citation Pasunuru, Srinath Reddy, "KVM Based Virtualization and Remote Management" (2018). Culminating Projects in Information Assurance. 53. https://repository.stcloudstate.edu/msia_etds/53 This Starred Paper is brought to you for free and open access by the Department of Information Systems at theRepository at St. Cloud State. It has been accepted for inclusion in Culminating Projects in Information Assurance by an authorized administrator of theRepository at St. Cloud State. For more information, please contact [email protected]. 1 KVM Based Virtualization and Remote Management by Srinath Reddy Pasunuru A Starred Paper Submitted to the Graduate Faculty of St. Cloud State University in Partial Fulfillment of the Requirements for the Degree Master of Science in Information Assurance May, 2018 Starred Paper Committee Susantha Herath, Chairperson Ezzat Kirmani Sneh Kalia 2 Abstract In the recent past, cloud computing is the most significant shifts and Kernel Virtual Machine (KVM) is the most commonly deployed hypervisor which are used in the IaaS layer of the cloud computing systems. The Hypervisor is the one which provides the complete virtualization environment which will intend to virtualize as much as hardware and systems which will include the CPUs, Memory, network interfaces and so on. Because of the virtualization technologies such as the KVM and others such as ESXi, there has been a significant decrease in the usage if the resources and decrease in the costs involved.
    [Show full text]
  • Performance Best Practices for Vmware Workstation Vmware Workstation 7.0
    Performance Best Practices for VMware Workstation VMware Workstation 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document, see http://www.vmware.com/support/pubs. EN-000294-00 Performance Best Practices for VMware Workstation You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product updates. If you have comments about this documentation, submit your feedback to: [email protected] Copyright © 2007–2009 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. VMware products are covered by one or more patents listed at http://www.vmware.com/go/patents. VMware is a registered trademark or trademark of VMware, Inc. in the United States and/or other jurisdictions. All other marks and names mentioned herein may be trademarks of their respective companies. VMware, Inc. 3401 Hillview Ave. Palo Alto, CA 94304 www.vmware.com 2 VMware, Inc. Contents About This Book 5 Terminology 5 Intended Audience 5 Document Feedback 5 Technical Support and Education Resources 5 Online and Telephone Support 5 Support Offerings 5 VMware Professional Services 6 1 Hardware for VMware Workstation 7 CPUs for VMware Workstation 7 Hyperthreading 7 Hardware-Assisted Virtualization 7 Hardware-Assisted CPU Virtualization (Intel VT-x and AMD AMD-V)
    [Show full text]
  • Virtualizationoverview
    VMWAREW H WHITEI T E PPAPERA P E R Virtualization Overview 1 VMWARE WHITE PAPER Table of Contents Introduction .............................................................................................................................................. 3 Virtualization in a Nutshell ................................................................................................................... 3 Virtualization Approaches .................................................................................................................... 4 Virtualization for Server Consolidation and Containment ........................................................... 7 How Virtualization Complements New-Generation Hardware .................................................. 8 Para-virtualization ................................................................................................................................... 8 VMware’s Virtualization Portfolio ........................................................................................................ 9 Glossary ..................................................................................................................................................... 10 2 VMWARE WHITE PAPER Virtualization Overview Introduction Virtualization in a Nutshell Among the leading business challenges confronting CIOs and Simply put, virtualization is an idea whose time has come. IT managers today are: cost-effective utilization of IT infrastruc- The term virtualization broadly describes the separation
    [Show full text]
  • Deploying Avaya IP Office Servers As Virtual Machines
    IP Office™ Platform 11.0 Deploying Avaya IP Office Servers as Virtual Machines 15-601011 Issue 06j - (Monday, October 12, 2020) 5.3 Adding a Certific..a...t.e.. .t.o.. .t.h...e.. .B...r.o..w...s...e..r................................... 67 Contents 5.3.1 Addin.g.. .a... .C...e..r.t.i.f.i.c..a...t.e.. .t.o.. .F...i.r.e..f.o...x.................................. 67 5.3.2 Addin.g.. .a... .C...e..r.t.i.f.i.c..a...t.e.. .t.o.. .E...x..p..l.o..r..e..r............................... 67 1. IP Office Linux Server Virtualization 5.3.3 Addin.g.. .a... .C...e..r.t.i.f.i.c..a...t.e.. .t.o.. .C...h...r.o..m....e................................ 67 1.1 Profiling ..................................................................... 5 5.3.4 Addin.g.. .a... .C...e..r.t.i.f.i.c..a...t.e.. .t.o.. .E...d..g...e..................................... 68 1.1.1 Primar.y. .S...e..r..v.e...r./.S...e..c..o..n...d..a..r..y. .S...e..r..v.e...r............................. 6 5.3.5 Addin.g.. .a... .C...e..r.t.i.f.i.c..a...t.e.. .t.o.. .S...a..f.a...r.i................................... 68 1.1.2 Expans..i.o..n... .S..y..s..t.e...m... .(..L..)................................................. 6 5.4 IP Office Initial C..o...n..f.i.g..u...r.a..t.i.o...n............................................... 69 1.1.3 one-X P...o..r.t.a...l. .S..e...r.v..e..r.....................................................
    [Show full text]
  • Vmware Workstation Pro 16.0 Using Vmware Workstation Pro
    Using VMware Workstation Pro VMware Workstation Pro 16.0 Using VMware Workstation Pro You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ VMware, Inc. 3401 Hillview Ave. Palo Alto, CA 94304 www.vmware.com © Copyright 2020 VMware, Inc. All rights reserved. Copyright and trademark information. VMware, Inc. 2 Contents Using VMware Workstation Pro 14 1 Introduction and System Requirements 15 Host System Requirements for Workstation Pro 15 Processor Requirements for Host Systems 15 Supported Host Operating Systems 16 Memory Requirements for Host Systems 16 Display Requirements for Host Systems 16 Disk Drive Requirements for Host Systems 17 Local Area Networking Requirements for Host Systems 18 ALSA Requirements 18 Virtual Machine Features and Specifications 18 Supported Guest Operating Systems 18 Virtual Machine Processor Support 18 Virtual Machine Chipset and BIOS Support 19 Virtual Machine Memory Allocation 19 Virtual Machine Graphics and Keyboard Support 19 Virtual Machine IDE Drive Support 19 Virtual Machine SCSI Device Support 20 Virtual Machine Floppy Drive Support 20 Virtual Machine Serial and Parallel Port Support 20 Virtual Machine USB Port Support 20 Virtual Machine Mouse and Drawing Tablet Support 21 Virtual Machine Ethernet Card Support 21 Virtual Machine Networking Support 21 Virtual Machine Sound Support 21 2 Installing and Using Workstation Pro 23 Obtaining the Workstation Pro Software and License Key 23 Trial Version Expiration Date Warnings 24 Installing Workstation Pro with Other VMware Products 24 Reinstalling Workstation Pro When Upgrading a Windows Host Operating System 24 Installing the Integrated Virtual Debuggers for Eclipse 25 Installing Workstation Pro 25 Install Workstation Pro on a Windows Host 26 Run an Unattended Workstation Pro Installation on a Windows Host 26 Install Workstation Pro on a Linux Host 28 Upgrading Workstation Pro 31 VMware, Inc.
    [Show full text]
  • Virtualization Technologies Overview Course: CS 490 by Mendel
    Virtualization technologies overview Course: CS 490 by Mendel Rosenblum Name Can boot USB GUI Live 3D Snaps Live an OS on mem acceleration hot of migration another ory runnin disk alloc g partition ation system as guest Bochs partially partially Yes No Container s Cooperati Yes[1] Yes No No ve Linux (supporte d through X11 over networkin g) Denali DOSBox Partial (the Yes No No host OS can provide DOSBox services with USB devices) DOSEMU No No No FreeVPS GXemul No No Hercules Hyper-V iCore Yes Yes No Yes No Virtual Accounts Imperas Yes Yes Yes Yes OVP (Eclipse) Tools Integrity Yes No Yes Yes No Yes (HP-UX Virtual (Integrity guests only, Machines Virtual Linux and Machine Windows 2K3 Manager in near future) (add-on) Jail No Yes partially Yes No No No KVM Yes [3] Yes Yes [4] Yes Supported Yes [5] with VMGL [6] Linux- VServer LynxSec ure Mac-on- Yes Yes No No Linux Mac-on- No No Mac OpenVZ Yes Yes Yes Yes No Yes (using Xvnc and/or XDMCP) Oracle Yes Yes Yes Yes Yes VM (manage d by Oracle VM Manager) OVPsim Yes Yes Yes Yes (Eclipse) Padded Yes Yes Yes Cell for x86 (Green Hills Software) Padded Yes Yes Yes No Cell for PowerPC (Green Hills Software) Parallels Yes, if Boot Yes Yes Yes DirectX 9 Desktop Camp is and for Mac installed OpenGL 2.0 Parallels No Yes Yes No partially Workstati on PearPC POWER Yes Yes No Yes No Yes (on Hypervis POWER 6- or (PHYP) based systems, requires PowerVM Enterprise Licensing) QEMU Yes Yes Yes [4] Some code Yes done [7]; Also supported with VMGL [6] QEMU w/ Yes Yes Yes Some code Yes kqemu done [7]; Also module supported
    [Show full text]
  • Vmware Et Sécurité
    HERVÉ SCHAUER CONSULTANTS Cabinet de Consultants en Sécurité Informatique depuis 1989 Spécialisé sur Unix, Windows, TCP/IP et Internet OSSIROSSIR GroupeGroupe SURSUR 88 juilletjuillet 20082008 VMwareVMware etet sécuritésécurité JulienJulien RaeisRaeis <[email protected]> NicolasNicolas CollignonCollignon <[email protected]> AgendaAgenda Rappels sur la virtualisation Mesures de sécurité intégrées à VMware Virtualisation et DMZ Revue des vulnérabilités Retour d'expérience HSC 2/64 Copyright Hervé Schauer Consultants 2008 - Reproduction Interdite Rappels sur la virtualisation 3/64 Copyright Hervé Schauer Consultants 2008 - Reproduction Interdite DéfinitionsDéfinitions « Virtuel : Se dit des éléments (terminaux, mémoire...) d'un système informatique considérés comme ayant des propriétés différentes de leurs caractéristiques physiques » - Grand Dictionnaire Encyclopédique Larousse « Virtualisation : abstraction des ressources d'un système informatique. » 4/64 Copyright Hervé Schauer Consultants 2008 - Reproduction Interdite HistoriqueHistorique Concept introduit dans les années 60 But : partitionner les ressources des coûteux mainframes de l'époque IBM M44/44X, naissance du terme « pseudo-machine » Première implémentation de machines virtuelles IBM CP-40 Système tournant sur S/360-40 Perte d'intérêt dans les années 80 Déport des applications sur des clients et serveurs x86 Architecture « bon marché » Mais coûts d'infrastructure physique élevés, manque de protection en cas de panne, maintenance des postes de travail coûteuse, etc.
    [Show full text]
  • Comparison of Platform Virtual Machines - Wikipedia
    Comparison of platform virtual machines - Wikipedia... http://en.wikipedia.org/wiki/Comparison_of_platform... Comparison of platform virtual machines From Wikipedia, the free encyclopedia The table below compares basic information about platform virtual machine (VM) packages. Contents 1 General Information 2 More details 3 Features 4 Other emulators 5 See also 6 References 7 External links General Information Name Creator Host CPU Guest CPU Bochs Kevin Lawton any x86, AMD64 CHARON-AXP Stromasys x86 (64 bit) DEC Alphaserver CHARON-VAX Stromasys x86, IA-64 VAX x86, x86-64, SPARC (portable: Contai ners (al so 'Zones') Sun Microsystems (Same as host) not tied to hardware) Dan Aloni helped by other Cooperati ve Li nux x86[1] (Same as parent) developers (1) Denal i University of Washington x86 x86 Peter Veenstra and Sjoerd with DOSBox any x86 community help DOSEMU Community Project x86, AMD64 x86 1 of 15 10/26/2009 12:50 PM Comparison of platform virtual machines - Wikipedia... http://en.wikipedia.org/wiki/Comparison_of_platform... FreeVPS PSoft (http://www.FreeVPS.com) x86, AMD64 compatible ARM, MIPS, M88K GXemul Anders Gavare any PowerPC, SuperH Written by Roger Bowler, Hercul es currently maintained by Jay any z/Architecture Maynard x64 + hardware-assisted Hyper-V Microsoft virtualization (Intel VT or x64,x86 AMD-V) OR1K, MIPS32, ARC600/ARC700, A (can use all OVP OVP Imperas [1] [2] Imperas OVP Tool s x86 (http://www.imperas.com) (http://www.ovpworld compliant models, u can write own to pu OVP APIs) i Core Vi rtual Accounts iCore Software
    [Show full text]
  • Getting Started Guide Vmware Player 3.1
    Getting Started Guide VMware Player 3.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document, see http://www.vmware.com/support/pubs. EN-000360-00 Getting Started Guide You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product updates. If you have comments about this documentation, submit your feedback to: [email protected] Copyright © 1998–2010 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. VMware products are covered by one or more patents listed at http://www.vmware.com/go/patents. VMware is a registered trademark or trademark of VMware, Inc. in the United States and/or other jurisdictions. All other marks and names mentioned herein may be trademarks of their respective companies. VMware, Inc. 3401 Hillview Ave. Palo Alto, CA 94304 www.vmware.com 2 VMware, Inc. Contents About This Book 5 1 What Is VMware Player? 7 What You Can Do with VMware Player 8 Features in VMware Player 8 2 Host System Requirements for VMware Player 11 Compatible Virtual Machines and System Images 12 Using Virtual Symmetric Multiprocessing 12 3 Supported Host and Guest Operating Systems for VMware Player 13 Processor Support for 64-Bit Guest Operating Systems 13 4 Installing and Running VMware Player 15 Install VMware Player on a Windows Host 15 Install VMware Player on a Linux Host 16 Start VMware Player 18 Close VMware Player 18 5 Uninstalling VMware Player 19 Uninstall VMware Player on a Windows Host 19 Uninstall VMware Player on a Windows Vista or Windows 7 Host 19 Uninstall VMware Player on a Linux Host 20 Index 21 VMware, Inc.
    [Show full text]
  • Deploying the Vmware Infrastructure John Arrasjid, Karthik Balachandran, Daniel Conde, Gary Lamb, and Steve Kaplan
    Short Topics in 18 18 System Administration Jane-Ellen Long, Series Editor Arrasjid, Balachandran, Conde, Lamb, and Kaplan and Lamb, Conde, Arrasjid, Balachandran, Deploying the VMware Infrastructure John Arrasjid, Karthik Balachandran, Daniel Conde, Gary Lamb, and Steve Kaplan Deploying the VMware Infrastructure VMware the Deploying cover.indd 1 8/8/08 9:54:21 AM Booklets in the Series #18: Deploying the VMware Infrastructure, by John Arrasjid, Karthik Balachandran, Daniel Conde, Gary Lamb, and Steve Kaplan #17: LCFG: A Practical Tool for System Configuration, by Paul Anderson #16: A System Engineer’s Guide to Host Configuration and Maintenance Using Cfengine, by Mark Burgess and Æleen Frisch #15: Internet Postmaster: Duties and Responsibilities, by Nick Christenson and Brad Knowles #14: System Configuration, by Paul Anderson #13: The Sysadmin’s Guide to Oracle, by Ben Rockwood #12: Building a Logging Infrastructure, by Abe Singer and Tina Bird #11: Documentation Writing for System Administrators, by Mark C. Langston #10: Budgeting for SysAdmins, by Adam Moskowitz #9: Backups and Recovery, by W. Curtis Preston and Hal Skelly #8: Job Descriptions for System Administrators, Revised and Expanded Edition, edited by Tina Darmohray #7: System and Network Administration for Higher Reliability, by John Sellens #6: A System Administrator’s Guide to Auditing, by Geoff Halprin #5: Hiring System Administrators, by Gretchen Phillips #4: Educating and Training System Administrators: A Survey, by David Kuncicky and Bruce Alan Wynn #3: System Security: A Management Perspective, by David Oppenheimer, David Wagner, and Michele D. Crabb, and edited by Dan Geer #2: A Guide to Developing Computing Policy Documents, edited by Barbara L.
    [Show full text]