Parallel - A Zero-Client Computing Application

Size: px
Start display at page:

Download "Parallel - A Zero-Client Computing Application"

Transcription

1 Parallel - A Zero-Client Computing Application STANCU MIHAI, DANA SIMIAN Lucian Blaga University of Sibiu Faculty of Sciences 10, Victoriei Bd., Sibiu, Romania stancu.mihai.dorian@gmail.ro dana.simian@ulbsibiu.ro Abstract: The purpose of this paper is to explore the concepts of zero-client computing and to introduce and present Parallel, a software solution proposed and designed by us, that allows rapid deployment of such architectures. Parallel enables multiple users to do their work simultaneously on the same computer, using only separate monitors, keyboards and mouses, effectively providing the same experience as a dedicated PC for each user. Topics include a zero-client definition, benefits, software impact, deployment process, management and comparisons with existing solutions. Key-Words: zero-client, centralized computing, green computing 1 Introduction This paper introduces and presents Parallel, a software solution, designed by us, which allows a single computer to be used simultaneously by multiple users, each having a separate monitor, keyboard and mouse. The purpose is to do a succinct, general presentation of the application and its importance. Technical details regarding the implementation will constitute the subject of a future, extended article. We begin with a short review of the main disadvantages of computer system architectures that assume a dedicated PC to be available at every user interaction point. In [1] we are provided with a brief overview of the current state of computing, as today most office, commercial or industrial applications are deployed on dedicated PCs or workstations. The PC is then connected to a network and a variety of peripheral devices. This type of architecture is found everywhere from universities, libraries, retail, financial, airline, food service, to manufacturing and most other commercial markets. In [8] the main disadvantages of this type of architecture are emphasized, ranging from initial costs: equipment, installation, configuration, designing infrastructure, training and administration, security and backup; to ongoing costs: repairs, replacements and upgrades (either hardware or software), user incidents, maintenance and support. In [1] a different disadvantage is mentioned: hardware generally has moving parts, for example hard drives, CD/DVD drives, coolers, etc. that have expected lifetimes of three to five years. In [3] yet another disadvantage is presented: the environmental impact, which also needs to be considered. An average computer system requires about 10 times its weight in chemicals and fossil fuels to produce. When it is used, the electricity consumed and heat generated has a major environmental impact. Finally, at end of life, the toxic substances in a computer such as heavy metals and brominated compounds constitute a critical issue. Knowledge of these disadvantages allows for better understanding of the importance of zeroclient architectures. The rest of this article is organized as follows: - In Section 2 a definition and short description of zero-clients and their advantages is realized; - Section 3 is dedicated to the presentation of Parallel - the application we have developed that allows rapid deployment of zero-clients; we list the hardware requirements, describe the deployment scenarios, illustrate its architecture and point out key-features regarding the implementation; - Competitive analysis of Parallel and other existing software which promise zeroclient capabilities are made in section 4; - Section 5 contains plans for future development regarding the extension and improvement of Parallel, conclusions about the impact of our software, and the advantages it has to offer. ISBN:

2 2 Zero-client computing Zero-clients first appeared with mainframe computing. All computing was centralized and the information was output to multiple users through so called "dumb terminals" [2]. A zero-client is a set of devices such as a monitor, keyboard and mouse that rely on a centralized CPU for processing. The zero-client connects to the host directly, via a high-performance point-to-point connection, without any network protocol. This configuration is a great platform for small-group systems accessing shared resources. Zero-clients offer smaller costs and a centralized location for upgrade, maintenance and support, effectively reducing licensing and lifetime system costs. Figure 1. Connecting peripherals via existing USB ports 3 Parallel Parallel is a software solution that allows two or more people to use a single computer simultaneously without interfering with one another, as if each of them was using a dedicated PC. It provides a simple and elegant solution to reduce IT costs in computer science laboratories, libraries and businesses, as well as in homes where several family members need to access the PC at the same time. 3.1 Hardware Requirements Parallel supports many standard stations (the exact number depends primarily on hardware limitations) and a main station (the one activated when Windows is started). A video card that is able to support at least two monitors is required. Secondary keyboards and mouse devices can be connected to the host s existing USB ports, or via USB hubs. 3.2 Architecture The core component of our application is the Remote Desktop Protocol. Multiple remote desktop sessions are created, each remote desktop client being displayed full screen on a separate monitor. Keyboard and mouse input is captured by a driver developed specifically for our application. Figure 2. Connecting peripherals via USB hubs ISBN:

