How to Get Your Own Web Server to Play With at Home

Size: px
Start display at page:

Download "How to Get Your Own Web Server to Play With at Home"

Transcription

1 How to Get Your Own Web Server to Play With at Home This document will tell you how to create a virtual server. A virtual server runs on a virtual machine (VM). A virtual machine is a software representation of a concrete computer, which to software running on it appears to be physical hardware. That means that you can run an entirely "different" computer inside a window on your desktop. It also means you can run different operating systems than the one hosting the virtual machine. In our case, we are going to run Linux in a virtual machine on whatever you normally use. 1. Download VirtualBox: You need to get the installer for your host operating system. The host operating system is the system that VirtualBox itself will be installed on. If you have Windows, you need the Windows hosts version, if you have a Mac, you ned the OS X host version. If you have Linux, you probably already know all this, so why are you reading it? 2. Install VirtualBox. You do this in the usual way you install software for your host. Now you have a choice. You can create a VM and install everything from scratch, of you can download a pre-built VM (also sometimes called an "appliance"). We're going to build from scratch because it is more fun and will impress your friends more. 3. Start virtual box (you run it just like any other software you should find it in your launcher menu (Start menu on Windows. I don't know what you call it on a Mac). 4. Click the "New" icon, or choose the "New..." item from the "Machine" menu 5. Give the VM a name, choose "Linux" for the Type, and for the Version pick whatever best matches your distribution. I'm going to use PCLinuxOS, which is not in the list, so we'll choose "Other Linux" I'm also not sure what kind of computer hardware you are using, but 32-bit will

2 work on both 32-bit and 64-bit hosts, so we won't go wrong choosing that. By the way, the bit'ness of the operating system refers to the size of a word that the computer consumes while processing instructions. Usually, the central processing unit (CPU) determines the word size of a system. In a 32-bit system, the processor takes instructions and operands that are 32 bits wide. On a 64-bit system, the processor takes instructions and operands that are 64 bits wide. A bit is binary digit that is, it is a digit that can have the value 1 or the value 0. That's it. A computer processes bigger values by stringing bits together. The maximum value a computer can natively process is determined by its processor word size. In a 32-bit system, the maximum value the system can process is whatever can be represented by a string of 32 bits (e.g., an unsigned integer value of 4,294,967,296). If you don't know anything about binary arithmetic, it works just like base-10 arithmetic you use very day, except you move to the next place every 2 increments instead of every 10. You can find a lot about binary math on the Internet if you really want to know. The important thing for us, is that we want the bit'ness of our operating systems and our virtual and real machines to all be compatible. Anyway, your VM definition screen should look something like this now:

3 6. Click "Next" The default memory size on this screen is usually the lowest you can get away with. Since the VM will share memory (RAM) with your host operating system, you can't give all the memory in your computer to it. Whatever you do give it must be entirely reserved for the VM the host and the VM can't be allowed to address the same blocks of memory or both of them will crash. So whatever you assign here will NOT be available to your host OS. I still don't know what kind of computer your have, so we'll keep this selection low. It probably defaults to 256 MB that's too low. Let's bump it to 512 MB and click "Next" 7. Now you need to give your virtual computer a hard drive. Virtual hard drives are really just files on your host computer. Make sure the "Create a virtual hard drive now" item is ticked and click "Create"

4 8. On the next screen we need to select the format for the files that hold the virtual hard drive. This option is included with VirtualBox so that it is compatible with other hypervisors (VirtualBox is a hypervisor software that manages and supports virtual machines). You can leave the default and click "Next" 9. The next option is a fun one. One of the neat things about VMs is that to some degree they can be changed while running. You can say that you want your hard drive to be pre-allocated or allocate it as needed. Allocating all at once creates a file of the size you specifywhen the VM is created. Allocating as-needed, initially allocates a small file and then as that fills, the file is expanded up to a maximum size that you specify. I usually have plenty of disk to spare, so I opt for faster run-time performance and choose "Fixed Size" here. We'll do that now I doubt you are running tight on disk. Then click "Next": 10. Now you need to say where you want the file that represents the virtual hard drive to live on your real hard drive. The file location defaults to where VirtualBox usually keeps stuff and the name defaults to the VM name. I'm just going to change the name, but leave it in the default

5 location. I'm also going to leave the default size of 8 GB. That's a reasonable disk size for a small-scale Linux web server. Even libsystems.clemson.edu, which hosts things like staffweb, the library blog, and the library phone directory only has a 25 GB hard drive. You can leave the defaults here or change them and click "Create". You'll see VirtualBox going to work on your disk: And when it is done, VirtualBox will return to its main console window and you will see the new VM in the list (you'll only have one in your list):

6 All the details in the right pane describe the selected VM. You can change just about anything you want by clicking the "Settings" button (or selecting it from the "Machine" menu). So, now you've created your virtual computer. A lot less painful than pulling out the credit card at Best Buy, wasn't it? We want to put Linux on it yes, we really do. But we need an installer. 11. So back to your web browser, and go here: At the bottom of the page are some mirror links where you can download. Click "US", of course. You should get a list of file links to click on, for me it looks like this right now: Click the "pclinuxos-kde iso". Note that the names change when new releases are made available. For our example we just want to be sure we pick the plainest KDE name that doesn't have "64" after "pclinuxos" and ends in ".iso" Download it somewhere.

