Molecular Dynamics Simulations with Applications in Soft Matter Handout 1 Outfitting Your PC for Scientific Computing

Size: px
Start display at page:

Download "Molecular Dynamics Simulations with Applications in Soft Matter Handout 1 Outfitting Your PC for Scientific Computing"

Transcription

1 Dr. Martin O. Steinhauser University of Basel Graduate Lecture Spring Semester 2014 Molecular Dynamics Simulations with Applications in Soft Matter Handout 1 Outfitting Your PC for Scientific Computing Friday, 21 st February Introduction To understand molecular dynamics simulation you have to work with simulation code. This means reading it, modifying it, maybe writing it from scratch. It also means compiling it, running it, and analyzing the results. You will probably be provided with some example codes during the lecture. Some code is just for illustration and practicing certain techniques, some code performs simulations and some of it performs analysis of results. Hence, you need a way to 1. Look at the code, 2. edit it, 3. compile and run it. 1.1 Outfitting your PC / Laptop It is assumed in this course that all students have access to at least a Windows PC (better: a Linux- System) and some familiarity with Windows. If you don t have a PC or laptop on your own you need to get a student account at university. Some students may already have some Unix experience. I feel that it is important for every student of this class to learn at least a minimum about coding in a Unix-like environment. Probably there is no estimate for such a number, but nearly 100% of serious research using molecular dynamics is conducted and tested under Unix (which nowadays is mostly Linux). If you have access to a Linux PC, you needn t do anything more; you are likely ready to begin running code. For all others, we provide here, in a nutshell, what you can do to set-up your Windows PC or laptop for running simulation code during this course: 1. Install a free Linux distribution. Most popular are probably (a) Suse Linux ( (b) Ubuntu ( and (c) Fedora ( 1

2 You find installation instructions for all of these packages on the corresponding websites. Therefore, we do not give explicit installation instructions for installing native Linux distributions but we do note that sometimes considerable administration experience with Unix/Linux environments is necessary to really get things running. On the other hand, in recent years, many distributions have become very user-friendly and provide installer packages that take care of (almost) all administration necessary to obtain a running Linux system, including network settings for internet connection. For preparing software in this course, I use the UNIX-environment provided with the MAC OS X system (Mavericks, Version at the time of writing). Any other Linux system will do equally well for programming, with slight differences in handling and managing the system, also depending on your experience as a system administrator. If you are experienced in installing Linux distributions you can also consider using the free Vmware Player ( as a virtual machine on your Windows PC or laptop, and have running native Linux in a virtual machine on top of Windows. For good performance, this requires a well-equipped PC or laptop in terms of hardware. For installing Vmware Player, we don t provide any detailed instructions. 2. Install Cygwin ( on Windows. Cygwin is freely available. This provides a Linux-like environment on top of Windows. It is relatively small, easy to manage, and can be simply uninstalled later, if you wish, like any other Windows application. It will give you almost all the functionality of a full Linux PC right in Windows, and it is certainly adequate for this course. Cygwin is a port of POSIX (a Unix standard for commands and parameters) compatible software to the Windows system. Cygwin has been designed as dynamic library which ports from POSIX-API to Windows API. Besides a number of developer tools, there is a variety of software available which can be run under windows, e.g. a full X-Windows server which allows for running graphic applications from the Unix world. As I feel that some of the students might opt for this second choice, because it requires minimal effort for a spectacular amount of functionality, we give here a very brief description of the download procedure Installing Cygwin Download setup.exe from This program is used for both, downloading and set-up as well as for updating the Cygwin environment. Execute this file after download. A wizard appears which leads you through the rest of the installation process with the following screens: Cygwin Net Release Setup Program: Click the Next button. Choose A Download Source: Select Install from Internet (first choice); click Next button. Select Root Install Directory: Use the default choice C:\cygwin or pick your own directory. Note, that you should avoid blanks within directory install paths, e.g. you should avoid something like C:\\Program Files (x86) and rather use an install path without blanks. This avoids problems as in Unix paths which are used by Cygwin, no blanks are allowed, or rather have to be masked using the backslash, like in 2

3 C:\\Program\ Files\ (x86) which makes things rather awkward. Under Cygwin, when typing the command cd /cygwin, the directory /cygwin (please note the slash here vs. backslash in Windows directory structures) allows you to access all Windows directories in a Unix-like fashion by e.g. typing cd /cygwin/c/windows which takes you to the directory C:\Windows Select Your Internet Connection: Should be direct if you are on campus but you can also choose a proxy server here. Choose a Download Site: Select a server close to your location, i.e. one within Europe or Germany. You can also add servers to this list by entering a new server into the field User URL and pressing Add. Select Local Package Directory: Use e.g. C:\temp Select Packages: Here is where you get to choose what package to include in the Cygwin installation. There are hundreds if not thousands of packages, so they are grouped in categories. Each category has the word Default next to it. That means you will be given the default set of packages from each category, which corresponds to a minimal installation. We will need more than that so you should always select a full installation with the following categories by clicking directly on the word Default next to each category, changing it to the word Install: Devel Doc Editors Graphics Math Publishing Shells Text X11 The only crucial category is Devel, because this contains the compiler gcc. The others will give you some nice functionality. If you don t want to bother with selecting packages you can simply select everything for full installation by clicking on Default next to the category All, right on top of the list. In this case, when you click Next, the download of packages starts and can take up to an hour depending on the speed of your internet connection. Finalize: Here you select whether an icon is put on the desktop and/or the Windows Start menu. Note, that under the Windows operating system, you may need administrator privileges to install software. 3

4 2 The GNU Scientific Library GSL For some programs later in the course we might need this library primarily for its high-quality pseudorandom number generators. To learn more about GSL and its other useful features, visit To install this library do the following steps: 1. Download the GSL source code package, currently (Feb. 2014) gsl-1.16.tar.gz (released on 19 July 2013) from ftp://ftp.gnu.org/gnu/gsl/. 2. Unpack it. Open a Cygwin terminal and enter the following command: tar zvxf gsl-1.16.tar.gz A large number of files will be extracted into the directory called gsl Change into this new directory by typing: cd gsl If you like, you can follow the install instructions in the file INSTALL. You can browse to this file with Windows Explorer to read it, or read it from the terminal with the command more INSTALL 5. If you don t understand the file INSTALL, just type the following commands:./configure make make install You are done! 4

5 GSL has extensive extensive documentation available both online and as part of the distribution. The command info gsl-ref will display a text-only hyperlinked manual with which you can learn about using the GSL in standard C programs. Even if you choose not to write in C for now, it is useful to have this library installed for a few of the programs I might be giving you during this course. 3 Summary checklist for setting up your PC / Laptop I provide here a checklist to help you get your PC or laptop ready for this course. Everything you do can be easily undone. If you already have access to a Linux PC, MAC computer or Unix workstation, you of course do not need to install Cygwin. Please note that, under Windows, you need administrator access on your PC to install software. For Windows Users: Download and install Cygwin from Detailed instructions are above. Download, compile and install the GNU Scientific Library GSL, according to the instructions above. For Linux / Unix users: Download, compile and install the GNU Scientific Library GSL, according to the instructions above. During the course, I may decide to convince you to install some other free programs, mostly for visualization purposes, but the above suggestions are enough to get you started. 5

http://www.cs.northwestern.edu/academics/courses/211/html/cygwin.html

http://www.cs.northwestern.edu/academics/courses/211/html/cygwin.html 1 of 6 3/28/2010 8:04 AM Cygwin Notes Home Class Info Links Lectures Newsgroup Assignments This course uses the gcc compiler and, to a lesser extent, the Unix or Linux environment, both for consistency,

More information

Cygwin: getting the setup tool

Cygwin: getting the setup tool Cygwin: getting the setup tool Free, almost complete UNIX environment emulation for computers running MS Windows. Very handy. 1 First, go to the Cygwin Site: http://www.cygwin.org/cygwin/ Download the

More information

Installing the Cygwin UNIX Emulator on Windows 7

Installing the Cygwin UNIX Emulator on Windows 7 Where to do Some Basic Background Reading Start here for all things Cygwin: http://cygwin.com/install.html Note that these instructions include the installation steps we use on the SM1094 (Computational

More information

Installing (1.8.7) 9/2/2009. 1 Installing jgrasp

Installing (1.8.7) 9/2/2009. 1 Installing jgrasp 1 Installing jgrasp Among all of the jgrasp Tutorials, this one is expected to be the least read. Most users will download the jgrasp self-install file for their system, doubleclick the file, follow the

More information

Cygwin Installation s Guide

Cygwin Installation s Guide Cygwin Installation s Guide Introduction Cygwin is a Linux-like environment for Windows distributed online (http://cygwin.com) under the GNU General Public License (GPL). It consist of two parts: A DLL

More information

PuTTY/Cygwin Tutorial. By Ben Meister Written for CS 23, Winter 2007

PuTTY/Cygwin Tutorial. By Ben Meister Written for CS 23, Winter 2007 PuTTY/Cygwin Tutorial By Ben Meister Written for CS 23, Winter 2007 This tutorial will show you how to set up and use PuTTY to connect to CS Department computers using SSH, and how to install and use the

More information

A survival guide to Radiance on Windows. When you have (almost) no choice :-(

A survival guide to Radiance on Windows. When you have (almost) no choice :-( A survival guide to Radiance on Windows When you have (almost) no choice :-( 3 Why am I doing this? OS Monopoly PCs come with Windows pre-installed Corporate power (somebody else has decided for you) Integration

More information

Getting Started Guide

Getting Started Guide Browser Appliance Getting Started Guide The Browser Appliance is a free virtual machine (available from the VMware Technology Network at www.vmware.com/vmtn/vm) that allows you to browse the Internet securely

More information

CS197U: A Hands on Introduction to Unix

CS197U: A Hands on Introduction to Unix CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science jddevaughn@cs.umass.edu 1 Reminders After

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

Cloud Connector for embedded Evaluation using Cygwin

Cloud Connector for embedded Evaluation using Cygwin Cloud Connector for embedded Evaluation using Cygwin 1 Document History Date Version Change Description 12/19/2013 0.1 First draft 01/15/2014 0.2 FAE and support review Copyright 2014 Digi International

More information

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing

More information

ilaw Installation Procedure

ilaw Installation Procedure ilaw Installation Procedure This guide will provide a reference for a full installation of ilaw Case Management Software. Contents ilaw Overview How ilaw works Installing ilaw Server on a PC Installing

More information

Snow Active Directory Discovery

Snow Active Directory Discovery Product Snow Active Directory Discovery Version 1.0 Release date 2014-04-29 Document date 2014-04-29 Snow Active Directory Discovery Installation & Configuration Guide Page 2 of 9 This document describes

More information

How to install and run. in Microsoft Windows Environment

How to install and run. in Microsoft Windows Environment How to install and run AIRES - Ai r Sh o w e r Si m u l a t i o n s P r o g r a m in Microsoft Windows Environment by Pournaras Efthimios P. Student of Nuclear & Particles Physics National & Kapodistrian

More information

Building graphic-rich and better performing native applications. Pro. Android C++ with the NDK. Onur Cinar

Building graphic-rich and better performing native applications. Pro. Android C++ with the NDK. Onur Cinar Building graphic-rich and better performing native applications Pro Android C++ with the NDK Onur Cinar For your convenience Apress has placed some of the front matter material after the index. Please

More information

EMBnet Norway User introduction pack (instructions and services overview) George Magklaras Head Systems Engineer Version 3.

EMBnet Norway User introduction pack (instructions and services overview) George Magklaras Head Systems Engineer Version 3. EMBnet Norway User introduction pack (instructions and services overview) George Magklaras Head Systems Engineer Version 3.2 (February 2008) How to connect a Windows workstation to the EMBnet servers using

More information

Short Manual Intellect v.4.7.6 SP2 module Unipos Contents:

Short Manual Intellect v.4.7.6 SP2 module Unipos Contents: Short Manual Intellect v.4.7.6 SP2 module Unipos Contents: 1. Software Installation... 2 2. Hardware Configuration... 12 3. System Dispatching... 14 3.1. Create dispatching objects... 14 3.2. Graphical

More information

How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment?

How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment? Author Janice Hong Version 1.0.0 Date Mar. 2014 Page 1/56 How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment? Application Note The 32-bit operating system

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Installing C++ compiler for CSc212 Data Structures

Installing C++ compiler for CSc212 Data Structures for CSc212 Data Structures WKhoo@gc.cuny.edu Spring 2010 1 2 Testing Mac 3 Why are we not using Visual Studio, an Integrated Development (IDE)? Here s several reasons: Visual Studio is good for LARGE project.

More information

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server page of 4 oit UMass Office of Information Technologies Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server This includes Web sites on: https://webadmin.oit.umass.edu/~user http://people.umass.edu/

More information

Deploying NetSupport Manager. or NetSupport School. Overview. Available Installers. There are 4 main ways to install NSM or NSS, these are as follows:

Deploying NetSupport Manager. or NetSupport School. Overview. Available Installers. There are 4 main ways to install NSM or NSS, these are as follows: Deploying NetSupport Manager or NetSupport School Overview There are 4 main ways to install NSM or NSS, these are as follows: Manual Installation Silent/Unattended Installation Using the NetSupport Deployment

More information

Getting Started with Command Prompts

Getting Started with Command Prompts Getting Started with Command Prompts Updated March, 2013 Some courses such as TeenCoder : Java Programming will ask the student to perform tasks from a command prompt (Windows) or Terminal window (Mac

More information

How To Run Linux On Windows 7 (For A Non-Privileged User) On A Windows 7 Computer (For Non-Patty) On Your Computer (Windows) On An Unix Computer (Unix) On Windows) On The Same

How To Run Linux On Windows 7 (For A Non-Privileged User) On A Windows 7 Computer (For Non-Patty) On Your Computer (Windows) On An Unix Computer (Unix) On Windows) On The Same Working from Home Tools and Technologies for Improving Your Programming Environment Daniel J. Hood danielhood@umbc.edu Overview Tools for MS Windows (and others OSs) SSH SCP X Windows Tunneling X Connections

More information

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities

CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities CONNECTING TO DEPARTMENT OF COMPUTER SCIENCE SERVERS BOTH FROM ON AND OFF CAMPUS USING TUNNELING, PuTTY, AND VNC Client Utilities DNS name: turing.cs.montclair.edu -This server is the Departmental Server

More information

AzMERIT Secure Browser Installation Manual For Technology Coordinators

AzMERIT Secure Browser Installation Manual For Technology Coordinators AzMERIT Secure Browser Installation Manual For Technology Coordinators 2014-2015 Revised January 5, 2015 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information

More information

Installation Guidelines for NS2 on Windows

Installation Guidelines for NS2 on Windows Installation Guidelines for NS2 on Windows 1) Requirements a. Free disk space of 5GB required b. Minimum 256MB RAM suggested 2) Assumptions a. Windows installed in Drive partition C 3) Installation Instructions

More information

Mac - Juniper Remote Desktop Instructions

Mac - Juniper Remote Desktop Instructions Mac - Juniper Remote Desktop Instructions How to Set up & Remotely Connect to your Hospital Windows Workstation from your Remote Macintosh Computer Using the JSAM Feature of Juniper. Note: These instructions

More information

Nipper Studio Beginner s Guide

Nipper Studio Beginner s Guide Nipper Studio Beginner s Guide Multiple Award Winning Security Software Version 2.1 Published March 2015 Titania Limited 2014. All Rights Reserved This document is intended to provide advice and assistance

More information

There s a variety of software that can be used, but the approach described here uses freely available Cygwin software: (1) Cygwin/X (2) Cygwin/openssh

There s a variety of software that can be used, but the approach described here uses freely available Cygwin software: (1) Cygwin/X (2) Cygwin/openssh To do this you need two pieces of software: (1) An X server running on your PC, and (2) A secure shell for making a network connection to a UNIX host. There s a variety of software that can be used, but

More information

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual Setting up VMware Server v1 for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

NoMachine (free version) Installation Guide

NoMachine (free version) Installation Guide pproved by: NoMachine (free version) Installation Guide Page 1 of 10 pproved by: Table of Contents 1. NoMachine Installation Guide 3 1.1. Resources on the Web 3 1.2. Prerequisites 3 1.3. Compatibility

More information

How to Restore a Linux Server Using Bare Metal Restore

How to Restore a Linux Server Using Bare Metal Restore How to Restore a Linux Server Using Bare Metal Restore This article refers to firmware version 5.4 and higher, and the Barracuda Linux Backup Agent 5.4 and higher. Use the steps in this article to restore

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

IS L06 Protect Servers and Defend Against APTs with Symantec Critical System Protection

IS L06 Protect Servers and Defend Against APTs with Symantec Critical System Protection IS L06 Protect Servers and Defend Against APTs with Symantec Critical System Protection Description Lab flow At the end of this lab, you should be able to Discover how to harness the power and capabilities

More information

Table of Contents. Online backup Manager User s Guide

Table of Contents. Online backup Manager User s Guide Table of Contents Backup / Restore VMware Virtual Machines... Error! Bookmark not defined. Backup virtual machines running on VMware ESXi / ESX Server with VDDK / non VDDK... 2 Requirements and recommendations...

More information

Pearl Echo Installation Checklist

Pearl Echo Installation Checklist Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions

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

An introduction to Cygwin

An introduction to Cygwin Booth Engineering Center for Advanced Technology (BECAT) Seminar An introduction to Cygwin Lili He What is Cygwin? Cygwin = GNU + Cygnus + Windows. It is a collection of tools to allow Windows to act like

More information

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server How to Setup and Connect to an FTP Server Using FileZilla The ability to store data on a server and being able to access the data from anywhere in the world has allowed us to get rid of external flash

More information

and $HOME points to /home/username (your local login name) and this c:\cygwin\home\username to windows.

and $HOME points to /home/username (your local login name) and this c:\cygwin\home\username to windows. Installing cygwin/openssh One question to think about at the start of an install is whether you want to download cygwin's files to your desktop or whether you want to install online. It's only a matter

More information

simplify monitoring Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures

simplify monitoring Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures simplify monitoring Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures Simplify Monitoring Installation Guide 11.4 (v11.4) Document Date: February 2015 www.tricerat.com

More information

École des Ponts Paristech DSI. Installing OpenVPN

École des Ponts Paristech DSI. Installing OpenVPN École des Ponts Paristech DSI Installing OpenVPN Introduction... 3 Windows... 3 Preamble... 3 Installation of OpenVPN... 3 Use... 11 Linux... 13 Install... 13 Use... 14 Mac OS X... 14 Install... 14 Use...

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

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

Windows Server 2008 Hyper-V, Windows Server 2008 Server Core Installation Notes

Windows Server 2008 Hyper-V, Windows Server 2008 Server Core Installation Notes Windows Server 2008 Hyper-V, Hyper-V Server 2008, and Windows Server 2008 Server Core Installation Notes Installing Dell UPS Management Software on a Hypervisor-Based Server Environment w w w. d e l l.

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems A+ Guide to Managing and Maintaining Your PC, 7e Chapter 2 Introducing Operating Systems Objectives Learn about the various operating systems and the differences between them Learn about the components

More information

Installation of ADS SiMKit startup script and designkit on Windows for SiMKit version 4.4

Installation of ADS SiMKit startup script and designkit on Windows for SiMKit version 4.4 Installation of ADS SiMKit startup script and designkit on Windows for SiMKit version 4.4 Introduction This document explains how to prepare Windows environment for ADS simulations with SiMKit. This includes

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Embedded Linux development training 4 days session

Embedded Linux development training 4 days session Embedded Linux development training 4 days session Title Overview Duration Trainer Language Audience Prerequisites Embedded Linux development training Understanding the Linux kernel Building the Linux

More information

Installing Eclipse C++ for Windows

Installing Eclipse C++ for Windows Installing Eclipse C++ for Windows I. Introduction... 2 II. Installing and/or Enabling the 32-bit JRE (Java Runtime Environment)... 2 A. Windows 32-bit Operating System Environment... 2 B. Windows 64-bit

More information

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11.

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11. Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures Goliath Performance Monitor Installation Guide v11.5 (v11.5) Document Date: March 2015 www.goliathtechnologies.com

More information

The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended.

The Eclipse Classic version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended. Installing the SDK This page describes how to install the Android SDK and set up your development environment for the first time. If you encounter any problems during installation, see the Troubleshooting

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

OPERATING SYSTEMS Software in the Background. Chapter 2

OPERATING SYSTEMS Software in the Background. Chapter 2 OPERATING SYSTEMS Software in the Background Chapter 2 Objectives Describe the functions of an Operating System Explain the basics of a personal computer operating system Describe the advantages of a graphical

More information

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc.

Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc. Technology in Action Alan Evans Kendall Martin Mary Anne Poatsy Eleventh Edition Technology in Action Chapter 4 System Software: The Operating System, Utility Programs, and File Management. Chapter Topics

More information

CODESOFT Installation Scenarios

CODESOFT Installation Scenarios CODESOFT Installation Scenarios NOTES: CODESOFT is a separate install from existing versions of CODESOFT. You will need to make note of your current settings (default directories, etc.) so you can duplicate

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Installing and Configuring Lexia Reading Desktop Software

Installing and Configuring Lexia Reading Desktop Software Page 1 of 7 Installing and Configuring Lexia Reading Desktop Software Summary: Learn how to install and configure Lexia Reading desktop software, including Lexia Early Reading, Lexia Primary Reading, and

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

More information

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA1826 Designing Cloud Computing Solutions. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA1826 Designing Cloud Computing Solutions Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.

Reflection DBR USER GUIDE. Reflection DBR User Guide. 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip. Reflection DBR USER GUIDE 995 Old Eagle School Road Suite 315 Wayne, PA 19087 USA 610.964.8000 www.evolveip.net Page 1 of 1 Table of Contents Overview 3 Reflection DBR Client and Console Installation 4

More information

Inventory Computers Using TechAtlas for Libraries

Inventory Computers Using TechAtlas for Libraries Inventory Computers Using TechAtlas for Libraries WebJunction.org 9/11/2008 Table of Contents Introduction... 3 Additional Resources... 3 Your Computer Login... 3 TechAtlas Login... 3 Browser Options...

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

More information

SYMANTEC BACKUPEXEC2010 WITH StorTrends

SYMANTEC BACKUPEXEC2010 WITH StorTrends SYMANTEC BACKUPEXEC2010 WITH StorTrends 1 Index 1. Introduction 3 2. Test Environment 3 3. System Requirement 4 4. Storage Requirement 4 5. Installation of Symantec Backup EXEC 2010 4 6. Installing Backup

More information

ERIKA Enterprise pre-built Virtual Machine

ERIKA Enterprise pre-built Virtual Machine ERIKA Enterprise pre-built Virtual Machine with support for Arduino, STM32, and others Version: 1.0 July 2, 2014 About Evidence S.r.l. Evidence is a company operating in the field of software for embedded

More information

Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076.

Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. Code::Block manual for CS101x course Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. April 9, 2014 Contents 1 Introduction 1 1.1 Code::Blocks...........................................

More information

FreeFlow Accxes Print Server V15.0 August 2010 701P50924. Xerox FreeFlow Accxes Print Server Drivers and Client Tools Software Installation Guide

FreeFlow Accxes Print Server V15.0 August 2010 701P50924. Xerox FreeFlow Accxes Print Server Drivers and Client Tools Software Installation Guide FreeFlow Accxes Print Server V15.0 August 2010 701P50924 Xerox FreeFlow Accxes Print Server Drivers and Client Tools Software 2010 Xerox Corporation. All rights reserved. XEROX and Xerox and Design, 6204,

More information

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved. Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

PowerPanel Business Edition Installation Guide

PowerPanel Business Edition Installation Guide PowerPanel Business Edition Installation Guide For Automatic Transfer Switch Rev. 5 2015/12/2 Table of Contents Introduction... 3 Hardware Installation... 3 Install PowerPanel Business Edition Software...

More information

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC Installing Secure Shell (SSH) Client Nicholas Fitzkee Mississippi State University The first thing you will need is SSH. SSH is a program for accessing

More information

Assessment of Student Performance and Progress. Secure Browser Installation Manual

Assessment of Student Performance and Progress. Secure Browser Installation Manual CALIFORNIA Assessment of Student Performance and Progress Secure Browser Installation Manual Winter/Spring 2015 Smarter Balanced Summative Assessments Smarter Balanced Interim Assessments Updated May 1,

More information

Enterprize Setup Checklist

Enterprize Setup Checklist Enterprize Setup Checklist Corporate Server 1) Install Windows IIS and FTP 2) Install M$ MSDE Restart Windows 3) Install M$ Image Wizard 4) Install Enterprize Copy SQL databases into Microsoft SQL data

More information

1. Install a Virtual Machine... 2. 2. Download Ubuntu Ubuntu 14.04.1 LTS... 2. 3. Create a New Virtual Machine... 2

1. Install a Virtual Machine... 2. 2. Download Ubuntu Ubuntu 14.04.1 LTS... 2. 3. Create a New Virtual Machine... 2 Introduction APPLICATION NOTE The purpose of this document is to explain how to create a Virtual Machine on a Windows PC such that a Linux environment can be created in order to build a Linux kernel and

More information

Option 1 Using the Undelete PushInstall Wizard.

Option 1 Using the Undelete PushInstall Wizard. Installing Undelete on Your Network Undelete can be installed in a variety of ways. If you are installing Undelete onto a single computer, no special actions are needed. Simply double-click the Undelete

More information

Massey University Follow Me Printer Setup for Linux systems

Massey University Follow Me Printer Setup for Linux systems Massey University Follow Me Printer Setup for Linux systems RedHat and Debian based systems Requirements You must have an active Massey network account, i.e. you should already be able to log onto the

More information

WINDOWS 64-BIT INSTALLATION NOTES ORACLE VIRTUALBOX Micro Planner X-Pert V3.5.1 Digital Download Edition

WINDOWS 64-BIT INSTALLATION NOTES ORACLE VIRTUALBOX Micro Planner X-Pert V3.5.1 Digital Download Edition WINDOWS 64-BIT INSTALLATION NOTES ORACLE VIRTUALBOX Micro Planner X-Pert V3.5.1 Digital Download Edition THIS DOCUMENT CONTAINS IMPORTANT INFORMATION REGARDING THE INSTALLATION AND USE OF THIS SOFTWARE.

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Download Virtualization Software Download a Linux-based OS Creating a Virtual Machine using VirtualBox: VM name

Download Virtualization Software Download a Linux-based OS Creating a Virtual Machine using VirtualBox: VM name Download Virtualization Software You will first need to download and install a virtualization product. This will allow you to create a virtual machine which you can install a Linux distribution on. I recommend

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

Secure Browser Installation Manual

Secure Browser Installation Manual Secure Browser Installation Manual 2015 2016 Published August 17, 2015 Prepared by the American Institutes for Research Table of Contents Section I. Introduction to the Secure Browser Manual... 1 Scope...

More information

C2110 UNIX and programming

C2110 UNIX and programming C2110 UNIX and programming 3 rd Lesson Petr Kulhánek, Jakub Štěpán kulhanek@chemi.muni.cz National Centre for Biomolecular Research, Faculty of Science Masaryk University, Kotlářská 2, CZ-61137 Brno CZ.1.07/2.2.00/15.0233

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

Rogue Wave HostAccess 7.40J Installation Guide... 1

Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 HostAccess Installations... 2 Standard Installation - Desktop and Windows Terminal Server/Citrix

More information

1. Install a Virtual Machine... 2. 2. Download Ubuntu Ubuntu 14.04.1 LTS... 2. 3. Create a New Virtual Machine... 2

1. Install a Virtual Machine... 2. 2. Download Ubuntu Ubuntu 14.04.1 LTS... 2. 3. Create a New Virtual Machine... 2 Introduction APPLICATION NOTE The purpose of this document is to explain how to create a Virtual Machine on a Windows PC such that a Linux environment can be created in order to build a Linux kernel and

More information

Installing the SSH Client v3.2.2 For Microsoft Windows

Installing the SSH Client v3.2.2 For Microsoft Windows WIN1011 June 2003 Installing the SSH Client v3.2.2 For Microsoft Windows OVERVIEW... 1 SYSTEM REQUIREMENTS... 2 INSTALLING THE SSH PACKAGE... 2 STARTING THE PROGRAMS... 5 USING THE SHELL CLIENT... 8 USING

More information

Using ESXi with PowerChute Business Edition

Using ESXi with PowerChute Business Edition Using ESXi with PowerChute Business Edition This help covers the following topics: Installing vma for an ESXi Host Server Configuring and Running ESXi 1 Installing vma for an ESXi Host Server vsphere Management

More information

Lexia Network Installation Instructions

Lexia Network Installation Instructions Lexia Network Installation Instructions For Lexia Early Reading 3.x, Primary Reading 1.x, Foundation Reading 1.x, Strategies for Older Students 4.x, Cross-Trainer 1.x and Quick Reading Test 2.x (NOT for

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

V-locity Installation

V-locity Installation V-locity Installation Installing V-locity on Your Network V-locity can be installed in a variety of ways. If you are installing V-locity onto a single computer, no special actions are needed. Simply double-click

More information

Iron Speed Designer Installation Guide

Iron Speed Designer Installation Guide Iron Speed Designer Installation Guide Version 1.6 Accelerated web application development Updated May 11, 2004 Iron Speed, Inc. 1953 Landings Drive Mountain View, CA 94043 650.215.2200 www.ironspeed.com

More information

Cincom Smalltalk. Installation Guide P46-0105-17 SIMPLIFICATION THROUGH INNOVATION

Cincom Smalltalk. Installation Guide P46-0105-17 SIMPLIFICATION THROUGH INNOVATION Cincom Smalltalk Installation Guide P46-0105-17 SIMPLIFICATION THROUGH INNOVATION 1995 2011 by Cincom Systems, Inc. All rights reserved. This product contains copyrighted third-party software. Part Number:

More information

Steps for running C-program

Steps for running C-program Steps for running C-program for AVR microcontroller on Linux Step:1 Installation of required packages We will first install all the required packages. This includes 1. binutils - Tools like the assembler,

More information

If you are planning to work from home or your laptop, there are several things you need to have access to:

If you are planning to work from home or your laptop, there are several things you need to have access to: Working from home If you are planning to work from home or your laptop, there are several things you need to have access to: EndNote Word Your Home Area (M:\ - the UiO server where you have your files).

More information