3 Figure 3. Parallel main components RDP sessions Input driver The Remote Desktop Connection clients are created using Microsoft s Remote Desktop ActiveX control, which allows us to specify all the attributes that we require: the resolution, whether to start in full-screen or not, the connection details, etc. The difference from normal usage of RDP is that in our case, both the Remote Desktop Connection clients and the Remote Desktop Session Host server are located on the same physical machine. The input received from all the keyboards and mouses connected is filtered based on the device that generated it, and the appropriate input is sent to each remote desktop client window. The challenge here was to intercept and transform the keyboard and mouse input. This can be done with Windows hooks, but if we used them, we would not be able to identify the device from which events are coming from, when connecting multiple keyboards and mouses. On the other hand, Raw Input allows discriminating between input devices, but it does not allow intercepting input. This is why we needed to create a middle layer, an API that provides a simple interface for communicating with kernel-mode components. In this API, data is intercepted in an early stage, before reaching the OS input processing core. The mechanism we developed effectively allows multiple keyboards and mouse devices to be used simultaneously, without interfering with one another, on the same computer. 3.3 Management Parallel Manager allows monitoring and managing the hardware, user sessions, and user accounts. Before applying any changes to the configuration, user accounts that will have access to the RDP sessions need to be created. Either local accounts or Active Directory can be used. The administrator will be able to see the available users, monitors, keyboards and mouse devices, and group them together to form the stations. Once all the stations are configured, with the press of a button, the RDP sessions are created, the input driver is initialized and the computer becomes a multi-seated system. Each station will receive input from the configured keyboard and mouse, and display information on the configured monitor. The peripherals that are not used remain available to be assigned to other stations. Until a device is assigned, it can be used to interact with the host operating system. When a user disconnects, his session remains active until either he or the administrator signs him off. This feature prevents users from losing their work or other important information. The moment a user is signed off, the devices assigned to his station are released and become available to the host operating system. Available devices are reused when creating a new user station. 3.4 Technical Challenges Though conceptually very simple and elegant, implementing Parallel proved to be a significant challenge on the technical side. The low-level component that handles device input required a deep understanding of Windows internals, especially the I/O kernel stack. The implementation language in this case was C. C# and the.net Framework were also used, but their role was only to help implement the user interface. We have used Windows Presentation Foundation and MVVM to create the UI. Visual Studio 2012 was the IDE of choice, while Microsoft Expression Blend helped us concentrate on the user experience and graphical design of the application. Parallel s UI contains a minimal number of controls and is very intuitive. All strings and messages are localized according to the current Language and Regional Settings. Finally, the software development process was based on Test Driven Development. The resulted unit tests provide a greater level of assurance ISBN:

4 regarding the quality of the source code, and the robustness of our application. More technical details regarding the implementation will be provided in a future extended article. 4 Competitive Analysis In [5], it is emphasized that many virtual desktop infrastructure vendors claim to be offering zero clients, but these are usually just thin clients that need additional hardware and software. Many people confuse a zero-client with a thin client endpoint in thin client vendor marketing materials. Real zero-clients do not perform local processing and do not have a client operating system, drivers, storage, etc. Zero-clients should be stateless, management-free, and most importantly, they should mean zero endpoint management. Our software, Parallel offers true zero-client capabilities and has several advantages over its competitors. The main advantage is the ease of installation. Unlike all other similar applications, Parallel can be installed after the operating system is installed, and the installation process is extremely easy to follow. Another feature that is unique to our application is the fact that it detects newly connected devices during runtime and allows the assignment of available resources while other users are still connected. The following table illustrates other key differences between Parallel and other similar software such as Userful (for Linux) and Microsoft Windows Multipoint Server. Parallel Userful Multipoint OS Windows Linux Windows (x64) No. Stations Unlimited Licensing FREE Simple Complex Use Cur. OS Yes Purchase No Domain Join Yes Yes License Setup Time 5 min 30 min 4 hours Performance Fast Fast Slow 3D Graphics Hardware Software No Audio No Yes No USB Access Yes Yes No Table 1: Competitive Analysis 5 Conclusion and Future Development Zero-clients are completely different from current PC infrastructures, and offer a great solution for improving the cost, flexibility, reliability, security and environmental impact of current client-server architectures. From a typical user s point of view, a zero-client can cost as much as 80 per cent less than a PC [6], uses far less energy, and no further investments are necessary to establish the network infrastructure. Zero-clients can replace PCs everywhere, from universities and public institutions to private homes where many family members wish to access a single computer at the same time. Until now, deploying zero-clients required specific hardware and the installation of special operating systems. Parallel, on the other hand, a free and open-source software, requires neither special hardware nor software to be installed, and the installation process is straightforward. Built with user-friendliness, efficiency and high performance in mind, Parallel allows for fast and easy deployment of zero-clients, and real-time management of assets making it unique among its competitors. The main design goals have been reached, but there are still many ideas that have not been implemented in the current version of Parallel, which are planned for future development. We mention here only a few: redirecting multiple microphones, cameras, etc. to the correct remote connection client, and also allowing separate audio streams for each client. Finally, we intend to port the application to Linux as well, as it currently only supports Windows. References: [1] Frank Ohlhorst, Replacing Desktop PCs with Zero-Client Solutions, /Replacing-Desktop-PCs-with-ZeroClient- Solutions / [2] Applica Inc., Zero Client, [3] Wise Technology Inc., Environmental Benefits of Thin Computing, White Paper, [4] Digi International, Zero-Client Computing, White Paper, [5] Pano Logic, Zero-Clients vs. Thin Clients, eviewbody/ /panologic_wp _Zero_vs_Thin_Clients-ZvTC pdf; jsessionid=a6e12b b4d336700c4 [6] Userful, official website, [7] Windows Multipoint Server, official website, ISBN:

5 [8] Centralized vs. Distributed Computing, White Paper Discussion, ites/cbs/siteadmin/documents/centralized%20c omputing%20-%20white%20paper.pdf [9] Autoscript, [10] Windows Pager, official website, [11] Gong Wang, Microsoft Windows Multipoint Server 2010 Reference Architecture for Dell OptiPlex Systems, s/engineering-docs/en/documents/reference- architecture-windows-multipoint-server dell-optiplex.pdf [12] Charles Petzold, Programming Windows, 5 th Edition, Microsoft Press, 1998 [13] Mark Russinovich, David Solomon, Alex Ionescu, Windows Internals, 5 th Edition, Microsoft Press, 2009 ISBN:

ThinManager vs. The Competition

ThinManager vs. The Competition LEARNING SERIES: ThinManager vs. The Competition A comparison in the thin client management market. www.thinmanager.com Customers often ask us to provide some sort of comparison between ThinManager and

More information

RDP Zero Client. One PC many USERS, Savings. computing simplified

RDP Zero Client. One PC many USERS, Savings.   computing simplified RDP Zero Client One PC many USERS, Savings TM Model: AL-400 World s First HD Movies Playing Zero Client index 06 Questions 05 Installation FAQ s 01 Challenges Challenges of the Traditional Sharing Computing

More information

Windows MultiPoint Server 2011 Planning Guide. Document Version 1.0 March 2011

Windows MultiPoint Server 2011 Planning Guide. Document Version 1.0 March 2011 Windows MultiPoint Server 2011 Planning Guide Document Version 1.0 March 2011 Copyright Notice This document is provided as-is. Information and views expressed in this document, including URL and other

More information

Learning Series. ThinManager Versus The Competition. A comparison in the thin client management market.

Learning Series. ThinManager Versus The Competition. A comparison in the thin client management market. Learning Series ThinManager Versus The Competition A comparison in the thin client management market. Customers often ask us to provide some sort of comparison between ThinManager and other process management

More information

Rethinking VDI: The Role of Client-Hosted Virtual Desktops. White Paper Virtual Computer, Inc. All Rights Reserved.

Rethinking VDI: The Role of Client-Hosted Virtual Desktops. White Paper Virtual Computer, Inc. All Rights Reserved. Rethinking VDI: The Role of Client-Hosted Virtual Desktops White Paper 2011 Virtual Computer, Inc. All Rights Reserved. www.virtualcomputer.com The Evolving Corporate Desktop Personal computers are now

More information

Enterprise-class desktop virtualization with NComputing. Clear the hurdles that block you from getting ahead. Whitepaper

Enterprise-class desktop virtualization with NComputing. Clear the hurdles that block you from getting ahead. Whitepaper Enterprise-class desktop virtualization with NComputing Clear the hurdles that block you from getting ahead Whitepaper Introduction Enterprise IT departments are realizing virtualization is not just for

More information

Microsoft Windows MultiPoint Server 2010 Reference Architecture for Dell TM OptiPlex TM Systems

Microsoft Windows MultiPoint Server 2010 Reference Architecture for Dell TM OptiPlex TM Systems Microsoft Windows MultiPoint Server 2010 Reference Architecture for Dell TM OptiPlex TM Systems Dell Configurations for Windows MultiPoint Server 2010 Deployment Version 1.0 Gong Wang Dell Product Group

More information

Thin Desktop - The business case for using a PC or Thin Client as the user access device in a virtualization deployment

Thin Desktop - The business case for using a PC or Thin Client as the user access device in a virtualization deployment Thin Desktop - The business case for using a PC or Thin Client as the user access device in a virtualization deployment Mike Cardinal General Manager ThinLaunch Software, LLC January, 2009 Contents Executive

More information

ThinManager vs. VMware HorizonView

ThinManager vs. VMware HorizonView LEARNING SERIES: ThinManager vs. VMware HorizonView A comparison paper and sales resource for channel partners Doug Coulter dcoulter@thinmanager.com www.thinmanager.com Summary Horizon View is not designed

More information

Tips for creating a VDI backup plan

Tips for creating a VDI backup plan E-Guide Tips for creating a VDI backup plan Most virtual desktop infrastructure (VDI) products claim to simplify the backup process, but IT administrators are finding that backing up and protecting data

More information

ThinManager vs. VMWare Horizon View

ThinManager vs. VMWare Horizon View ThinManager vs. VMWare Horizon View A Sales Resource for Rockwell Channel Partners Doug Coulter dcoulter@thinmanager.com Summary Horizon View is not designed for the plant floor. ThinManager, on the other

More information

Critiquing technological strengths and limitations

Critiquing technological strengths and limitations http://www.scientificcomputing.com/selecting-the-right-lims.aspx Selecting the Right LIMS Critiquing technological strengths and limitations Keith M. O'Leary For many organizations, their Laboratory Information

More information

SUNDE VDI solution is a server based computing model which leverages the best features of a networking system.

SUNDE VDI solution is a server based computing model which leverages the best features of a networking system. SUNDE VDI solution is a server based computing model which leverages the best features of a networking system. The IT administrator at the server side creates multiple virtual computers and assigns them

More information

Agenda. What is ThinManager? How Does it Work? Power & Ease Feature Set Why Use ThinManager? ActiveX for Advanced Functions

Agenda. What is ThinManager? How Does it Work? Power & Ease Feature Set Why Use ThinManager? ActiveX for Advanced Functions Basic ThinManager Agenda What is ThinManager? How Does it Work? Power & Ease Feature Set Why Use ThinManager? ActiveX for Advanced Functions What is ThinManager? ThinManager Mission ThinManager ensures

More information

DEPLOYMENT WHITE PAPER.

DEPLOYMENT WHITE PAPER. DEPLOYMENT WHITE PAPER www.seavusprojectviewer.com Deployment Options Seavus Project Viewer provides a wide variety of deployment options: Single User installation is a stand-alone, web downloadable configuration

More information

User Activities. These reports give an overview of how your servers are being used, how many users connect, how many sessions you have etc.