7 12. Now comes a neat part. We don't really want to burn a DVD to just install Linux one time, do we? So let's make our virtual machine think that the ISO we just downloaded is a disk in a DVD drive. Back in VirtualBox, make sure your VM is highlighed and click "Settings" and then "Storage" in the left pane: 13. Click the round CD/DVD icon in the right pane (it probably says "Empty", but might say something else if you have a disk in your computer's CD/DVD drive): 14. Click the little disk icon in the upper right of the next screen and choose "Choose a virtual CD/DVD disk file" NOTE: also tick the "Live CD/DVD" checkbox. You can't see it here because it is under the popup menu!

8 15. You'll get the usual file-open dialog you see when using your computer. Navigate to the ISO you downloaded and select and open it. Here's me doing it: You'll see the file you chose showing up in the storage pane next to the CD/DVD icon, like this: Click "OK" 16. We are going to be using this VM as a local web server, so we'll need to be able to talk with it across a network. We don't want it accessible FROM the outside world, just to the physical host computer and other VMs on it, so we need to tweak the network settings for the VM so that it talks on a network restricted to inside your physcal computer. In the VirtualBox File menu, choose "Preferences ":

9 Click "Network" in the left pane, and then click the "Host-only Networks" tab in the right pane: Click the + icon along the right side and VirtualBox will add a network (probably called vboxnet0). We need to configure that network we just made, so click the screwdriver-shaped configuration icon:

10 Then click the "DHCP Server" tab, tick the "Enable Server" checkbox, and enter appropriate values. You can just copy the ones from my example: Server Address: Server Mask: Lower Address Bound: Upper Address Bound: If you are interested, here is what is going on: a Dynamic Host Configuration Protocol (DHCP) server is used to hand out IP addresses to computers on networks. I'll tell you more about IP addresses later, but an IP address uniquely identifies a computer on a network. Since we're going to attach our VM to our virtual host-only network, we need some way to deliver the VM an address on that network, so we're telling VirtualBox to act as a DHCP server on the host-only network. When our VM starts up, it will ask the network for an address and the DHCP server will hand it the next unused one between the lower and upper bounds. Click "OK" and then click "OK" again. You should be back to the main VirtualBox window:

11 17. Now we will tell VirtualBox that our new VM should be attached to the virtual network we just created. Go back into Settings for the VM just as you did to set up the CD/DVD drive and click on "Network" in the left pane, then click the "Adapter 2" tab: Tick the "Enable Network Adapter" checkbox to add this second network adapter to the virtual machine. Select Host-only Adapter from the "Attached to:" drop list. Click "OK"

12 18. OK! We are ready to rock. Click the big Start button (or choose Start from the Machine menu): You'll see the VM booting up in a window. It will boot off the DVD image and you'll eventually get to this screen: Use the arrow keys on your keyboard to go down and select "Install PCLinuxOS" You don't have much time to do that LiveCD is the default and will be auto-selected in a few seconds. If you don't get to it fast enough, no biggy, under the "Machine" menu select "ACPI Shutdown" at anytime to turn the power off, as in the screenshot on the next page:

13 If you do that, it'll shutdown and you'll be asked to hit <enter> when the Live CD is removed. Just hit <enter> at that point. The VM window will close when it finally powers off. Then just click the big "Start" button again to boot it (NOTE: if you didn't tick the "Live CD/DVD" checkbox noted several steps back, you'll have to go back and do the CD setup in the Storage menu again. See steps 12+). This time be ready with that arrow key!

14 This is where you should be when all is said and done: 19. Hit your Enter key. You'll see some starting up stuff happen. 20. I'm not going to do screenshots of the next couple screens. They're pretty obvious: choose a US Keyboard, then you'll be told what you are doing as if you didn't know. Just click next until you get to this one: You can actually just click "Next" on this one, too, but I wanted to say something about it. Here you are configuring the layout of the disk for your server. In our case we're going to let it install mostly in just one gigantic partition, but in some cases you may need something more specialized for example if you don't want peoples' home directories on the same file system as the web server's documents. This VM is just a play thing, so one big partition is easiest to deal with and works just fine. Click "Next"

15 21. You'll get a big red warning. We don't care we know that the disk is really the virtual disk we created when we made the VM. There is no way for the VM to get to your real disk at this point. Just click "Next". It'll prep your disk partitions. 22. Click "Next" on the next screen about removing unneeded packages, then OK. It might take it just a little while. Then it'll tell you it is installing PCLinuxOS. It won't take too long too install (about 10 minutes), but feel free to go to the bathroom, or do the really geeky thing and get some coffee and then stand there, one hand in a pocket, slouching and sipping while pointlessly watching the progress bar crawl across screen, feeling superior to the rest of mankind because you're installing Linux in a VM. Nod subtly every now and then. Isn't this exciting?

16 23. Now you'll get the boot loader option screen. The boot loader is a little program that gets installed in a special place on the disk that the computer's BIOS (that's in the hardware, in our case in virtual hardware) looks to find something to run. It doesn't care what: just loads it and transfers control. Most everyone puts a boot loader there. Black-hatted hackers like to put virus code there on other peoples' disks. In any case, it has to be very, very small. The boot loader is just enough of a program to start loading the operating system. We're going to leave defaults. Just click "Next": 24. Boot loaders general present a menu (or are capable of even if they don't). The next screen lets you configure the boot loaders menu. Defaults are fine, click "Finish": The boot loader will be installed. A few other mystery things will go on for a bit.

17 25. Click "Finish" The VM will begin to reboot. When you see this: Right-click this at the bottom of the VM window and choose "Remove disk from virtual drive" Then press your <Enter> key. The VM will reboot. The new boot loader menu will appear (you can hit Enter when it does or let it time out and auto-choose the default). PCLinuxOS is now installed and running in your VM! Congratulations! Next we've got just a couple of configuration things to do so we can login.

18 26. You'll get a couple of screens I'm not going to capture, just do what you need to: Choose your timezone (New_York), leave the default for the Date, Clock dialog. It doesn't matter if the time is wrong. 27. Got root? You will soon! Here you are setting the password for the "root" user. On a Linux (and any Unix system I've seen), root is the super-user account. It can do anything at anytime. Security components even ignore checks on it. It is all-powerful on its system. Enter a decent password. This is a play thing that won't be running all the time and is not generally accessible outside of your (real) computer, so it isn't critical that it be extremely strong, but make it strong enough just in case. Click "Next" 28. Now you need to create a general purpose user account. Whatever you want for "Login name", but I'd avoid anything but lower-case letters and numbers. Other stuff is just annoying to have to type. Spaces always cause irritation. Click "Next" AND THAT IS ALL! You are done you installed and configured Linux in a VM for general-purpose use. W00t! Now we're going to make it a web server.

19 29. Click the user you created in the previous step and enter the password you entered there. Press "Enter". You'll be logged in. Give it a bit it is doing some extra stuff this first time. Eventually it'll display a notice entitled "Please update your system!" For brevity, I'm going to leave the updating out of this document for now. Just click "OK" on that dialog. Then it'll open the Konquerer web browser to tell you to update again. Choose "Quit" from the "File" menu to get rid of that. You'll see a circle with "PC" in it in the lower-left corner of the VM window. This opens the launcher menu it's like the Start button on Windows. 30. This is Linux we like the command line. So let's get a terminal session opened up. Click the launcher button to pull up the menu, and hover over "More Applications" then over "Terminals" then select "Konsole - Terminal":

20 You'll get something like this: Everyone wants super powers, so we're going to acquire ours in the next step by becoming root. NOTE: This is where I usually start when I'm working on servers for the library: I get a remote terminal session to a server and then obtain root privileges. Then I do what needs to be done and logout. The way we are going to set up the web server on this is similar to updates and package installs that I do on an almost daily basis on my desktop (I run Linux everywhere) and on servers. 31. In the terminal you opened, enter: su 32. when prompted, enter the root password you set when you were setting up user accounts a few steps back. If you forgot it already, you are out of luck. You will have to delete your VM and start over. You can't recover the root password or change it (technically you can, but I'm not going into that, it's not simple to explain). You should now see the command prompt in red and starting with "root@localhost", something like this: 33. Every mainstream Linux distribution supports a repository of software packages built for it and provides a package manager to fetch, install, and remove them. PCLinuxOS uses APT. Other package managers include (but are not limited to) Yellowdog Updater, Modified (Yum) and Pacman. Let's freshen the list of available software packages that APT can fetch for us. Enter: apt-get update (Incidentally, if you want to apply all updates available, you'd enter apt-get upgrade at this point we're not because it'll take too long and we're impatient to get on with the next step). 34. For this exercise, I'm going to install Apache's web server. There are others, but this one is very

21 popular and found all over the internet. It is the web server running on libsytems.clemson.edu (where StaffWeb is found, among others) and on biblio.clemson.edu (where ArcihvesSpace is found, among others). Enter the following to install the Apache HTTP server: apt-get install apache-mpm-prefork The package manager will examine what you want to do and determine any software it depends on that also needs to be installed. It will present you with a summary of actions it needs to take and ask if it is OK to continue. Enter: y for "yes", and it'll go to work. It'll tell you "Done." when it is finished. 35. That installed the web server, but it hasn't been started yet. The PCLinuxOS HTTPD package installs the software and sets it up as a service that can be easily stopped and started. To start it, enter: service httpd start It should say "Starting httpd: " and eventually put "[ OK ]" out next to that. And there you go! The web server is running. You won't usually ever need to start the service manually: it is configured to start automatically when the server boots. We just had to do it this first time since we didn't reboot the server. 36. But how do you get to it? Well, this web server is not available outside the boundaries of your physical computer. Nor is there a DNS name for your VM (DNS is the Domain Name System, it's the world-wide system that turns human friendly names of servers and services, such as into computer-friendly addresses that computers need to intercommunicate). We need to find out the IP address of the VM (IP stands for Internet Protocol, and it is the intercommunication standard upon which the Internet depends. Every computer on the Internet is assigned a unique IP address like a street address for computers. For one computer to talk to another it needs to know the other's IP address). We can find out our VM's IP address by entering this command: ifconfig You should see three network interfaces listed, the externally (to your VM) accessible interface, eth1, the talk-out-only NAT interface, eth0, and the loopback interface, lo. We need to know the address assigned to the eth1 interface. You can find it after "inet adder:" in the list of information displayed: In this case, the address of this VM is Find the address of yours and make a note of it. NOTE: the address assigned to your VM may be different depending on how you set

22 up the DHCP server in VirtualBox's host-only network configuration! 37. Now let's see if that web server is running properly. Back on your host computer (not in your VM), open your favorite web browser and put " followed by the IP address you noted in the previous step in the address bar. I would enter this for my example: You will get a page that says "The Server is alive and working." If you didn't, something went wrong somewhere, but if you did, congratulations! You just successfully installed your first web server! 38. The web server serves content from what is called its "Document Root". Most are configured by default to serve up whatever is in a file called "index.html" if no file is provided in the request URI (the request URI is what you enter in a browser address bar). Back in your VM in the console where you entered all the commands to install the web server, enter this: ls /var/www/html That gives a listing of the files and directories in your web server's document root. You'll see index.html in there. If you are really interested, enter: cat /var/www/html/index.html to see the contents of index.html. Near the bottom of the file listing, you'll see the phrase displayed in the test request you viewed, "The Server is alive and working." The rest of the gobbledygook is HTML markup. If you don't know what HTML is, it is what gives web pages their basic structure and look. You can learn all about HTML here: along with numerous other technologies used in building web pages and applications. For now, though, you are going to build a very simple web page. All web browsers I've ever seen will display plain old text, so you can make a working web page with no HTML in it. That's what you are going to do now. 39. Still in your VM terminal session, enter this: echo "The quick brown fox jumped over the lazy systems programmer." > /var/www/html/qbf.html This will put the line "The quick brown fox jumped over the lazy systems programmer." into the file qbf.html in the web server's document root. 40. Now, back in your "real" computer's web browser, put "/qbf.html" on the end of the test address you entered before. For my example, it is like this: Not surprisingly, you should see the quick brown fox phrase display in your web browser. Congratulations are in order again: you've made a web page!

23 41. The last thing you need to know how to do is shutdown the server. There are (more than) two ways to do it, but I'll let you pick. You can do it the GUI way by clicking the "PC" button to popup the launcher menu, and then choose "Leave" and then "Shut down": OR you can enter this in the console while still root: shutdown -h now like this: Either way, the VM will shutdown and "power off". Now anytime you want to play around with Linux, learn some web development, or take over the world, you can just start VirtualBox, Start your VM, login and have at it! Have fun!

Using VirtualBox ACHOTL1 Virtual Machines

Using VirtualBox ACHOTL1 Virtual Machines Using VirtualBox ACHOTL1 Virtual Machines The steps in the Apache Cassandra Hands-On Training Level One courseware book were written using VMware as the virtualization technology. Therefore, it is recommended

More information

Basic ESXi Networking

Basic ESXi Networking Basic ESXi Networking About vmnics, vswitches, management and virtual machine networks In the vsphere client you can see the network diagram for your ESXi host by clicking Networking on the Configuration

More information

II. Installing Debian Linux:

II. Installing Debian Linux: Debian Linux Installation Lab Spring 2013 In this lab you will be installing Debian Linux in a KVM (Kernel Virtual Machine). You will be guided through a series of steps to setup the network (IP addresses,

More information

Installing Booked scheduler on CentOS 6.5

Installing Booked scheduler on CentOS 6.5 Installing Booked scheduler on CentOS 6.5 This guide will assume that you already have CentOS 6.x installed on your computer, I did a plain vanilla Desktop install into a Virtual Box VM for this test,

More information

Using Virtual Machines

Using Virtual Machines Using Virtual Machines We will use VMs in CIT 130 so that you can access both a Windows 7 and a Linux machine. You will be able to access these from on and off campus (off campus access will require that

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

More information

Amahi Instruction Manual

Amahi Instruction Manual History of Amahi Chapter 1 Installing fedora 12 and Amahi Home Digital Assistant (HDA) Chapter 2 Your DHCP/DNS options Chapter 3 Network Troubleshooting Chapter 4 Getting Started Appendix: Advanced Hard

More information

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish.

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish. Backup. If your computer refuses to boot or load Windows or if you are trying to restore an image to a partition the Reflect cannot lock (See here), and then you will have to start your PC using a rescue

More information

Creating a Linux Virtual Machine using Virtual Box

Creating a Linux Virtual Machine using Virtual Box A. Install Virtual Box: Creating a Linux Virtual Machine using Virtual Box 1. Download the Virtualbox installer http://www.virtualbox.org/wiki/downloads 2. Run the installer and have the installer complete.

More information

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1 VXOA VIRTUAL APPLIANCE KVM Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations In Bridge mode, the virtual appliance only uses mgmt0, wan0, and lan0. This Quick

More information

Installing Oracle 12c Enterprise on Windows 7 64-Bit

Installing Oracle 12c Enterprise on Windows 7 64-Bit JTHOMAS ENTERPRISES LLC Installing Oracle 12c Enterprise on Windows 7 64-Bit DOLOR SET AMET Overview This guide will step you through the process on installing a desktop-class Oracle Database Enterprises

More information

Appendix B Lab Setup Guide

Appendix B Lab Setup Guide JWCL031_appB_467-475.indd Page 467 5/12/08 11:02:46 PM user-s158 Appendix B Lab Setup Guide The Windows Server 2008 Applications Infrastructure Configuration title of the Microsoft Official Academic Course

More information

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux)

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux) Installation of SE S AM E BARCODE virtual machine distribution (Windows / Mac / Linux) Introduction A "virtual machine" is a fake computer within a true one. An underlying software (here VirtualBox) is

More information

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer

Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer Virtual Appliance for VMware Server Getting Started Guide Revision 2.0.2 Warning and Disclaimer This document is designed to provide information about the configuration and installation of the CensorNet

More information

ECT362 Installing Linux Virtual Machine in KL322

ECT362 Installing Linux Virtual Machine in KL322 ECT362 Installing Linux Virtual Machine in KL322 The steps below outline how to install Linux under Windows as a virtual machine. This install uses the Ubuntu 10.04 distribution of Linux along with the

More information

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011

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

More information

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED.

VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. VMWare Workstation 11 Installation MICROSOFT WINDOWS SERVER 2008 R2 STANDARD ENTERPRISE ED. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *If you are using

More information

How to Install Microsoft Windows Server 2008 R2 in VMware ESXi

How to Install Microsoft Windows Server 2008 R2 in VMware ESXi How to Install Microsoft Windows Server 2008 R2 in VMware ESXi I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide support

More information

ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS

ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS Version 1.0, 23 Jan 2014 TABLE OF CONTENTS 1. Installation of images under VMware Player...3 2. Installation of images under VirtualBox...3 3. Downloading

More information

Red Hat Linux 7.2 Installation Guide

Red Hat Linux 7.2 Installation Guide Red Hat Linux 7.2 Installation Guide Ryan Spangler spanglerrp22@uww.edu http://ceut.uww.edu April 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002

More information

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 Version 1.0 November 2008 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754

More information

Linux Server (Web, FTP, File) on Vmware

Linux Server (Web, FTP, File) on Vmware Linux Server (Web, FTP, File) on Vmware Purposes Many people want to use Linux but don't want to spend all their weekend in order to be familiar with this operating system. This file allows to share the

More information

Installing Ubuntu inside Windows using VirtualBox

Installing Ubuntu inside Windows using VirtualBox Installing Ubuntu inside Windows using VirtualBox The screenshots in this tutorial use Ubuntu 12.04, but the same principles apply also to Ubuntu 11.10, 11.04, 10.04, and any future version of Ubuntu.

More information

Setting Up Your FTP Server

Setting Up Your FTP Server Requirements:! A computer dedicated to FTP server only! Linksys router! TCP/IP internet connection Steps: Getting Started Configure Static IP on the FTP Server Computer: Setting Up Your FTP Server 1. This

More information

Creating a Windows XP Virtual Machine using Virtual Box

Creating a Windows XP Virtual Machine using Virtual Box A. Install Virtual Box: Creating a Windows XP Virtual Machine using Virtual Box 1. Download the Virtualbox installer http://www.virtualbox.org/wiki/downloads 2. Run the installer and have the installer

More information

Signiant Agent installation

Signiant Agent installation Signiant Agent installation Release 11.3.0 March 2015 ABSTRACT Guidelines to install the Signiant Agent software for the WCPApp. The following instructions are adapted from the Signiant original documentation

More information

Accessing RCS IBM Console in Windows Using Linux Virtual Machine

Accessing RCS IBM Console in Windows Using Linux Virtual Machine Accessing RCS IBM Console in Windows Using Linux Virtual Machine For Graphics Simulation Experiment, Real Time Applications, ECSE 4760 Quan Wang Department of ECSE, Rensselaer Polytechnic Institute March,

More information

Installing Ubuntu. Obtaining files required

Installing Ubuntu. Obtaining files required Installing Ubuntu Historically, Linux has required its own private space on your hard disk. Achieving this required making some fairly fundamental alterations to the files on your hard disk that could

More information

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

Installing Proview on an Windows XP machine

Installing Proview on an Windows XP machine Installing Proview on an Windows XP machine This is a guide for the installation of Proview on an WindowsXP machine using VirtualBox. VirtualBox makes it possible to create virtual computers and allows

More information

Puppy Linux Installation To a USB Flash Drive How to install Puppy Linux lupu 5.2.8 Lucid to a Flash Drive

Puppy Linux Installation To a USB Flash Drive How to install Puppy Linux lupu 5.2.8 Lucid to a Flash Drive Puppy Linux Installation To a USB Flash Drive How to install Puppy Linux lupu 5.2.8 Lucid to a Flash Drive Puppy Linux Lucid installation tutorial to a vfat format flash drive with a useful application

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Faculty Details. : Assistant Professor ( OG. ),Assistant Professor (OG) Course Details. : B. Tech. Batch : 2010-2014. : Information Technology

Faculty Details. : Assistant Professor ( OG. ),Assistant Professor (OG) Course Details. : B. Tech. Batch : 2010-2014. : Information Technology COURSE FILE (COURSE PLAN) Year : 2012-13 Sem: ODD Faculty Details Name of the Faculty : Mullai.P & Yaashuwanth.C Designation : Assistant Professor ( OG. ),Assistant Professor (OG) Department : Information

More information

MacroLan Azure cloud tutorial.

MacroLan Azure cloud tutorial. MacroLan Azure cloud tutorial. Create a Virtual Machine running Windows This tutorial shows you how easy it is to create an Azure virtual machine (VM) running Windows, using as an example a Windows Server

More information

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1 Virtual Appliances Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V Virtual Appliance Setup Guide for Umbrella Page 1 Table of Contents Overview... 3 Prerequisites... 4 Virtualized Server

More information

Using iscsi with BackupAssist. User Guide

Using iscsi with BackupAssist. User Guide User Guide Contents 1. Introduction... 2 Documentation... 2 Terminology... 2 Advantages of iscsi... 2 Supported environments... 2 2. Overview... 3 About iscsi... 3 iscsi best practices with BackupAssist...

More information

10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition

10 STEPS TO YOUR FIRST QNX PROGRAM. QUICKSTART GUIDE Second Edition 10 STEPS TO YOUR FIRST QNX PROGRAM QUICKSTART GUIDE Second Edition QNX QUICKSTART GUIDE A guide to help you install and configure the QNX Momentics tools and the QNX Neutrino operating system, so you can

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001)

Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001) Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001) Purpose: To be able to Setup your Optus cable connection and share the connection on your home LAN. This howto

