User Mode Linux, VMWare and Wine
|
|
|
- Imogene Gaines
- 9 years ago
- Views:
Transcription
1 User Mode Linux, VMWare and Wine Virtual Machines Under Linux Brad Marshall Plugged In Software SAGE-AU p. 1/43
2 Contents What is UML What use is UML What hardware can UML support Installing UML Networking Copy on Write Host file access Serial Lines and Consoles Management Console SKAS and TT Mode Running X Compiling a UML kernel SAGE-AU p. 2/43
3 What is UML? Port of linux kernel to linux system calls, rather than hardware Gives a virtual OS - no machine emulation layer Disk storage is done via files on host system Can control what hardware the virtual machine can access Won t damage real computers hardware or software Runs own scheduler and VM UML kernel and processes run as processes on host kernel Can run as any user SAGE-AU p. 3/43
4 UML Architecture Process 2... Process 1 UML Linux Kernel Hardware SAGE-AU p. 4/43
5 What use is UML? Safe way of running Linux distributions Kernel development and debugging Process debugging Learning Secure sandbox / jail Honeypots Test environment Disaster recovery practice ISP s virtual hosting... whatever! SAGE-AU p. 5/43
6 What hardware can UML support? Block devices Consoles and serial lines Network devices SCSI devices USB devices Sound cards PCI hardware (in progress) SAGE-AU p. 6/43
7 Installing UML Host machine needs or (or later) Patch available for older kernels Minimum needed: UML kernel Root filesystem to boot Optional host kernel patch for skas (Separate Kernel Address Space) SAGE-AU p. 7/43
8 UML Utilities uml_moo - merge COW file with its backing file uml_mconsole - attach to UML management console uml_switch - switch daemon uml_net - setuid helper for network setup tunctl - create and control persistent TUN/TAP interfaces SAGE-AU p. 8/43
9 Networking Transports can provide network to: Local host Other machines on local net Rest of the internet Done using one of the available transports: Exchange packets with host ethertap TUN/TAP slip slirp pcap Virtual network Multicast switch daemon Uses uml_net setuid helper for configuration SAGE-AU p. 9/43
10 Choosing a transport ethertap if you want access to the host networking and it is running 2.2 TUN/TAP if you want access to the host networking and it is running 2.4. Can use a preconfigured device, which doesn t require uml_net Multicast if you want a purely virtual network and you don t want to set up anything but the UML a switch daemon if you want a purely virtual network and you don t mind running the daemon in order to get somewhat better performance SAGE-AU p. 10/43
11 Choosing a transport cont slip there is no particular reason to run the slip backend unless ethertap and TUN/TAP are just not available for some reason slirp if you don t have root access on the host to setup networking, or if you don t want to allocate an IP to your UML pcap not much use for actual network connectivity, but great for monitoring traffic on the host SAGE-AU p. 11/43
12 UML Networking Kernel Boot Args General format eth<n>=<transport>,<transport args> Multicast eth<n>=mcast TAP/TUN eth<n>=tuntap,<ip address> Ethertap eth<n>=ethertap,<device>,<ethernet address>,<tap IP address> SAGE-AU p. 12/43
13 UML Networking Kernel Boot Args Switch daemon eth<n>=daemon,<ethernet address>,<socket type>,<control socket>,<data socket> Slip eth<n>=slip,<slip IP> Slirp eth<n>=slirp,<ethernet address>,<slirp path> Pcap eth<n>=pcap,<host interface>,<filter expression>,<option1>,<option2> SAGE-AU p. 13/43
14 Sharing filesystems between UMLs Uses copy-on-write layering in the ubd block device Layers a private read-write device over a shared read-only device Useful when using lots of virtual machines - saves lots of disk space Writes are done to private device, reads from either Do not boot directly from read-only backing files - will invalidate any COW files that use it SAGE-AU p. 14/43
15 Creating COW files To create COW file, boot with ubd0=root_fs_cow,root_fs_debian_22 After creation, only need: ubd0=root_fs_cow Name of backing file is stored in COW file header To merge a COW file and backing file: uml_moo <COW file> <new backing file> SAGE-AU p. 15/43
16 Host File Access hostfs allows mounting of files from host filesystem Check hostfs is available on virtual machine by looking at /proc/filesystem Mount it by: mount none /mnt/host -t hostfs If you want to mount a subdirectory: mount none /mnt/host -t hostfs -o /path SAGE-AU p. 16/43
17 Serial Lines and Consoles Can attach serial lines and consoles to a variety of host I/O channels ptys ttys file descriptors ports Done via a command line option, of format <device>=<channel> Consoles use device con, serial lines use ssl Use device number to talk about specific device, without specifies all SAGE-AU p. 17/43
18 Serial Lines and Consoles Channels Pseudo terminals - <device>=pts Terminals - <device>=tty:<tty device> Xterms - <device>=xterm Port - <device>=port:<port no> File descriptors - <device>=<fd> Nothing - <device>=null None - <device>=none Specify different input and output channels by putting a comma between them SAGE-AU p. 18/43
19 Management Console Low level interface to kernel, like SysRq Allows you to: get the kernel version add and remove devices halt or reboot the machine send SysRq commands pause and resume the UML make online backups without shutting down the UML receive notifications of events of interest from within UML Needs uml_console (part of uml utilities) and CONFIG_MCONSOLE SAGE-AU p. 19/43
20 Management Console Usage When booting UML, there will be a line like: mconsole (version 2) initialized on /home/brad/.uml/4uuehn/mconsole Can specify unique machine id passing umid=debian Attach by calling uml_console with mconsole socket or umid $ uml_console debian SAGE-AU p. 20/43
21 Mconsole Commands version Prints UML version halt and reboot Shuts down machine instantly config Adds a new device or queries config of existing one remove Removes device from system SAGE-AU p. 21/43
22 Mconsole Commands cont sysrq Takes one letter argument, calls kernel s SysRq driver help Gives help cad Calls Control-Alt-Delete on UML instance stop and go Pauses until go is run SAGE-AU p. 22/43
23 Tracing Thread Mode Each UML process is also a process on host Tracing thread that does system call tracing on UML processes Tracing thread nullified system calls, caused process to enter UML kernel (mapped to upper part of address space) Problems: UML kernel is present in address space of its processes, and by default is writeable UML s jail fixes this by making it read-only, but at a performance cost Kernel can still be read and found out that it is a UML UML uses signals to send control to UML kernel during system call or interrupt SAGE-AU p. 23/43
24 Seperate Kernel Address Space Mode UML kernel runs in diff host address space from processes Address space is identical to what it would be on the host Requires kernel patch on host On virtual machine, make sure you have CONFIG_MODE_SKAS Will fall back to TT mode if host doesn t have support On bootup, will see: Checking for the skas3 patch in the host...found Checking for /proc/mm...found SAGE-AU p. 24/43
25 Running X Run X clients on host X server Setup network as normal Set the display to the host s X server then run clients as normal $ export DISPLAY=host-ip:0 Run a local virtual X server Setup networking as normal Run Xnest Set the display to Xnest, then run clients as normal $ export DISPLAY=:0 SAGE-AU p. 25/43
26 Compiling a UML kernel $ tar xvfj linux tar.bz2 $ cd /path/to/kernel $ zcat uml-patch.gz patch -p1 $ make config ARCH=um $ make linux ARCH=um $ make modules ARCH=um $ sudo mount /path/to/root_fs \ /path/to/mnt -o loop $ make modules_install \ INSTALL_MOD_PATH=/path/to/mnt/ \ ARCH=um SAGE-AU p. 26/43
27 Building a UML filesystem mkrootfs - command line utility for building multiple filesystems UML Builder - Step by step UML filesystem builder gbootroot - GUI app for creating UML filesystems and boot disks rootstrap - Debian filesystem creation util SAGE-AU p. 27/43
28 UML Honeypot Allows the use of one host for the honeypot Traffic logged from that host via iptables Intruder can get root on UML without endangering host Kernel option, honeypot, to rearrange address space to allow stack smash exploits to work Kernel option, jail, protects kernel memory from processes Useful UML features for honeypots tty logging - logs all tty traffic out to host hppfs - HoneyPot ProcFS - allows /proc to be modified skas mode - process address space is identical to host SAGE-AU p. 28/43
29 UML Future SMP Emulate more processes than host has Clustering Run UML across multiple hosts (and multiple OSes) Security Honeypot Jailed services Sandbox hostfs extensions Access to local and remote filesystems (rsync, ssh) Mount databases as filesystem SAGE-AU p. 29/43
30 UML Future cont Ports to other OSes Windows Non-i386 linux Embed UML into applications Mount application as filesystem, modify it via fs See connections as processes Providing colocation Already happening - some ISPs providing services using UML SAGE-AU p. 30/43
31 UML Conclusion Implementing UML has shown up bugs in Linux kernel Running applications in UML makes debugging easier Good for securely hosting services Can give Linux the ability to move into areas it wasn t Ability to run virtual machines can give good test environments Still in early stages of development SAGE-AU p. 31/43
32 VMWare Provides a virtual machine to install an OS on 3 main products Workstation Run multiple OSes on the desktop GSX Server For providing virtual servers on enterprise hardware Provides support for clustering of virtual machines ESX Server Has own operating system Guarenteed service levels for virtual machines Provides remote management functionality SAGE-AU p. 32/43
33 VMWare Booting SAGE-AU p. 33/43
34 VMWare BIOS SAGE-AU p. 34/43
35 VMWare Login SAGE-AU p. 35/43
36 VMWare Tools Useful utilities available in vmware tools Includes: SVGA driver Guest OS service Tools control panel SAGE-AU p. 36/43
37 VMWare Toolbox SAGE-AU p. 37/43
38 VMWare Toolbox SAGE-AU p. 38/43
39 VMWare Toolbox SAGE-AU p. 39/43
40 Wine Implementation of Windows win32 and win16 API on linux Supports Win32 (Win9x/NT and XP), Win3.x and DOS Doesn t require MS Windows to run Can use native system DLLs if available Graphics - DirectX and OpenGL Supports networking, sound, serial ports, etc SAGE-AU p. 40/43
41 Wine Versions ReWind Forked version of Wine from when it changed from X11 license to LGPL Transgaming WineX Designed for games Includes Direct3D and copy protection support Codeweavers Wine preview Nice setup program for easy install Codeweavers CrossOver plugin Used to run Win32 browser plugins in Linux, eg QuickTime Codeweavers Office Good support for MS Office SAGE-AU p. 41/43
42 URLs User Mode Linux VMWare Wine SAGE-AU p. 42/43
43 Questions? Questions? SAGE-AU p. 43/43
Advanced Server Virtualization: Vmware and Microsoft Platforms in the Virtual Data Center
Advanced Server Virtualization: Vmware and Microsoft Platforms in the Virtual Data Center Marshall, David ISBN-13: 9780849339318 Table of Contents BASIC CONCEPTS Introduction to Server Virtualization Overview
Table of Contents Introduction and System Requirements 9 Installing VMware Server 35
Table of Contents Introduction and System Requirements 9 VMware Server: Product Overview 10 Features in VMware Server 11 Support for 64-bit Guest Operating Systems 11 Two-Way Virtual SMP (Experimental
User-Mode Linux. Jeff Dike. Abstract. 2 Devices. 1 Introduction
User-Mode Linux Jeff Dike Abstract 2 Devices User-mode Linux is the port of the Linux kernel to userspace. It runs a Linux virtual machine in a set of processes on a Linux host. A UML virtual machine is
2.2 File Systems. 2.1 (VDE) Virtual Distributed Ethernet
Teaching Operating Systems Administration with User Mode Linux Renzo Davoli Department of Computer Science University of Bologna - Italy [email protected] ABSTRACT User Mode Linux is a virtual machine
Example of Standard API
16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface
How to install software on VMware ESXi 4.0/4.1
How to install software on VMware ESXi 4.0/4.1 This section describes the installation and configuration of the Software on VMware ESXi 4.0/4.1 Server. Notice: the version of VMware ESXi 4.0/4.1 should
W H I T E P A P E R. Best Practices for Building Virtual Appliances
W H I T E P A P E R Best Practices for Building Virtual Appliances Table of Contents Objectives.................................................................................. 3 Design Principles...........................................................................
Enterprise-Class Virtualization with Open Source Technologies
Enterprise-Class Virtualization with Open Source Technologies Alex Vasilevsky CTO & Founder Virtual Iron Software June 14, 2006 Virtualization Overview Traditional x86 Architecture Each server runs single
EXPLORING LINUX KERNEL: THE EASY WAY!
EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment
The QEMU/KVM Hypervisor
The /KVM Hypervisor Understanding what's powering your virtual machine Dr. David Alan Gilbert [email protected] 2015-10-14 Topics Hypervisors and where /KVM sits Components of a virtual machine KVM Devices:
Intelligent Power Protector User manual extension for Microsoft Virtual architectures: Hyper-V 6.0 Manager Hyper-V Server (R1&R2)
Intelligent Power Protector User manual extension for Microsoft Virtual architectures: Hyper-V 6.0 Manager Hyper-V Server (R1&R2) Hyper-V Manager Hyper-V Server R1, R2 Intelligent Power Protector Main
Cisco Nexus 1000V Virtual Ethernet Module Software Installation Guide, Release 4.0(4)SV1(1)
Cisco Nexus 1000V Virtual Ethernet Module Software Installation Guide, Release 4.0(4)SV1(1) September 17, 2010 Part Number: This document describes how to install software for the Cisco Nexus 1000V Virtual
A Comparison of VMware and {Virtual Server}
A Comparison of VMware and {Virtual Server} Kurt Lamoreaux Consultant, MCSE, VCP Computer Networking and Consulting Services A Funny Thing Happened on the Way to HP World 2004 Call for speakers at the
Retrospect 7.7 User s Guide Addendum
Retrospect 7.7 User s Guide Addendum 2011 Retrospect, Inc. All rights reserved. Retrospect 7.7 Users Guide Addendum, first edition. Use of this product (the Software ) is subject to acceptance of the license
Running virtualized native drivers in User Mode Linux p.1/30
Running virtualized native drivers in User Mode Linux V. Guffens, G. Bastin UCL/CESAME (Belgium) USENIX 05 / Freenix track Anaheim, USA, June 10-15, 2005 Running virtualized native drivers in User Mode
LANDesk White Paper. LANDesk Management Suite for Lenovo Secure Managed Client
LANDesk White Paper LANDesk Management Suite for Lenovo Secure Managed Client Introduction The Lenovo Secure Managed Client (SMC) leverages the speed of modern networks and the reliability of RAID-enabled
Citrix XenServer 5.6 OpenSource Xen 2.6 on RHEL 5 OpenSource Xen 3.2 on Debian 5.0(Lenny)
Installing and configuring Intelligent Power Protector On Xen Virtualized Architecture Citrix XenServer 5.6 OpenSource Xen 2.6 on RHEL 5 OpenSource Xen 3.2 on Debian 5.0(Lenny) 1 Introduction... 3 1. Citrix
13.1 Backup virtual machines running on VMware ESXi / ESX Server
13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines
Professional Xen Visualization
Professional Xen Visualization William von Hagen WILEY Wiley Publishing, Inc. Acknowledgments Introduction ix xix Chapter 1: Overview of Virtualization : 1 What Is Virtualization? 2 Application Virtualization
PCI Express SATA / esata 6Gb/s RAID Card User Manual
PCI Express SATA / esata 6Gb/s RAID Card User Manual Specifications : - 2 x SATA 6Gb/s Port (SATA version) - 2 x esata 6Gb/s Port (esata version) - Max. 6Gb/s transfer rate per port - Supports both SATA
Option nv, Gaston Geenslaan 14, B-3001 Leuven Tel +32 16 317 411 Fax +32 16 207 164 http://www.option.com Page 1 of 14
Page 1 of 14 ! " #!"#$ % &&' Page 2 of 14 1 INTRODUCTION One of the highly desirable features of the GlobeSurfer III device is the ability to network together Printers and External Hard Disk drives (aka
Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper
WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS
Backup & Disaster Recovery Appliance User Guide
Built on the Intel Hybrid Cloud Platform Backup & Disaster Recovery Appliance User Guide Order Number: G68664-001 Rev 1.0 June 22, 2012 Contents Registering the BDR Appliance... 4 Step 1: Register the
TGL VMware Presentation. Guangzhou Macau Hong Kong Shanghai Beijing
TGL VMware Presentation Guangzhou Macau Hong Kong Shanghai Beijing The Path To IT As A Service Existing Apps Future Apps Private Cloud Lots of Hardware and Plumbing Today IT TODAY Internal Cloud Federation
CDH installation & Application Test Report
CDH installation & Application Test Report He Shouchun (SCUID: 00001008350, Email: [email protected]) Chapter 1. Prepare the virtual machine... 2 1.1 Download virtual machine software... 2 1.2 Plan the guest
LSN 10 Linux Overview
LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced
PARALLELS SERVER 4 BARE METAL README
PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels
Dell UPS Local Node Manager USER'S GUIDE EXTENSION FOR MICROSOFT VIRTUAL ARCHITECTURES Dellups.com
CHAPTER: Introduction Microsoft virtual architecture: Hyper-V 6.0 Manager Hyper-V Server (R1 & R2) Hyper-V Manager Hyper-V Server R1, Dell UPS Local Node Manager R2 Main Operating System: 2008Enterprise
Acronis Backup & Recovery 10 Server for Windows. Installation Guide
Acronis Backup & Recovery 10 Server for Windows Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent
MODULE 3 VIRTUALIZED DATA CENTER COMPUTE
MODULE 3 VIRTUALIZED DATA CENTER COMPUTE Module 3: Virtualized Data Center Compute Upon completion of this module, you should be able to: Describe compute virtualization Discuss the compute virtualization
PARALLELS SERVER BARE METAL 5.0 README
PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal
CrossOver Compared to Competing Emulation Solutions
CrossOver Compared to Competing Emulation Solutions CrossOver Compared to Competing Emulation Solutions Every Windows compatibility solution has pros and cons. Overview: Whether you re running a Linux
Version 1.0. File System. Network Settings
Factory Default Settings LAN 1 IP Address: 192.168.2.127 Login: root or guest ( telnet guest only) Password: root or guest ( telnet guest only) Serial Console Port: Baud rate: 115200 Data format: 8 Bits,
VMware Server 2.0 Essentials. Virtualization Deployment and Management
VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.
Lecture 5. User-Mode Linux. Jeff Dike. November 7, 2012. Operating Systems Practical. OSP Lecture 5, UML 1/33
Lecture 5 User-Mode Linux Jeff Dike Operating Systems Practical November 7, 2012 OSP Lecture 5, UML 1/33 Contents User-Mode Linux Keywords Resources Questions OSP Lecture 5, UML 2/33 Outline User-Mode
RecoveryVault Express Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Virtualization. Michael Tsai 2015/06/08
Virtualization Michael Tsai 2015/06/08 What is virtualization? Let s first look at a video from VMware http://bcove.me/x9zhalcl Problems? Low utilization Different needs DNS DHCP Web mail 5% 5% 15% 8%
Table of Contents. Online backup Manager User s Guide
Table of Contents Backup / Restore VMware Virtual Machines... Error! Bookmark not defined. Backup virtual machines running on VMware ESXi / ESX Server with VDDK / non VDDK... 2 Requirements and recommendations...
Virtual Private Systems for FreeBSD
Virtual Private Systems for FreeBSD Klaus P. Ohrhallinger 06. June 2010 Abstract Virtual Private Systems for FreeBSD (VPS) is a novel virtualization implementation which is based on the operating system
Online Backup Linux Client User Manual
Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might
Incremental Backup Script. Jason Healy, Director of Networks and Systems
Incremental Backup Script Jason Healy, Director of Networks and Systems Last Updated Mar 18, 2008 2 Contents 1 Incremental Backup Script 5 1.1 Introduction.............................. 5 1.2 Design Issues.............................
Chapter 2 System Structures
Chapter 2 System Structures Operating-System Structures Goals: Provide a way to understand an operating systems Services Interface System Components The type of system desired is the basis for choices
Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration
ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing
Chapter 14 Virtual Machines
Operating Systems: Internals and Design Principles Chapter 14 Virtual Machines Eighth Edition By William Stallings Virtual Machines (VM) Virtualization technology enables a single PC or server to simultaneously
ZEN LOAD BALANCER EE v3.02 DATASHEET The Load Balancing made easy
ZEN LOAD BALANCER EE v3.02 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to
Using Integrated Lights-Out in a VMware ESX environment
Using Integrated Lights-Out in a VMware ESX environment 2 nd Edition Technology Brief Abstract... 2 ilo architecture in a virtualized environment... 2 The benefits of ilo in a virtualized environment...
Online Backup Client User Manual
For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by
Building a Penetration Testing Virtual Computer Laboratory
Building a Penetration Testing Virtual Computer Laboratory User Guide 1 A. Table of Contents Collaborative Virtual Computer Laboratory A. Table of Contents... 2 B. Introduction... 3 C. Configure Host Network
FileCruiser Backup & Restoring Guide
FileCruiser Backup & Restoring Guide Version: 0.3 FileCruiser Model: VA2600/VR2600 with SR1 Date: JAN 27, 2015 1 Index Index... 2 Introduction... 3 Backup Requirements... 6 Backup Set up... 7 Backup the
LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011
LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall
Enabling NetFlow on Virtual Switches ESX Server 3.5
Technical Note Enabling NetFlow on Virtual Switches ESX Server 3.5 NetFlow is a general networking tool with multiple uses, including network monitoring and profiling, billing, intrusion detection and
Using the IPMI interface
Using the IPMI interface The T800, T1600 and T3200 server models are equipped with an IPMI interface with KVM / IP functionality. This enables you to access the server console if it becomes inaccessible
ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy
ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to
Deploying Windows Streaming Media Servers NLB Cluster and metasan
Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................
Virtual Systems with qemu
Virtual Systems with qemu Version 0.1-2011-02-08 Christian Külker Inhaltsverzeichnis 1 Image Creation 2 1.1 Preparations.................................. 2 1.2 Creating a Disk Image.............................
VMWARE Introduction ESX Server Architecture and the design of Virtual Machines
Introduction........................................................................................ 2 ESX Server Architecture and the design of Virtual Machines........................................
Module I-7410 Advanced Linux FS-11 Part1: Virtualization with KVM
Bern University of Applied Sciences Engineering and Information Technology Module I-7410 Advanced Linux FS-11 Part1: Virtualization with KVM By Franz Meyer Version 1.0 February 2011 Virtualization Architecture
The RT module VT6000 (VT6050 / VT6010) can be used to enhance the RT. performance of CANoe by distributing the real-time part of CANoe to a
Getting started with VT6000 and VT6104 The RT module VT6000 (VT6050 / VT6010) can be used to enhance the RT performance of CANoe by distributing the real-time part of CANoe to a dedicated RT execution
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
HOWTO: Set up a Vyatta device with ThreatSTOP in bridge mode
HOWTO: Set up a Vyatta device with ThreatSTOP in bridge mode Overview This document explains how to set up a minimal Vyatta device in a transparent bridge configuration and then how to apply ThreatSTOP
Configuring iscsi Multipath
CHAPTER 13 Revised: April 27, 2011, OL-20458-01 This chapter describes how to configure iscsi multipath for multiple routes between a server and its storage devices. This chapter includes the following
Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont.
Objectives To describe the services an operating system provides to users, processes, and other systems To discuss the various ways of structuring an operating system Chapter 2: Operating-System Structures
Guest Operating System. Installation Guide
Guest Operating System Installation Guide VMware, Inc. 3145 Porter Drive Palo Alto, CA 94304 www.vmware.com Please note that you will always find the most up-to-date technical documentation on our Web
Virtualization of Linux based computers: the Linux-VServer project
Virtualization of Linux based computers: the Linux-VServer project Benoît t des Ligneris, Ph. D. [email protected] Objectives: Objectives: 1) Present the available programs that can
HOWTO: Set up a Vyatta device with ThreatSTOP in router mode
HOWTO: Set up a Vyatta device with ThreatSTOP in router mode Overview This document explains how to set up a minimal Vyatta device in a routed configuration and then how to apply ThreatSTOP to it. It is
Acronis Backup & Recovery 10 Advanced Server Virtual Edition. Quick Start Guide
Acronis Backup & Recovery 10 Advanced Server Virtual Edition Quick Start Guide Table of contents 1 Main components...3 2 License server...3 3 Supported operating systems...3 3.1 Agents... 3 3.2 License
Acronis Backup & Recovery 10 Workstation. Installation Guide
Acronis Backup & Recovery 10 Workstation Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent for Windows...
VMware vsphere 5 Quick Start Guide
VMware vsphere 5 Quick Start Guide This document is created to provide some basic information about VMware, and allow you, the customer, to determine when and how to engage us for support or other needs
LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013
LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...
M.Sc. IT Semester III VIRTUALIZATION QUESTION BANK 2014 2015 Unit 1 1. What is virtualization? Explain the five stage virtualization process. 2.
M.Sc. IT Semester III VIRTUALIZATION QUESTION BANK 2014 2015 Unit 1 1. What is virtualization? Explain the five stage virtualization process. 2. What are the different types of virtualization? Explain
9 Headless Systems & Remote Management
9 Headless Systems & Remote Management Headless support is a key feature of XPe. Since the nature of the XP operating system is to have a graphical interface, designing an XPe headless device involves
USB 2.0 Flash Drive User Manual
USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6
PowerPanel Business Edition Installation Guide
PowerPanel Business Edition Installation Guide For Automatic Transfer Switch Rev. 5 2015/12/2 Table of Contents Introduction... 3 Hardware Installation... 3 Install PowerPanel Business Edition Software...
P2V Best Practices. Joe Christie Technical Trainer
Joe Christie Technical Trainer What is P2V? A process used to create a virtual machine that duplicates an existing physical computer. What is P2VA? A set of utilities from VMware for reliably creating
Computer Systems and Networks. ECPE 170 Jeff Shafer University of the Pacific. Linux Basics
ECPE 170 Jeff Shafer University of the Pacific Linux Basics 2 Pre- Lab Everyone installed Linux on their computer Everyone launched the command line ( terminal ) and ran a few commands What problems were
VIRTUOZZO TM FOR LINUX 2.6.1
. VIRTUOZZO TM FOR LINUX 2.6.1 WHAT S NEW DOCUMENT Copyright 2005 SWsoft TABLE OF CONTENTS TABLE OF CONTENTS... 2 INTRODUCTION: KEY THEMES... 3 Ease of Use and Manageablity... 3 Security... 3 Powerful...
1. Product Information
ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such
Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive
Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting
Chapter 16: Virtual Machines. Operating System Concepts 9 th Edition
Chapter 16: Virtual Machines Silberschatz, Galvin and Gagne 2013 Chapter 16: Virtual Machines Overview History Benefits and Features Building Blocks Types of Virtual Machines and Their Implementations
Online Backup Client User Manual Linux
Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based
System Structures. Services Interface Structure
System Structures Services Interface Structure Operating system services (1) Operating system services (2) Functions that are helpful to the user User interface Command line interpreter Batch interface
Management of VMware ESXi. on HP ProLiant Servers
Management of VMware ESXi on W H I T E P A P E R Table of Contents Introduction................................................................ 3 HP Systems Insight Manager.................................................
Acronis Backup & Recovery 10 Server for Windows. Installation Guide
Acronis Backup & Recovery 10 Server for Windows Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent
How to Use? SKALICLOUD DEMO
How to Use? SKALICLOUD DEMO Account Login Page SkaliCloud Control Panel Overview Step 1: Click Add and Select Server Button to create your Server, add your Drive, Private Vlan or Static IP You are now
Using VMware Player. VMware Player. What Is VMware Player?
VMWARE APPLICATION NOTE VMware Player Using VMware Player This document contains the following sections: Work and Play in a Virtual World on page 1 Options and Features in VMware Player on page 4 Installing
Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac
Making it easy to deploy, integrate and manage Macs, iphones and ipads in a Windows environment. Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac 2011 ENTERPRISE DEVICE
Novell Remote Manager Administration Guide
www.novell.com/documentation Novell Remote Manager Administration Guide Open Enterprise Server 11 SP2 January 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the
SUSE LINUX Enterprise Server for SGI Altix Systems
SUSE LINUX Enterprise Server for SGI Altix Systems 007 4651 002 COPYRIGHT 2004, Silicon Graphics, Inc. All rights reserved; provided portions may be copyright in third parties, as indicated elsewhere herein.
SonicWALL SRA Virtual Appliance Getting Started Guide
COMPREHENSIVE INTERNET SECURITY SonicWALL Secure Remote Access Appliances SonicWALL SRA Virtual Appliance Getting Started Guide SonicWALL SRA Virtual Appliance5.0 Getting Started Guide This Getting Started
VMware/Hyper-V Backup Plug-in User Guide
VMware/Hyper-V Backup Plug-in User Guide COPYRIGHT No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying,
Upgrading Cisco UCS Central
This chapter includes the following sections: to Release 1.3, page 1 to Release 1.3 You can upgrade Cisco UCS Central release 1.1(2a) or 1.2 to 1.3 in either standalone or cluster mode. If you are already
Online Backup Client User Manual
Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have
Acronis Backup & Recovery 11
Acronis Backup & Recovery 11 Quick Start Guide Applies to the following editions: Advanced Server Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server for Windows Workstation
Easy Setup Guide 1&1 CLOUD SERVER. Creating Backups. for Linux
Easy Setup Guide 1&1 CLOUD SERVER Creating Backups for Linux Legal notice 1&1 Internet Inc. 701 Lee Road, Suite 300 Chesterbrook, PA 19087 USA www.1and1.com [email protected] August 2015 Copyright 2015 1&1
SSL VPN. Virtual Appliance Installation Guide. Virtual Private Networks
SSL VPN Virtual Appliance Installation Guide Virtual Private Networks C ONTENTS Introduction... 2 Installing the Virtual Appliance... 2 Configuring Appliance Operating System Settings... 3 Setting up the
KVM: A Hypervisor for All Seasons. Avi Kivity [email protected]
KVM: A Hypervisor for All Seasons Avi Kivity [email protected] November 2007 Virtualization Simulation of computer system in software Components Processor: register state, instructions, exceptions Memory
www.see-grid-sci.eu Regional SEE-GRID-SCI Training for Site Administrators Institute of Physics Belgrade March 5-6, 2009
SEE-GRID-SCI Virtualization and Grid Computing with XEN www.see-grid-sci.eu Regional SEE-GRID-SCI Training for Site Administrators Institute of Physics Belgrade March 5-6, 2009 Milan Potocnik University
Acronis Backup & Recovery 10 Server for Linux. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management