User Activities. These reports give an overview of how your servers are being used, how many users connect, how many sessions you have etc. Executive Over view User Activities These reports give an overview of how your servers are being used, how many users connect, how many sessions you have etc. Session Log Summary This report helps you

More information

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Course 20481C: Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Course Details Course Outline Module 1: Overview of the Windows 8.1 Platform and Windows Store Apps This module introduces

More information

MyCloud Computing Business computing in the cloud, ready to go in minutes

MyCloud Computing Business computing in the cloud, ready to go in minutes MyCloud Computing Business computing in the cloud, ready to go in minutes In today s dynamic environment, businesses need to be able to respond quickly to changing demands. Using virtualised computing

More information

The New USB-C Standard and How to Select a Matching Docking Station

The New USB-C Standard and How to Select a Matching Docking Station The New USB-C Standard and How to Select a Matching Docking Station WHITE PAPER What is USB-C? USB-C, the latest USB standard, is attracting attention from all over the technology industry, as it carries

More information

System recommendations for version 17.1

System recommendations for version 17.1 System recommendations for version 17.1 This article contains information about recommended hardware resources and network environments for version 17.1 of Sage 300 Construction and Real Estate. NOTE:

More information

Enabling the Optimal End User Thin Client Experience

Enabling the Optimal End User Thin Client Experience Enabling the Optimal End User Thin Client Experience The Advantage of Choosing Windows-Based Thin Clients Over Linux-Based Alternatives W H I T E P A P E R INTRODUCTION More often than not, when considering

More information

BUILDING the VIRtUAL enterprise

BUILDING the VIRtUAL enterprise BUILDING the VIRTUAL ENTERPRISE A Red Hat WHITEPAPER www.redhat.com As an IT shop or business owner, your ability to meet the fluctuating needs of your business while balancing changing priorities, schedules,

More information

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server How Parallels RAS Enhances Microsoft RDS White Paper Parallels Remote Application Server Table of Contents Introduction... 3 Overview of Microsoft Remote Desktop Services... 3 Microsoft RDS Pain Points...

More information

Web Conference - InstaVC WebRTC-based Clientless VC Make the Right Impression Collaborate with your team like never before. With InstaVC, give presentations, have productive discussions, and come up with

More information

DaaS. Contents. Overview. Overview Features DaaS Clients What is DaaS FAQ s Migration Services. Benefits. 1 P a g e

DaaS. Contents. Overview. Overview Features DaaS Clients What is DaaS FAQ s Migration Services. Benefits. 1 P a g e DaaS Contents Overview Features DaaS Clients What is DaaS FAQ s Migration Services Overview DaaS or Virtual Desktop (Desktop-as-a-Service) Our Virtual Desktop put ends to the endless process of buying,

More information

WINDOWS SERVER 2003 ADMINISTERING REMOTELY

WINDOWS SERVER 2003 ADMINISTERING REMOTELY Article: Administering Remotely a Windows Server Date: 23/02/2012 Posted by: HeelpBook Staff Source: Link Permalink: Link WINDOWS SERVER 2003 ADMINISTERING REMOTELY There are several methods by which system

More information

vcloudpoint Sharing Computing

vcloudpoint Sharing Computing vcloudpoint Sharing Computing A Simple Way To Your Computing Success The vcloudpoint zero client is a game-changing device that overcomes the weaknesses of traditional zero/ thin client. Combined with

More information

Developing Rich Internet Applications Using Microsoft Silverlight 4

Developing Rich Internet Applications Using Microsoft Silverlight 4 Developing Rich Internet Applications Using Microsoft Silverlight 4 Course No. 10554 5 Days Instructor-led, Hands-on Introduction This course covers intermediate and advanced topics required to develop

More information

CUSTOMERS: 1 of 1 7/13/ :34 AM. Reasons why you may be searching for a CVDI solution. an expert. Have an expert call me.

CUSTOMERS: 1 of 1 7/13/ :34 AM. Reasons why you may be searching for a CVDI solution.  an expert. Have an expert call me. 1 of 1 7/13/2012 11:34 AM Reasons why you may be searching for a CVDI solution. Reason #1 - Pain You have decided to use Virtualized Desktops because you have heard that they are better than the distributed

More information

Independent DeltaV Domain Controller

Independent DeltaV Domain Controller Independent DeltaV Domain Controller The domain controller functionality can be de-coupled from the ProfessionalPLUS / Application stations in DeltaV systems version 14.3 and higher. Table of Contents

More information

teamviewer.com/iot Control and monitor IoT devices and environments remotely with TeamViewer IoT

teamviewer.com/iot Control and monitor IoT devices and environments remotely with TeamViewer IoT teamviewer.com/iot Control and monitor IoT devices and environments remotely with TeamViewer IoT 2-3 TEAMVIEWER IOT IS A REMOTE MONITOR AND CONTROL SOLUTION FOR INTERNET OF THINGS (IOT) DEVICES. It s designed

More information

Xamarin. MS (IT), 4 th Sem. HOD, Dept. Of IT, HOW DOES XAMARIN WORKS?

Xamarin. MS (IT), 4 th Sem. HOD, Dept. Of IT, HOW DOES XAMARIN WORKS? Xamarin Mandanna B J MS (IT), 4 th Sem Jain University, Bangalore Dr. Suchitra R HOD, Dept. Of IT, Jain University Bangalore Abstract:- It is a technology that brings.net/c# to Android, IOS as well as

More information

Learning outcomes. On successful completion of this unit you will: More detail on the wiki.