More information

ISERink Installation Guide

ISERink Installation Guide ISERink Installation Guide Version 1.1 January 27, 2015 First developed to support cyber defense competitions (CDCs), ISERink is a virtual laboratory environment that allows students an opportunity to

More information

Testing your Linux Virtual Box

Testing your Linux Virtual Box Testing your Linux Virtual Box This document will guide you through downloading and installing the software you need for this offering. Make sure you get a fully working system early in the week so you

More information

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox An Oracle White Paper July 2012 Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox Introduction... 1 Overview... 2 The Concept... 2 The Process Flow... 3 What You Need to Get Started...

More information

Hyper-Cluster. By John D. Lambert, Microsoft SQL Server PFE http://blogs.technet.com/fort_sql

Hyper-Cluster. By John D. Lambert, Microsoft SQL Server PFE http://blogs.technet.com/fort_sql Hyper-Cluster By John D. Lambert, Microsoft SQL Server PFE http://blogs.technet.com/fort_sql Introduction Install and Configure Hyper-V Host Install WSS08 as Hyper-V Guest Install Node1 Install Node2 Configure

More information

Getting Started with ESXi Embedded

Getting Started with ESXi Embedded ESXi 4.1 Embedded vcenter Server 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent

More information

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0 If you re not using Citrix XenCenter 6.0, your screens may vary. VXOA VIRTUAL APPLIANCES Citrix XenServer Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations

More information

How To Set Up A Virtual Host In Apa On A Linux Box On A Windows Xp Or Ipa On An Ubuntu Box On An Ipa (Windows) Or Ipo (Windows Xp) On A Ubora Box On Your Ubora

How To Set Up A Virtual Host In Apa On A Linux Box On A Windows Xp Or Ipa On An Ubuntu Box On An Ipa (Windows) Or Ipo (Windows Xp) On A Ubora Box On Your Ubora Hentzenwerke Whitepaper Series Setting Up Virtual Hosts in Apache (A Tutorial for Windows Web Admins) By Whil Hentzen One common need of Web site administrators is to host multiple Web sites on the same

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

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...

More information

Getting Started Using Project Photon on VMware Fusion/Workstation

Getting Started Using Project Photon on VMware Fusion/Workstation Getting Started Using Project Photon on VMware Fusion/Workstation What is Project Photon? Project Photon is a tech preview of an open source, Linux container host runtime optimized for vsphere. Photon

More information

How to install Radiance on your computer via a virtual machine

How to install Radiance on your computer via a virtual machine How to install Radiance on your computer via a virtual machine This instruction will help to install the lighting simulation tool Radiance on a Windows operated computer. As Radiance runs under Unix/Linux,

More information

NAS 249 Virtual Machine Configuration with VirtualBox

