Dladm: Virtual Networks Wit

Total Page:16

File Type:pdf, Size:1020Kb

Dladm: Virtual Networks Wit dladm: Virtual networks with Sun xVM - My South http://southbrain.com/south/2009/12/dladm-virtual-networks-sun-xvm.html My South dladm: Virtual networks with Sun xVM Search By Pascal Gienger on December 10, 2009 6:57 PM | Permalink | Comments (0) | TrackBacks (0) Solaris has a nifty utility named "dladm" which creates "dynamic" links. Mon midi - blog français It can be used to: work with virtual network interfaces work with wireless interfaces (WiFi) work with virtual switches (named etherstubs and bridges) About me Pages For our Xen-based xVM environment, a virtual switch to connect DomU's to an internal Pascal Gienger, Konstanz, network is a common configuration. This Germany virtual switch may even have an interface to articles the Dom0 system - the path to the outside LSI ProFibre 4000R: anno world. 2002. SATA-RAID and ZFS: Infortrend/ADVUNI OXYGENRAID: top or flop? Sun StorageTek StorEdge 6140 FC/SATA array software Mandelbrot set as Java Applet vhci_stat tutorials Creating and manipulating zpools (zfs) Fiberchannel Solaris Part 1: Introduction Fiberchannel Solaris Part 2: Configuring SAN and TCP/IP Fiberchannel Solaris Part 3: SAN Diagnostics Installing Redhat Enterprise Server 5 in VMWare with PVSCSI (paravirtual SCSI) Installing Redhat Enterprise Server 5 under Sun xVM/Xen Installing SLES 11 under Xen (Sun xVM) Using zfs (basics) uncommented OpenSolaris snv_121 Xen Look at the configuration example on the picture above (click to enlarge it). boot (Sun xVM 3.4.2) This configuration would appear like this on our Solaris host: Redhat ES 5.4 Xen Boot (Sun xVM 3.4.2) pascal@teroknor:~# dladm show-link LINK CLASS MTU STATE BRIDGE OVER SLES 11 Xen boot (Sun xVM nge0 phys 1500 up -- -- 3.4.2) nge1 phys 1500 up -- -- virtualization e1000g0 phys 1500 up mybridge -- 1: Why virtualization? e1000g1 phys 1500 up mybridge -- xenswitch1 etherstub 1500 unknown -- -- 2: Userspace-based bridge0 etherstub 1500 up mybridge -- virtualization (the easy loveit0 vnic 1500 up -- xenswitch1 way) xvm17 vnic 1500 up -- xenswitch1 3: Xen: Hypervisor-based xvm19 vnic 1500 up -- bridge0 virtualization xvm14 vnic 1500 up -- nge0 4: ESX: Hypervisor-based First some Solaris definitions: virtualization 5: Solaris Zones: A sharing A physical interface (phys) is an interface controlled by a hardware driver. These interfaces are physically approach present. Examples include an ethernet interface or a fiber channel ip interface. 6: Hybrid methods: KVM A virtual interface (vnic) is a network interface only known by the kernel which can be used in software like a real interface. You may use them in Dom0 or in any DomU you want (the latter by assignment via xm or virsh). Categories 1 von 3 13.12.2009 12:56 dladm: Virtual networks with Sun xVM - My South http://southbrain.com/south/2009/12/dladm-virtual-networks-sun-xvm.html An etherstub is like an unmanaged dumb ethernet switch, traffic originating from connecting links to the Asterisk VoIP (6) etherstub is directed to the right direction (layer 2) to other interfaces "connected" to this etherstub. A virtual BSOD (1) interface MUST be connected to an etherstub OR a physical hardware interface otherwise it will not work - Cisco (2) you may even not define it, the dladm command will abort with an error. Cyrus IMAP (5) A bridge is a 802.1d instance making a real bridge instance out of an etherstub. Physical interfaces can be Horde framework (1) "connected" directly to a bridge while virtual ones must be connected to an etherstub which itself is member of the bridge. Java (1) A bridge talks the spanning tree protocol - Just like a hardware switch would do. Linux (1) Misc (17) The first example on the graphic is easy: A virtual interface is directly connected to a physical one. The kernel acts Perl (6) like an unmanaged switch between these two interfaces. You may "connect" as many virtual interfaces as you want Postfix (7) to a real interface. Solaris (54) Travel (11) Our vnic "xvm14" was easy to accomplish: Unforgotten (7) # dladm create-vnic -l nge0 xvm14 Virtualization (23) Sun xVM (18) And voilà, our xvm14 network interface is ready. In fact, this is exactly what the xen daemon does when starting a VirtualBox (3) virtual machine - it hooks dynamically virtual interfaces to the appopriate "bridges" ( be careful: In Xen vmware (5) terminology a "bridge" is not a "bridge" in the Solaris terms: For Xen it just means a virtual switch - so remember: a Xen bridge is a Solaris etherstub ). Monthly Archives The second example has been configured like this: December 2009 (4) November 2009 (7) # dladm create-etherstub xenswitch1 # dladm set-linkprop -p mtu=1500 xenswitch1 October 2009 (7) # dladm create-vnic -l xenswitch1 loveit0 September 2009 (13) August 2009 (9) The vnic xvm_17 was created automatically by the xen daemon. June 2009 (5) The "dladm set-linkprop -p mtu=1500" is IMPORTANT because etherstubs are created with a default MTU of 9000 bytes - OpenSolaris just crashes badly when you try to use a vnic with this MTU as a Xen interface... May 2009 (1) April 2009 (4) In the Dom0 Solaris the new interface "loveit0" can be used Just like any other one: March 2009 (3) February 2009 (2) # ifconfig loveit0 plumb January 2009 (1) # ifconfig loveit0 192.168.200.1 netmask 0xffffff00 broadcast 255.255.255.0 up # ifconfig loveit0 December 2008 (1) loveit0: flags=1100843<UP,BROADCAST,RUNNING,MULTICAST,ROUTER,IPv4> mtu 1500 index 4 November 2008 (3) inet 192.168.200.1 netmask ffffff00 broadcast 192.168.200.255 ether 2:8:20:8a:35:b5 October 2008 (6) September 2008 (2) This interface can be used to route/forward, including NAT (refer to routeadm and ipnat/ipf). August 2008 (6) July 2008 (6) The third example includes a (802.1d stp) bridge: June 2008 (4) # dladm create-bridge mybridge May 2008 (8) # dladm create-etherstub bridge0 April 2008 (7) # dladm set-linkprop -p mtu=1500 bridge0 March 2008 (6) # dladm add-bridge -l bridge0 mybridge # dladm add-bridge -l e1000g0 mybridge February 2008 (11) # dladm add-bridge -l e1000g1 mybridge Recent Entries If you want to install a DomU using "virt-install" Just use the "--bridge" (Xen-bridge -> etherstub) commandline option http://127.0.0.1:8795/?id= to select the right etherstub to connect to. dladm: Virtual networks with Sun xVM Example: Sun MPxIO: multipathed network connections # virt-install --hvm --cdrom=/rpool/ISO/windows2008r2.iso --ram 2048 --disk path=.... 141445-09/141444-09 Solaris --bridge xenswitch1 --vnc --os-type windows --os-variant windows --name "testdomu" 10: zfs version 15, ::memstat Sun xVM 3.4.2 available, This installation will connect a Xen interface to the "xenswitch1" etherstub. If this Windows DomU has the IP address dom0_min_mem 192.168.200.2/24 it will be able to talk to the Dom0 by using 192.168.200.1 as a target. To connect this Windows host Windows 2008 R2 on Sun xVM to the outer network you will have to turn IP forwarding on the OpenSolaris Dom0 and - depending on your network 3.4.2 / Xen configuration - you'll have to turn on NAT (via /etc/ipf/ipnat.conf and svcadm enable ipfilter). Update: Xen Drivers for Windows 2003 and XP 32bit If you omit the "--bridge" parameter virt-install will just define a vnic connected directly to the first configured hardware interface in your machine - if that's your network link to your LAN the virtual machine will be part of New ZFS feature: deduplication - new in snv_128 that LAN. snv_128 / ZFS version 22 dedup not mounting/kernel hang Categories: Solaris , Sun xVM , Virtualization Qualatex Balloons and Gallo Tags: dladm , OpenSolaris , Solaris , xen , xVM Wine... 0 TrackBacks December 2009 Listed below are links to blogs that reference this entry: dladm: Virtual networks with Sun xVM . SunMonTueWedThuFriSat 1 2 3 4 5 TrackBack URL for this entry: http://southbrain.com/mt/mt-tb.cgi/140 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 Leave a comment 27 28 29 30 31 Sign in to comment on this entry, or comment anonymously. About This blog is owned by: 2 von 3 13.12.2009 12:56 dladm: Virtual networks with Sun xVM - My South http://southbrain.com/south/2009/12/dladm-virtual-networks-sun-xvm.html Pascal Gienger Kanzleistr. 14 78462 Konstanz Powered by Movable Type Open Source Phone +49 7531 584298 Fax +49 7531 584298-9 Phone USA 1-678-791-4182 YouTube Channel: pascalgienger 3 von 3 13.12.2009 12:56.
Recommended publications
  • Oracle® Enterprise Manager Ops Center Security
    Oracle® Enterprise Manager Ops Center Security 12c Release 4 (12.4.0.0.0) F17675-01 April 2019 Oracle Enterprise Manager Ops Center Security, 12c Release 4 (12.4.0.0.0) F17675-01 Copyright © 2007, 2019, Oracle and/or its affiliates. All rights reserved. Primary Author: Krithika Gangadhar This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency- specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • System Virtualization Support in Sun Java System Products
    SystemVirtualization Support in Sun Java System Products October 2009 This document is maintained by Sun Java System team. Software Products Covered by this Statement This document summarizes Sun support for Sun Java System products when used in conjunction with system virtualization products and features. It applies to Sun products contained in the following Sun Java System suites: ■ Sun GlassFish Portfolio ■ Sun Java Application Platform Suite ■ Sun Java Identity Management Suite ■ Sun Java Composite Application Platform Suite ■ Sun B2B Suite ■ Sun ESB Suite ■ Sun MDM Suite ■ Sun Java Web Infrastructure Suite ■ Sun Java Communications Suite Refer to the Sun Java Enterprise System (Java ES) and Communications Suite product pages for more information on these suites. The Sun Java Availability Suite and Solaris Cluster are not addressed in this support statement. Refer to the Solaris Cluster product information for further details on Solaris Cluster's support for operating system virtualization. Introduction A core capability of system virtualization offerings is the ability to execute multiple operating system (OS) instances on shared hardware. Functionally, an application deployed to an OS hosted in a virtualized environment is generally unaware that the underlying platform has been virtualized. Sun performs testing of its Sun Java System products on select system virtualization and OS combinations to help validate that the Sun Java System products continue to function on properly sized and configured virtualized environments as they do on non-virtualized systems. System Resource Sizing The combination of being able to deploy multiple OS instances and applications on a single system and the ease by which system resources can be allocated to OS instances increases the likelihood of realizing undersized environments for your applications.
    [Show full text]
  • Avanquest Software Teams with Sun Microsystems
    Avanquest Software teams with Sun Microsystems to produce and publish two of Sun Microsystems flagship products in the whole of Europe: Sun’s xVM VirtualBox, one of the industry’s most popular cross-platform virtualization software and StarOffice 9, the latest version of Sun’s award- winning office suite La Garenne-Colombes, France – September 22, 2008 Avanquest Software , a leading developer and publisher of business and consumer software for the global PC market, today announced that it will produce and publish two of Sun Microsystems ’ most popular software programs – StarOffice and Sun xVM VirtualBox. StarOffice 9 is the latest version of the highly acclaimed, easy-to-use and affordable office suite alternative and is compatible not only with Windows and Linux platforms, but also with Mac OS X (10.4 or higher). Sun xVM VirtualBox is a high-performance desktop virtualization solution that supports all major host operating systems (OS), including Mac OS X, Linux, Windows, Solaris™ and OpenSolaris™. It will be sold by Avanquest as a stand-alone product as well as in a bundle with OpenSolaris and StarOffice 8. From October 2008, Avanquest will market these products via retail outlets, the web and corporate and SMB channels across Europe. Sun Microsystems is an established market leader in virtualization technology and desktop office suites. The agreements are in keeping with Avanquest’s strategy to publish the most innovative technologies and offer customers – from single users up to corporations – greater choice. “Andy Goldstein, European Chief Operating Officer at Avanquest Software, added: “The trust shown by Sun is a great source of satisfaction for Avanquest.
    [Show full text]
  • Sun Fire X4170, X4270, and X4275 Server Architectures
    SUN FIRE™ X4170, X4270, AND X4275 SERVER ARCHITECTURE Optimizing Performance, Density, and Expandability to Maximize Datacenter Value White Paper April 2009 Abstract In compact 1U and 2U form factors, the Sun Fire X4170, X4270, and X4275 servers combine the power of a new generation of Intel Xeon processors with Sun’s system engineering expertise. Based on Sun’s Open Network System design approach, these servers offer the needed performance, density, and expandability to satisfy demanding datacenter applications, especially for virtualization and consolidation initiatives. This white paper describes the architecture of the Sun Fire X4170, X4270, and X4275 servers, including the processor technology, I/O subsystem, built-in system management features, and range of supported operating systems. Sun Microsystems, Inc. This Page Intentionally Left Blank Sun Microsystems, Inc. Table of Contents Executive Summary . 1 Managing Capacity and Complexity . 2 Introducing the Sun Fire™ X4170, X4270, and X4275 servers . 2 Comparing the Sun Fire X4170, X4270, and X4275 servers . 4 A choice of operating systems . 6 The Intel Advantage . 7 New Intel Core Microarchitecture. 7 Modular architecture . 10 Power management technologies . 10 Intel Xeon Processor 5500 platform . 11 Sun Fire X4170, X4270, and X4275 Server Architectures . 12 Sun Fire X4170 system-level architecture . 12 Sun Fire X4170 server overview. 13 Sun Fire X4170 server enclosure . 14 Sun Fire X4170 server front and rear perspectives . 14 Sun Fire X4270 system-level architecture . 16 Sun Fire X4270 server overview. 17 Sun Fire X4270 server enclosure . 17 Sun Fire X4270 server front and rear perspectives . 18 Sun Fire X4275 system-level architecture . 19 Sun Fire X4275 server overview.
    [Show full text]
  • Sun Fire X2100 M2 and X2200 M2 Server Architecture
    SUN FIRE™ X2100 M2 AND X2200 M2 SERVER ARCHITECTURE Scalable, Compact, and Efficient Systems Based on Powerful Dual-Core and Quad-Core AMD Opteron™ Processors White Paper April 2008 Sun Microsystems, Inc. Table of Contents Executive Summary . 1 Scalable Computing without Complexity . 2 Meeting Modern Enterprise Needs . 4 Raising Expectations for Entry-Level Servers . 4 Maximizing Solution Longevity. 5 AMD Opteron™ Processor Technology . 6 Second-Generation Dual-Core AMD Opteron Processors . 6 Third-Generation Quad-Core AMD Opteron Processors . 8 High-Bandwidth I/O for High Performance Computing . 11 AMD Virtualization Technology. 12 Processor Design for Energy Efficiency . 13 Sun Fire X2100 M2 and X2200 M2 Server Architecture . 16 Motherboard. 16 Memory Architecture . 18 PCI Express Expansion. 19 Disk Drive and Hardware RAID . 19 Networking and I/O . 19 Enclosure and Rackmount. 21 Power and Cooling . 21 Specifications and Compliance . 22 System Management . 23 Embedded Service Processor — Out of Band System Management . 23 In-Band System Management. 25 Sun xVM Ops Manager Software . 25 A Universal Computing Platform. 26 A Choice of Operating Systems . 27 The Solaris™ Operating System . 27 Linux Environments . 29 Microsoft Windows Environments . 29 VMware. 29 Conclusion . 31 For More Information . 32 1 Executive Summary Sun Microsystems, Inc. Executive Summary IT organizations are under constant pressure to improve operations and lower costs. Many IT managers strive to gain efficiencies by standardizing platforms and procedures. Unfortunately, these efforts can stall as datacenters are often stocked with a mix of new 64-bit applications and a large inventory of legacy 32-bit code — requiring a variety of different chip architectures and operating environments for execution.
    [Show full text]
  • Sun Xvm Virtualbox
    Sun xVM VirtualBox Product Overview Orgad Kimchi ISV-E Engineering Sun Microsystems, Inc. 1 Agenda • Background • Product Overview • Key Features Sun Proprietary Information ; Partners Only 2 Background • In January 2007, innotek went GNU public with the release of VirtualBox under the GPLv2 (dual licensed) • One of the most popular software package for running Windows programs on Linux desktops • 5 million downloads • 10,000 downloads every day • In February 2008, Sun Microsystems Inc. acquired innotek Sun Proprietary Information ; Partners Only 3 Sun xVM Product Family DEVELOP TEST/STAGE DEPLOY xVM VirtualBox xVM Server & xVM Server & xVM Ops Center xVM Ops Center • Create virtualized applications • Make efficient use • Reliably and securely • Develop on your own of testing resources run your applications preferred platform • Test in different • Dynamically adapt • Test on many OSes situations your application to on the single system changing conditions Sun Proprietary Information ; Partners Only 4 Sun xVM VirtualBox Guest Platforms Sun xVM VirtualBox Host Platforms x86 Hardware Sun Proprietary Information ; Partners Only 5 Sun xVM VirtualBox GUI Sun Proprietary Information ; Partners Only 6 VirtualBox Screenshot Solaris as Guest OS Sun Proprietary Information ; Partners Only 7 Add Virtualization to Your Development Toolbox • SandBox concept - Testing with a clean slate • Training and Demos in the field • Isolation potentially unsafe code, such as a virus or low- level data manipulator • Preconfigured environment for development • Multiple
    [Show full text]
  • Space Details Key: VDI3 Name: Sun Virtual Desktop Infrastructure Description: Securely Access a Virtual Desktop from Nearly Any Client on the Network
    Space Details Key: VDI3 Name: Sun Virtual Desktop Infrastructure Description: Securely access a virtual desktop from nearly any client on the network. Creator (Creation Date): stephanielewellen (Feb 02, 2009) Last Modifier (Mod. Date): stephanielewellen (Feb 02, 2009) Available Pages • About VDI • Getting Started - VDI Demo • Planning the Installation • Release Notes • VDI Patches • Supported Configurations • Deployment Guide • Installing • Testing the VMware Infrastructure Setup • Installing the VDI Core • Configuring the VDI Core • How to Configure Sun VDI for an Evaluation Environment • How to Configure Sun VDI for a Production Environment • How to Configure a Remote MySQL Database • Reconfiguring the VDI MySQL Cluster • How to do a Rolling Restart of Your MySQL Cluster • How to Prevent Unrestricted SQL Node Joins • MySQL Cluster Reconfiguration Scenarios • Backing Up the VDI Configuration • Checking VDA Services • How to Check the Core Service • How to Check the Database Service • How to Check the Admin GUI Service • How to Check the RDP Broker Service • Using the CLI • The Man Page for the vda Command • The vda Command • vda Command Usage • vda Command Usage Examples • The vda-config Command • The vda-db-status Command • The vda-install Command • The vda-migrate Command • The vda-service Command • The vda Subcommands Document generated by Confluence on Jun 24, 2009 06:55 Page 1 • The vda-webadmin Command • Setting Up a Storage Server • How to Set Up a Solaris Storage Server • How to Set Up an OpenSolaris Storage Server • How to Set
    [Show full text]
  • Lifetime Support Policy: Oracle and Sun Systems Software
    Oracle and Sun System Software and Operating Systems Oracle Lifetime Support Policy September 21, 2021, 2021 | Version 1.00 Copyright © 2021, Oracle and/or its affiliates TABLE OF CONTENTS This brochure provides lifecycle timeframes for system software that is typically sold Additional Sun software is located in the standalone, but used in conjunction with specific Oracle or Sun products. Product Oracle Fusion Middleware, Oracle areas include server and storage management, Sun third-party, communication and Technology and Oracle Applications collaboration and Sun Ray. Lifetime Support Policy brochures located on www.oracle.com. ORACLE LIFETIME SUPPORT: 2 Please see the Oracle Software Oracle Communications Session Border Controller (Formerly Acme Packet Net-Net) 5 Technical Support Policies document Oracle Communications Tunneled Session Controller (Formerly Acme Packet NetNet) 5 located on www.oracle.com for Oracle Communications Application Session Controller (Formerly Acme Packet Net-Net) 5 additional terms and descriptions. Oracle Communications Unified Session Manager (Formerly Acme Packet Net-Net) 6 Oracle Communications Subscriber Aware Load Balancer (Formerly Acme Packet Net-Net) 6 Oracle Communications Border Gateway (Formerly Acme Packet Net-Net Border Gateway) 6 Oracle Communications Core Session Manager 7 Oracle Communications Session Router (Formerly Acme Packet Net-Net Session Router) 7 Oracle Communications Security Gateway (Formerly Acme Packet Net-Net Security Gateway) 7 Oracle Communications Session Monitor Family of
    [Show full text]
  • How to Install Virtual Box Marcos Valdebenito
    How to Install Virtual Box Marcos Valdebenito I- Introduction This How To will show the installation of the Virtual Box program that can be set up in Windows XP to run a second Operating System in a single computer. Additionally, Linux OpenSolaris, will be installed to demonstrate the use of the Virtual Box. II -What is VirtualBox? Virtual Box is an Open Source software, is freely available, and performs as a Virtual Machine. It can be installed in the most popular operating systems such as Windows XP and Vista, Macintosh and Linux hosts, while additionally supporting a large number of guest operating systems such as Red Hut, Fedora, Obuntu, OpenSolaris, Open SUSE, Devian. You can even install Windows Vista or Windows XP Guest in a Linux Host without a dual boot environment …just one key will switch from Host OS to Guest OS. This is a big advantage since you can have two operating systems in the same screen at the same time without restarting your machine! III- How to install the VirtualBox We will go step by step in the process of installing VirtualBox in a computer that runs Windows XP. Before proceeding with any installation I suggest to create a new partition exclusively for VirtualBox. I have created a new partition with the letter E: \ and have assigned 16 GB. I’m sure that you don’t need to create a special partition for this installation but I feel more relieved doing it… …and remember VirtualBox is free! 1- To download the VirtualBox application, go to www.virtualbox.org 2- Select on the right side menu, Downloads 3- From the list select VirtualBox 2.0.4 for Windows hosts x86 (for XP only) for other host operating systems select accordingly.
    [Show full text]
  • Integrating Virtualization Technology Into Remote Labs: a Three Year
    AC 2009-318: INTEGRATING VIRTUALIZATION TECHNOLOGY INTO REMOTE LABS: A THREE-YEAR EXPERIENCE Peng Li, East Carolina University Page 14.771.1 Page © American Society for Engineering Education, 2009 Integrating Virtualization Technology into Remote Lab: A Three- Year Experience 1. Introduction and Background Many colleges and universities are facing rising enrollments while the budgets have not been increased proportionally. In our program, enrollment has gone up significantly in the past few years, especially in the distance education (DE) section. How to use the limited resources to deliver quality education effectively and efficiently becomes a real challenge. To deal with this challenge, we have experimented with different virtualization options in the past three years. This paper is a follow-up to the studies1,2 we presented at the previous ASEE conferences and summarizes our three-year experience. Virtualization technology allows multiple guest virtual machines to run simultaneously on a physical computer. The technology was first developed3 at IBM for mainframe systems in the 1960s. The first x86 virtualization product, “VMware Virtual Platform” was released by VMware Inc. in 19994. The year of 2009 is the 10th anniversary of this breakthrough. The x86 virtualization technology has gradually become more mature and stable since early 2000s5. Virtual machines were reportedly used for educational purposes in college computer labs as early as 20026,7,8. However, the technology has not been adopted broadly until recent years due to a few factors: 1) the early virtualization products were buggy and not very reliable; 2) the virtualization software packages were resource-demanding and costly. Therefore they were usually hosted on high-end machines in centralized on-campus computer labs.
    [Show full text]
  • Sun Cluster 3.2 11/09 Release Notes 3.2 11/09 Release Notes 821-0258
    Sun Cluster 3.2 11/09 Release Notes 3.2 11/09 Release Notes 821-0258 Release Notes Sun Cluster 3.2 11/09 Release Notes 821-0258 Copyright © 2007, 2009, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related software documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007).
    [Show full text]
  • Solaris 10 Container Leitfaden - Funktionalitätsstand Bis Solaris 10 10/09 Und Opensolaris 2009.06
    Solaris 10 Container Leitfaden - Funktionalitätsstand bis Solaris 10 10/09 und OpenSolaris 2009.06 - Detlef Drewanz, Ulrich Gräf, u.v.a. Sun Microsystems GmbH Stand 30.11.2009 Funktionsweisen Anwendungsfälle Best Practices Kochbücher Version 3.1-de Solaris 10 Container Leitfaden - 3.1 Stand: 30.11.2009 Inhaltsverzeichnis Disclaimer...................................................................................................................................................VII Versionierung..............................................................................................................................................VII 1. Einführung.................................................................................................................................................1 2. Allgemein...................................................................................................................................................2 2.1. Solaris Container und Solaris Zonen..................................................................................................2 2.1.1. Überblick................................................................................................................................2 2.1.2. Zonen und die Installation von Software................................................................................4 2.1.3. Zonen und Sicherheit.............................................................................................................4 2.1.4. Zonen und Privilegien.............................................................................................................4
    [Show full text]