Learning outcomes. On successful completion of this unit you will: More detail on the wiki. 2015 2016 Phil Smith Learning outcomes On successful completion of this unit you will: 1. Understand the commercial impact and potential of virtualisation. (Assignment 1) 2. Be able to design virtualisation

More information

USING VIRTUAL MACHINES

USING VIRTUAL MACHINES USING VIRTUAL MACHINES 1 Web location for this presentation: http://aztcs.org Click on Meeting Notes 2 SUMMARY Using a "virtual machine program" such as the free "VMware Player" running inside your real

More information

Integrating NComputing Virtual Desktops with Citrix and VMware. April 21, 2010

Integrating NComputing Virtual Desktops with Citrix and VMware. April 21, 2010 Integrating NComputing Virtual Desktops with Citrix and VMware April 21, 2010 Topics Trends & Challenges in Desktop Virtualization NComputing Virtual Desktops Leveraging Best of Breed Technologies Cloud

More information

Wharfedale Technologies Inc. Whitepaper January SAP HANA on Public Cloud (Azure)... 3

Wharfedale Technologies Inc. Whitepaper January SAP HANA on Public Cloud (Azure)... 3 Table of Contents SAP HANA on Public Cloud (Azure)... 3 Overview...3 Why Public Cloud for HANA...3 SAP HANA Products Certified for Use on Azure...4 Deployment Options...5 HANA on Azure VMs... 5 HANA on

More information

SOFTWARE DEFINED STORAGE VS. TRADITIONAL SAN AND NAS

SOFTWARE DEFINED STORAGE VS. TRADITIONAL SAN AND NAS WHITE PAPER SOFTWARE DEFINED STORAGE VS. TRADITIONAL SAN AND NAS This white paper describes, from a storage vendor perspective, the major differences between Software Defined Storage and traditional SAN

More information

Backup and Recovery. Benefits. Introduction. Best-in-class offering. Easy-to-use Backup and Recovery solution

Backup and Recovery. Benefits. Introduction. Best-in-class offering. Easy-to-use Backup and Recovery solution DeltaV Distributed Control System Product Data Sheet Backup and Recovery Best-in-class offering Easy-to-use Backup and Recovery solution Data protection and disaster recovery in a single solution Scalable

More information

Thin Client - Overview

Thin Client - Overview Thin Client - Overview GVCC Tradeshow - Oct 2008 Mighty Oaks Thin Client Overview Corporate Overview Thin Client Benefits Thin Client Exclusion Criteria Implementation Next Steps Mighty Oaks Introduction

More information

System recommendations for version 17.1

System recommendations for version 17.1 System recommendations for version 17.1 This article contains information about recommended hardware resources and network environments for version 17.1 of Sage 300 Construction and Real Estate. NOTE:

More information

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript

Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Course 20481A; 5 Days, Instructor-led Course Description In this course, students will learn essential programming skills and techniques

More information

Remote power and console management in large datacenters

Remote power and console management in large datacenters Remote power and console management in large datacenters A Horváth IT department, CERN, CH-1211 Genève 23, Switzerland E-mail: Andras.Horvath@cern.ch Abstract. Today s datacenters are often built of a

More information

Personal computer hardware From Wikipedia, the free encyclopedia (Redirected from Computer hardware)

Personal computer hardware From Wikipedia, the free encyclopedia (Redirected from Computer hardware) Personal computer hardware From Wikipedia, the free encyclopedia (Redirected from Computer hardware) Personal computer hardware are component devices which are typically installed into or peripheral to

More information

Simplify IP Telephony with System i. IBM System i IP Telephony

Simplify IP Telephony with System i. IBM System i IP Telephony Simplify IP Telephony with System i IBM System i IP Telephony Highlights Deploy a complete IP telephony suite on one easy-to-manage system, or even part of a system, shared with other applications Integrate

More information

Microsoft Desktop Virtualization Introduzione. Virtualization. Evento Assyrus Microsoft Virtualization. Microsoft Virtualization

Microsoft Desktop Virtualization Introduzione. Virtualization. Evento Assyrus Microsoft Virtualization. Microsoft Virtualization Microsoft Desktop Introduzione Andrea Mauro Direttore Tecnico 20 novembre 2009 Assyrus Srl Microsoft User State Server Presentation Management Desktop Application Desktop What is it? Traditional Configuration

More information

Design of Infrastructure for NCR Counterpoint

Design of Infrastructure for NCR Counterpoint Design of Infrastructure for NCR Counterpoint The purpose of this document is to assist in determining the correct type of implementation, help implementation teams make critical decisions buying or building

More information

DOWNLOAD PDF MICROSOFT SHAREPOINT PRODUCTS AND TECHNOLOGIES ADMINISTRATORS POCKET CONSULTANT

DOWNLOAD PDF MICROSOFT SHAREPOINT PRODUCTS AND TECHNOLOGIES ADMINISTRATORS POCKET CONSULTANT Chapter 1 : Books for IT Professionals Microsoft SharePoint Products and Technologies Administrators Pocket Consultant,, (isbn, ean ), by Curry B. Since Windows, Active Directory has been the heart of

More information

To Renew or Change? Cloud-based Antivirus for Busy IT People

To Renew or Change? Cloud-based Antivirus for Busy IT People To Renew or Change? Cloud-based Antivirus for Busy IT People CONTENTS 03 EXECUTIVE 04 06 08 09 10 11 12 13 For More Information To find out more, please visit the Panda Security web site at www.forgetsecurity.com,