NAS 249 Virtual Machine Configuration with VirtualBox NAS 249 Virtual Machine Configuration with VirtualBox Configure and run Virtual Machines on ASUSTOR Portal with VirtualBox A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

Troubleshooting / FAQ

Troubleshooting / FAQ Troubleshooting / FAQ Routers / Firewalls I can't connect to my server from outside of my internal network. The server's IP is 10.0.1.23, but I can't use that IP from a friend's computer. How do I get

More information

Backup & Disaster Recovery Appliance User Guide

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

More information

How to Test Out Backup & Replication 6.5 for Hyper-V

How to Test Out Backup & Replication 6.5 for Hyper-V How to Test Out Backup & Replication 6.5 for Hyper-V Mike Resseler May, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication

More information

Penetration Testing LAB Setup Guide

Penetration Testing LAB Setup Guide Penetration Testing LAB Setup Guide (Internal Attacker - Beginner version) By: magikh0e - magikh0e@ihtb.org Last Edit: July 07 2012 This guide assumes a few things... 1. You have installed Backtrack before

More information

12Planet Chat end-user manual

12Planet Chat end-user manual 12Planet Chat end-user manual Document version 1.0 12Planet 12Planet Page 2 / 13 Table of content 1 General... 4 1.1 How does the chat work?... 4 1.2 Browser Requirements... 4 1.3 Proxy / Firewall Info...

More information

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications Important Applies to Windows 7 Professional, Ultimate, Enterprise As of April 8, 2014, technical

More information

IT Quick Reference Guides Using Windows 7

IT Quick Reference Guides Using Windows 7 IT Quick Reference Guides Using Windows 7 Windows Guides This sheet covers many of the basic commands for using the Windows 7 operating system. WELCOME TO WINDOWS 7 After you log into your machine, the

More information

Cleaning your Windows 7, Windows XP and Macintosh OSX Computers

Cleaning your Windows 7, Windows XP and Macintosh OSX Computers Cleaning your Windows 7, Windows XP and Macintosh OSX Computers A cleaning of your computer can help your computer run faster and make you more efficient. We have listed some tools and how to use these

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

The BackTrack Successor

The BackTrack Successor SCENARIOS Kali Linux The BackTrack Successor On March 13, Kali, a complete rebuild of BackTrack Linux, has been released. It has been constructed on Debian and is FHS (Filesystem Hierarchy Standard) complaint.

More information

Building a Penetration Testing Virtual Computer Laboratory

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

More information

Okay, good. He's gonna release the computers for you and allow you to log into NSLDS.

Okay, good. He's gonna release the computers for you and allow you to log into NSLDS. Welcome to the NSLDS hands-on session. My name is Larry Parker. I'm from the Department of Education NSLDS. Today, I have with me a whole host of folks, so we're gonna make sure that if you have any questions