More information

Licensing. Windows Server Product overview. Azure Hybrid Use Benefit. Editions overview

Licensing. Windows Server Product overview. Azure Hybrid Use Benefit. Editions overview Licensing Windows Server 2016 Product overview Windows Server 2016 is the cloud-ready operating system that supports your current workloads while introducing new technologies that make it easy to transition

More information

Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment

Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment Implementation guide Data Center Rack Scale Design Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment NOTE: If you are familiar with Intel Rack Scale Design and OpenStack*

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

Get more out of technology starting day one. ProDeploy Enterprise Suite

Get more out of technology starting day one. ProDeploy Enterprise Suite Enterprise Suite Get more out of technology starting day one 1 Secure the path to a future-ready data center The landscape faced by IT managers and business leaders today can be daunting to navigate. Continually

More information

SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS

SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS SWsoft ADVANCED VIRTUALIZATION AND WORKLOAD MANAGEMENT ON ITANIUM 2-BASED SERVERS Abstract Virtualization and workload management are essential technologies for maximizing scalability, availability and

More information

THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION

THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION THE API DEVELOPER EXPERIENCE ENABLING RAPID INTEGRATION Ramchandar Loganathan IBS Solution Architect Banks require application programming interface (API) capabilities to realize the significant benefits

More information

1/10/2011. Topics. What is the Cloud? Cloud Computing

1/10/2011. Topics. What is the Cloud? Cloud Computing Cloud Computing Topics 1. What is the Cloud? 2. What is Cloud Computing? 3. Cloud Service Architectures 4. History of Cloud Computing 5. Advantages of Cloud Computing 6. Disadvantages of Cloud Computing

More information

Synchronizer Quick Installation Guide

Synchronizer Quick Installation Guide Synchronizer Quick Installation Guide Version 5.7 September 2015 1 Synchronizer Installation This document provides simplified instructions for installing Synchronizer. Synchronizer performs all the administrative

More information

Transfer of Ncomputing Technology in Education Sectors The Economy Context

Transfer of Ncomputing Technology in Education Sectors The Economy Context Transfer of Ncomputing Technology in Education Sectors The Economy Context Renatus Michael Assistant Lecturer The Institute of Finance Management P.O. Box 3918 Dar es salaam, Tanzania. michael.renatus@ifm.ac.tz

More information

OXYGEN SOFTWARE OXYGEN FORENSIC KIT

OXYGEN SOFTWARE OXYGEN FORENSIC KIT OXYGEN SOFTWARE OXYGEN FORENSIC KIT Oxygen Forensic Kit complete out-of-the-box solution When to start? Immediately! Oxygen Forensic Kit is a complete set you can quickly use right out of the box. It does

More information

ABC Atanasoff-Berry Computer

ABC Atanasoff-Berry Computer Chapter 1 Introduction to Computers A Brief History of Computers First Generation computers 1939-1959 Use vacuum tubes and wire circuits 1939 ABC computer completed, clock speed of 60 Hz, uses punch cards

More information

Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the

Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the Page 1 of 17 Hello, my name is Cara Daly, I am the Product Marketing Manager for Polycom Video Content Management Solutions. Today we will be going over the RealPresence Media Manager Version 6.5 Launch

More information

Windows Server 2012 R2 Licensing Datasheet

Windows Server 2012 R2 Licensing Datasheet Windows Server 2012 R2 Licensing Datasheet Product overview Windows Server 2012 R2 captures Microsoft s experience of delivering global-scale cloud services to provide an enterprise-class server and cloud

More information

CDW LLC 200 North Milwaukee Avenue, Vernon Hills, IL

CDW LLC 200 North Milwaukee Avenue, Vernon Hills, IL Coordinating Conferencing and Collaboration Vital unified communications capabilities offer a solid foundation for an integrated view of the collaborative environment. To make the most of the opportunities

More information

REMOTE IT MANAGEMENT SOLUTIONS: MANAGE REMOTE OFFICES WITHOUT LEAVING YOURS

REMOTE IT MANAGEMENT SOLUTIONS: MANAGE REMOTE OFFICES WITHOUT LEAVING YOURS REMOTE IT MANAGEMENT SOLUTIONS: MANAGE REMOTE OFFICES WITHOUT LEAVING YOURS IT Challenges AT THE REMOTE OFFICE Compared to data centers, remote offices and facilities pose unique hardware and IT management

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1Y0-402 Title : Citrix XenApp and XenDesktop 7.15 Assessment, Design, and Advanced Configurations Vendor

More information

Aqua Accelerated Protocol (AAP) User Manual