More information

An Oracle White Paper April 2010. How to Install the Oracle Solaris 10 Operating System on x86 Systems

An Oracle White Paper April 2010. How to Install the Oracle Solaris 10 Operating System on x86 Systems An Oracle White Paper April 2010 How to Install the Oracle Solaris 10 Operating System on x86 Systems Introduction... 1 Installation Assumptions... 2 Check the Hardware Compatibility List... 2 Basic System

More information

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8 CONTENTS SECTION 1 Check current version of Remote Desktop Connection for Mac.. Page 2 SECTION 2 Remove Old Version Remote Desktop Connection..Page 8 SECTION 3 Download and Install Remote Desktop Connection

More information

Linux Development Environment Description Based on VirtualBox Structure

Linux Development Environment Description Based on VirtualBox Structure Linux Development Environment Description Based on VirtualBox Structure V1.0 1 VirtualBox is open source virtual machine software. It mainly has three advantages: (1) Free (2) compact (3) powerful. At

More information

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

More information

Virtual machine W4M- Galaxy: Installation guide

Virtual machine W4M- Galaxy: Installation guide Virtual machine W4M- Galaxy: Installation guide Christophe Duperier August, 6 th 2014 v03 This document describes the installation procedure and the functionalities provided by the W4M- Galaxy virtual

More information

Virtualization Technology (or how my Windows computer gave birth to a bunch of Linux computers)

Virtualization Technology (or how my Windows computer gave birth to a bunch of Linux computers) Virtualization Technology (or how my Windows computer gave birth to a bunch of Linux computers) The purpose of this document is to walk you through creating a Linux Virtual Machine (a guest Operating System)

More information

CPE111 COMPUTER EXPLORATION

CPE111 COMPUTER EXPLORATION CPE111 COMPUTER EXPLORATION BUILDING A WEB SERVER ASSIGNMENT You will create your own web application on your local web server in your newly installed Ubuntu Desktop on Oracle VM VirtualBox. This is a

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

F-Secure Internet Gatekeeper Virtual Appliance

F-Secure Internet Gatekeeper Virtual Appliance F-Secure Internet Gatekeeper Virtual Appliance F-Secure Internet Gatekeeper Virtual Appliance TOC 2 Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper Virtual Appliance.3 Chapter 2: Deployment...4

More information

Create a virtual machine at your assigned virtual server. Use the following specs

Create a virtual machine at your assigned virtual server. Use the following specs CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine

More information

Novell Open Workgroup Suite

Novell Open Workgroup Suite Novell Open Workgroup Suite Small Business Edition QUICK START GUIDE September 2007 v1.5 Page 1 Introduction This Quick Start explains how to install the Novell Open Workgroup Suite software on a server.

More information

Parallels Desktop for Mac

Parallels Desktop for Mac Parallels Software International, Inc. Parallels Desktop for Mac Quick Start Guide 3.0 (c) 2005-2007 Copyright 2006-2007 by Parallels Software International, Inc. All rights reserved. Parallels and Parallels

More information

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine

Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Quick Deployment Step-by-step instructions to deploy Oracle Big Data Lite Virtual Machine Version 3.0 Please note: This appliance is for testing and educational purposes only; it is unsupported and not

More information

From a Finder window choose Applications (shown circled in red) and then double click the Tether icon (shown circled in green).

From a Finder window choose Applications (shown circled in red) and then double click the Tether icon (shown circled in green). From a Finder window choose Applications (shown circled in red) and then double click the Tether icon (shown circled in green). You will be presented with a dialog box asking for you to enter an ad-hoc

More information

My Secure Backup: How to reduce your backup size

My Secure Backup: How to reduce your backup size My Secure Backup: How to reduce your backup size As time passes, we find our backups getting bigger and bigger, causing increased space charges. This paper takes a few Newsletter and other articles I've

More information

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next. Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services

More information

Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux

Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux NOTE: If you need more information regarding the installation process for other distributions

More information

Using VMWare to Capture Linux Installation Screen Shots

Using VMWare to Capture Linux Installation Screen Shots Chapter X: Using VMWare to Capture Linux Installation Screen Shots 1 Using VMWare to Capture Linux Installation Screen Shots How do you capture screen shots of an operating system installation? There are

More information

Installing an open source version of MateCat

Installing an open source version of MateCat Installing an open source version of MateCat This guide is meant for users who want to install and administer the open source version on their own machines. Overview 1 Hardware requirements 2 Getting started

More information

VMware/Hyper-V Backup Plug-in User Guide

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,

More information

OneDrive for Business FAQ s Updated 6/19/14

OneDrive for Business FAQ s Updated 6/19/14 OneDrive for Business FAQ s Updated 6/19/14 What is OneDrive for Business? OneDrive for Business is an online service that provides resources for file storage, collaboration, and communication. It provides

More information

Installing and configuring Ubuntu Linux 9.04

Installing and configuring Ubuntu Linux 9.04 Installing and configuring Ubuntu Linux 9.04 Table of Contents Introduction...2 Getting Started...2 Downloading Ubuntu...2 Installing Ubuntu...5 Dual Boot - Install inside Windows - The easiest solution...5

More information

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM

Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM Installing Sun's VirtualBox on Windows XP and setting up an Ubuntu VM laptop will need to have 10GB of free space to install download the latest VirtualBox software from www.sun.com make sure you pick

More information

User Guide. Cloud Gateway Software Device

User Guide. Cloud Gateway Software Device User Guide Cloud Gateway Software Device This document is designed to provide information about the first time configuration and administrator use of the Cloud Gateway (web filtering device software).

More information

How To Create An Intranet Site On A School Computer (For A School) On A Mac Or Pc Or Ipad (For Pc Or Mac) On An Ipad Or Ipa (For Mac) (For Ipa) On Pc

How To Create An Intranet Site On A School Computer (For A School) On A Mac Or Pc Or Ipad (For Pc Or Mac) On An Ipad Or Ipa (For Mac) (For Ipa) On Pc Wazza s QuickStart A School Intranet using any Mac This document provides information about setting up a school Intranet with nothing more than a basic Macintosh as an Intranet server. The procedure described

More information

SETTING UP A LAMP SERVER REMOTELY

SETTING UP A LAMP SERVER REMOTELY SETTING UP A LAMP SERVER REMOTELY It s been said a million times over Linux is awesome on servers! With over 60 per cent of the Web s servers gunning away on the mighty penguin, the robust, resilient,

More information

QNX Software Development Platform 6.6. Installation Guide

QNX Software Development Platform 6.6. Installation Guide QNX Software Development Platform 6.6 QNX Software Development Platform 6.6 Installation Guide Table of Contents Table of Contents Preface: About This Guide...iv Typographical conventions...v Before you

More information

Installing Windows On A Macintosh Or Linux Using A Virtual Machine

Installing Windows On A Macintosh Or Linux Using A Virtual Machine Installing Windows On A Macintosh Or Linux Using A Virtual Machine At Shaw Programs, the software we develop is made using Microsoft Access. As with all Microsoft Software it requires Windows in order

More information

Lab - Dual Boot - Vista & Windows XP

Lab - Dual Boot - Vista & Windows XP Lab - Dual Boot - Vista & Windows XP Brought to you by RMRoberts.com After completing this lab activity, you will be able to: Install and configure a dual boot Windows XP and Vista operating systems. Explain

More information

Section 5 Configuring the Partition for Enterprise Output Manager (EOM)

Section 5 Configuring the Partition for Enterprise Output Manager (EOM) Section 5 Configuring the Partition for Enterprise Output Manager (EOM) The Enterprise Output Manager (EOM) partition runs on an enterprise partition platform (EPP) and is intended for running the product.

More information

TimeIPS Server. IPS256T Virtual Machine. Installation Guide

TimeIPS Server. IPS256T Virtual Machine. Installation Guide TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision

More information

Getting Started With Parallels Desktop 8

Getting Started With Parallels Desktop 8 Getting Started With Parallels Desktop 8 Copyright 1999-2012 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH. Vordergasse 59 CH8200 Schaffhausen Switzerland

More information

HelpSystems Web Server User Guide

HelpSystems Web Server User Guide HelpSystems Web Server User Guide Copyright Copyright HelpSystems, LLC. Robot is a division of HelpSystems. HelpSystems Web Server, OPAL, OPerator Assistance Language, Robot ALERT, Robot AUTOTUNE, Robot

More information

IT-ADVENTURES PLAYGROUND (ISERINK) Remote Setup Guide IOWA STATE UNIVERSITY INFORMATION ASSURANCE CENTER

IT-ADVENTURES PLAYGROUND (ISERINK) Remote Setup Guide IOWA STATE UNIVERSITY INFORMATION ASSURANCE CENTER IT-ADVENTURES PLAYGROUND (ISERINK) Remote Setup Guide IOWA STATE UNIVERSITY INFORMATION ASSURANCE CENTER Spring 2014 Gaining access to your systems Since ISERink runs on a simulated internet provided by

More information

XenDesktop Implementation Guide

XenDesktop Implementation Guide Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation

More information