Aqua Accelerated Protocol (AAP) User Manual Aqua Accelerated Protocol (AAP) User Manual Table of Contents About Aqua Accelerated Protocol...3 Features... 3 System Requirements... 4 Hardware... 4 Software (AAP Client)... 4 Software (Server Connecting

More information

Certkiller.P questions

Certkiller.P questions Certkiller.P2140-020.59 questions Number: P2140-020 Passing Score: 800 Time Limit: 120 min File Version: 4.8 http://www.gratisexam.com/ P2140-020 IBM Rational Enterprise Modernization Technical Sales Mastery

More information

Thin Client / Server Computing

Thin Client / Server Computing Thin Client / Server Computing Thin Client / Server Computing Agenda Challenges for IT Professionals Challenges to Application Deployment Thin-Client/Server Computing How TCSC Solves the Challenges of

More information

Atrust m320 Windows MultiPoint Zero Client Successfully Improved Learning Environment for Over 200 Schools in Bulgaria

Atrust m320 Windows MultiPoint Zero Client Successfully Improved Learning Environment for Over 200 Schools in Bulgaria Atrust m320 Windows MultiPoint Zero Client Successfully Improved Learning Environment for Over 200 Schools in Bulgaria Customer Overview: Like many around the world, these schools in Bulgaria were equipped

More information

SUSE at the Point of Service. Joachim Werner Senior Product Manager

SUSE at the Point of Service. Joachim Werner Senior Product Manager SUSE at the Point of Service Joachim Werner Senior Product Manager joe@suse.com Agenda Introduction Product Overview SUSE Linux Enterprise Point of Service 11 Typical Configuration SUSE Linux Enterprise

More information

Developing Rich Internet Applications Using Microsoft Silverlight 4

Developing Rich Internet Applications Using Microsoft Silverlight 4 Developing Rich Internet Applications Using Microsoft Silverlight 4 Duration: 5 Days Course Code: M10554 Overview: This course covers intermediate and advanced topics required to develop professional Silverlight

More information

Use of the Internet SCSI (iscsi) protocol

Use of the Internet SCSI (iscsi) protocol A unified networking approach to iscsi storage with Broadcom controllers By Dhiraj Sehgal, Abhijit Aswath, and Srinivas Thodati In environments based on Internet SCSI (iscsi) and 10 Gigabit Ethernet, deploying

More information

Linux Automation.

Linux Automation. Linux Automation Using Red Hat Enterprise Linux to extract maximum value from IT infrastructure www.redhat.com Table of contents Summary statement Page 3 Background Page 4 Creating a more efficient infrastructure:

More information

IBM xseries Sales V3.

IBM xseries Sales V3. IBM 000-070 xseries Sales V3 http://killexams.com/exam-detail/000-070 environment. QUESTION: 126 A manufacturing company's UNIX application servers have recently been failing to meet the customer's required

More information

NVIDIA DGX SYSTEMS PURPOSE-BUILT FOR AI

NVIDIA DGX SYSTEMS PURPOSE-BUILT FOR AI NVIDIA DGX SYSTEMS PURPOSE-BUILT FOR AI Overview Unparalleled Value Product Portfolio Software Platform From Desk to Data Center to Cloud Summary AI researchers depend on computing performance to gain

More information

InsightConnector Version 1.0

InsightConnector Version 1.0 InsightConnector Version 1.0 2002 Bynari Inc. All Rights Reserved Table of Contents Table of Contents... 2 Executive Summary... 3 Examination of the Insight Messaging Solution... 3 Exchange or Outlook?...

More information

Merging Enterprise Applications with Docker* Container Technology

Merging Enterprise Applications with Docker* Container Technology Solution Brief NetApp Docker Volume Plugin* Intel Xeon Processors Intel Ethernet Converged Network Adapters Merging Enterprise Applications with Docker* Container Technology Enabling Scale-out Solutions

More information

CONTENTS. 1. Introduction. 2. How To Store Data. 3. How To Access Data. 4. Manage Data Storage. 5. Benefits Of SAN. 6. Conclusion

CONTENTS. 1. Introduction. 2. How To Store Data. 3. How To Access Data. 4. Manage Data Storage. 5. Benefits Of SAN. 6. Conclusion CONTENTS 1. Introduction 2. How To Store Data 3. How To Access Data 4. Manage Data Storage 5. Benefits Of SAN 6. Conclusion 1. Introduction: A Storage Area Network (SAN) is a dedicated network that carries

More information

Acronis Backup & Recovery 11.5

Acronis Backup & Recovery 11.5 Acronis Backup & Recovery 11.5 Installation Guide Applies to the following editions: Update 2 Advanced Server Server for Windows Virtual Edition Server for Linux Advanced Server SBS Edition Workstation

More information

DATA SECURITY MANAGEMENT. Chris Hare INSIDE. What is a Network? Network Devices; Hubs; Repeaters; Bridges; Routers; Switches; Network

DATA SECURITY MANAGEMENT. Chris Hare INSIDE. What is a Network? Network Devices; Hubs; Repeaters; Bridges; Routers; Switches; Network 87-01-01 DATA SECURITY MANAGEMENT NETWORK TECHNOLOGIES FOR INFORMATION SECURITY PRACTITIONERS: PART 1 Chris Hare INSIDE What is a Network? Network Devices; Hubs; Repeaters; Bridges; Routers; Switches;

More information

Open Research Online The Open University s repository of research publications and other research outputs

Open Research Online The Open University s repository of research publications and other research outputs Open Research Online The Open University s repository of research publications and other research outputs A Sustainable networking architecture: progress on the Ndiyo project Conference or Workshop Item

More information

TANDBERG Management Suite - Redundancy Configuration and Overview

TANDBERG Management Suite - Redundancy Configuration and Overview Management Suite - Redundancy Configuration and Overview TMS Software version 11.7 TANDBERG D50396 Rev 2.1.1 This document is not to be reproduced in whole or in part without the permission in writing

More information

Parallels Virtuozzo Containers

Parallels Virtuozzo Containers Parallels Virtuozzo Containers White Paper Deploying Application and OS Virtualization Together: Citrix and Parallels Virtuozzo Containers www.parallels.com Version 1.0 Table of Contents The Virtualization

More information

Seven Decision Points When Considering Containers

Seven Decision Points When Considering Containers Market Guide Seven Decision Points When Considering Containers A Continuum of Deployment Choices More than ever, developers and systems architects have a range of choices when it comes to deploying applications,

More information

Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions

Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions Data Sheet Cisco Security Manager 4.1: Integrated Security Management for Cisco Firewalls, IPS, and VPN Solutions Security Operations Challenges Businesses are facing daunting new challenges in security

More information

McAfee Product Entitlement Definitions

McAfee Product Entitlement Definitions McAfee Product Entitlement Definitions Corporate Headquarters 2821 Mission College Blvd. Santa Clara, CA 95054 USA Application Server CPU CPU Core Database Database Instance Entity File Submission Daily

More information

Executive brief Create a Better Way to Work: OpenText Release 16

Executive brief Create a Better Way to Work: OpenText Release 16 Executive brief Create a Better Way to Work: OpenText Release 16 Over the next five years, executives expect digital disruption to displace four out of 10 incumbents or 40 percent of established market

More information

Datacenter Management and The Private Cloud. Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education

Datacenter Management and The Private Cloud. Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education Datacenter Management and The Private Cloud Troy Sharpe Core Infrastructure Specialist Microsoft Corp, Education System Center Helps Deliver IT as a Service Configure App Controller Orchestrator Deploy

More information

ARM Security Solutions and Numonyx Authenticated Flash

ARM Security Solutions and Numonyx Authenticated Flash ARM Security Solutions and Numonyx Authenticated Flash How to integrate Numonyx Authenticated Flash with ARM TrustZone* for maximum system protection Introduction Through a combination of integrated hardware

More information

NComputing desktop virtualization

NComputing desktop virtualization NComputing desktop virtualization Abstract We ve all become accustomed to the PC model, which allows every user to have their own CPU, hard disk, and memory to run their applications. But personal computers

More information

Using Kollective with Citrix Virtual Desktop Infrastructure (VDI)

Using Kollective with Citrix Virtual Desktop Infrastructure (VDI) Using Kollective with Citrix Virtual Desktop Infrastructure VDI) Delivering High Quality Video Citrix is one of the leading suppliers of Virtual Desktop Infrastructure VDI) technology, with major hardware

More information

QuickSpecs. HP Client Virtualization with Citrix XenDesktop. Overview. Retired

QuickSpecs. HP Client Virtualization with Citrix XenDesktop. Overview. Retired Overview The HP and Citrix Client Virtualization Solution is a seamless end-to-end client virtualization infrastructure solution that allows administrators to provide one of the best managed desktop and

More information

January 12, Prepared by Dina Borisov, Product manager Jetro Platforms. All rights reserved.

January 12, Prepared by Dina Borisov, Product manager Jetro Platforms. All rights reserved. January 12, 2016 Prepared by Dina Borisov, Product manager 2015 Jetro Platforms. All rights reserved. Contents acockpit5 RDP Android Client... 3 Setting Two factor Authentication... 5 Configuring Two Factor

More information

Plantronics Support for VDI

Plantronics Support for VDI Support for VDI March 7, 2018 Support for VDI 2 Contents 1. Background... 3 1.1 VDI Components... 3 2. VDI Compatibility... 4 2.1 Summary of VDI compatibility... 4 2.2 Different levels of VDI Compatibility...

More information

Middle East Technical University. Jeren AKHOUNDI ( ) Ipek Deniz Demirtel ( ) Derya Nur Ulus ( ) CENG553 Database Management Systems

Middle East Technical University. Jeren AKHOUNDI ( ) Ipek Deniz Demirtel ( ) Derya Nur Ulus ( ) CENG553 Database Management Systems Middle East Technical University Jeren AKHOUNDI (1836345) Ipek Deniz Demirtel (1997691) Derya Nur Ulus (1899608) CENG553 Database Management Systems * Introduction to Cloud Computing * Cloud DataBase as

More information

Chapter 11: Physical Architecture Layer Design

Chapter 11: Physical Architecture Layer Design Chapter 11: Physical Architecture Layer Design Objectives Understand the different physical architecture components. Understand server-based, client-based, and client server physical architectures. Be

More information

Novell GroupWise vs. Microsoft * Exchange:

Novell GroupWise vs. Microsoft * Exchange: Business White Paper END-USER COMPUTING Novell GroupWise vs. Microsoft * Exchange: A Cost-of-Acquisition Business Case Novell GroupWise or Microsoft * Exchange? With Novell GroupWise 8, customers have

More information

ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS. By George Crump

ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS. By George Crump ECONOMICAL, STORAGE PURPOSE-BUILT FOR THE EMERGING DATA CENTERS By George Crump Economical, Storage Purpose-Built for the Emerging Data Centers Most small, growing businesses start as a collection of laptops

More information

Crewstation-over-IP. Real-time mission-critical remote multi-desktops. Esterline Control & Communication Systems. Content

Crewstation-over-IP. Real-time mission-critical remote multi-desktops. Esterline Control & Communication Systems. Content Esterline Control & Communication Systems Crewstation-over-IP Real-time mission-critical remote multi-desktops Content Introduction Benefits of remote HMIs Critical needs for mission systems Commercial

More information

Software is a computer that tells the computer how to perform particular.

Software is a computer that tells the computer how to perform particular. Name: A is a device that accepts, processes, stores, and produces, all according to a series of stored instructions. _ includes the physical electronic and mechanical devices that process the data. Peripheral

More information