TCB No March Technical Bulletin. GS FLX and GS FLX+ Systems. Configuration of Remote Data Processing Using postanalysisscript.

Size: px
Start display at page:

Download "TCB No. 2012-005 March 2012. Technical Bulletin. GS FLX and GS FLX+ Systems. Configuration of Remote Data Processing Using postanalysisscript."

Transcription

1 TCB No March 2012 Technical Bulletin GS FLX and GS FLX+ Systems Configuration of Remote Data Processing Using postanalysisscript.sh Summary This Technical Customer Bulletin describes the intended use and configuration examples of the automation script postanalysisscript.sh, available for use with the GS FLX and GS FLX+ System. This includes how to extend usage of the script, in conjunction with a custom pipeline xml file, to enable multiple different types of automatic remote processing. Remote execution of the Amplicons pipeline and GS GType Assay Software Addon are described, however the model is applicable to any type remote processing desired. In general, this process will allow a new processing type to be selected when setting up a sequencing Run (e.g. Image Processing Only Amplicons ). The new processing type will trigger the automated data transfer to a GS FLX+ Computing Station (or any other DataRig or cluster) followed by remote execution of the configured pipeline.

2 Table of Contents Summary 1 Workflow Overview 3 Pre-configuration Activities 4 Software versions 4 Password-less SSH communication 4 Login information for the remote computer 4 /data directory 4 The postanalysisscript.sh file 4 A Text Editor 5 Example 1: Automating Shotgun Processing 6 Example 2: Automating Non-Shotgun Processing 7 Create a Custom Image Processing Only Pipeline 7 Create a Custom postanalysisscript.sh File 9 Example 3: Automating GS GType Assay Software Add-on Processing 11 Create a Custom postanalysisscript.sh File 11 Create a Custom Image Processing Only Pipeline 11 Create a Custom Pipeline-launching Script on the Remote Computer 11 Page 2 of 12

3 Workflow Overview Data Acquisition Instrument Camera Data Processing Image Processing Data Processing Signal Processing GS FLX or GS FLX+ Instrument GS FLX or GS FLX+ Instrument GS FLX+ Computing Station The data processing workflow for the GS FLX and GS FLX+ Systems can be divided into three main steps: 1) The Data Acquisition step captures images for each nucleotide flow on the GS FLX or GS FLX+ Instrument. After all the images have been captured and the fluidics have completed, the script named backupscript.sh is executed. For usage guidance on backupscript.sh, refer to TCB , Configuration of Data Backup Using backupscript.sh. 2) The Image Processing step takes the raw images as input and generates an intermediate set of data files that will be the input for the Signal Processing step. The Image Processing step can technically be computed on the GS FLX or GS FLX+ Instrument, the GS FLX+ Computing Station, or any other system running the 454 Sequencing System Software. The automation script postanalysisscript.sh is only executed once the Image Processing step has completed. Since postanalysisscript.sh is the trigger for remote processing, the automation procedures documented in this TCB therefore require that Image Processing be run on the GS FLX or GS FLX+ Instrument. If No Processing is selected on the instrument, postanalysisscript.sh will not be called. 3) The Signal Processing step is computationally intensive, and it is therefore not recommended to ever perform this step on the GS FLX or GS FLX+ Instrument. The postanalysisscript.sh mechanism was developed to provide a convenient way to work around this fact. As indicated, Image Processing is necessary in order to use the automation mechanism described in this document. There is no automation mechanism readily available for customers who choose not to do on-instrument Image Processing. Contact your Roche Customer Support representative for more information on how to automate both Image Processing and Signal Processing on a remote computer. Page 3 of 12

4 Pre-configuration Activities The following activities or items are all required in order for the subsequent automation instructions to work properly. Software versions The methods described here are applicable to all currently existing versions of GS FLX and GS FLX+ System Software. However it is necessary that the version of software on the remote computer is the same as that on the Instrument. Furthermore, if the GS GType Assay Software Add-on is also to be executed remotely, then the version of the Add-on must be compatible with the version of the GS FLX or GS FLX+ Software in use. Depending on which Add-on you need to use, it may be necessary to upgrade your system. Refer to TCB , Installation of GS GType Assay Software Add-on v2.0, for more details. Password-less SSH communication Unattended file transfer from the GS FLX or GS FLX+ Instrument is a necessary requirement for automating remote data processing. Refer to TCB , Configuration of Password-free SSH Access between a GS FLX or GS FLX+ Instrument and a Remote Datarig or Cluster, for instructions on how to set this up. Login information for the remote computer You will need the username, password, and IP address of the remote computer. You should already have these items, since they are also required for configuring password-less SSH communication. Any username will work as long as that user has permissions to run the pipeline on the remote computer. However, for simplicity the remainder of this document assumes the username for the remote computer is adminrig. /data directory This document assumes that the remote computer has a /data directory within which the data will reside. This is the target directory for the data transfer from the Instrument. If no such directory exists on the remote computer, create one by executing these two commands: mkdir /data chown adminrig /data Depending on how your remote computer is set up, you may need root access to execute the above commands. If this is the case, you may need to contact whoever set up your computer to obtain such access. The postanalysisscript.sh file postanalysisscript.sh is available for download from and is provided as an empty container to be customized as described later in this document. 1) Log in to the GS FLX or GS FLX+ Instrument as user adminrig. 2) Download the file (postanalysisscript.sh.tar.gz) into the HOME directory (/home/adminrig). Page 4 of 12

5 3) Start a terminal session by double-clicking on the Terminal icon: 4) Unzip the script by typing: tar -zxvf postanalysisscript.sh.tar.gz 5) Back up any previously existing postanalysisscript.sh executing the following commands: cd /usr/local/rig/bin mv postanalysisscript.sh postanalysisscript.sh.old 6) Place the newly downloaded script into the /usr/local/rig/bin directory (which is your current directory by virtue of the previous step) by executing this command: cp /home/adminrig/postanalysisscript.sh postanalysisscript.sh A Text Editor The procedure for configuring automation requires manual editing of text files. Therefore, you will need to be comfortable with a text editor to use it for this purpose. Although any text editor will suffice, a convenient one that is included on the GS FLX and GS FLX+ Instruments is called nedit. To open a file for editing in nedit, type the following command: nedit <path to file> This document uses the angle-brackets convention for specifying placeholders in files and commands. For a command to execute properly, you need to replace the placeholder with the information indicated by the placeholder text, which in this case is the path to the file you wish to edit. Throughout this document, file names, commands and parts of commands will be represented by placeholders that will need to be replaced. After editing a file, be sure to save it before closing. With nedit, this is done with a typical File->Save menu option, followed by File->Exit. Page 5 of 12

6 Example 1: Automating Shotgun Processing This is the simplest case and requires the least amount of configuration. If all you need to do is automate remote execution of the Shotgun Signal Processing pipeline, then follow these instructions. 1) Open /usr/local/rig/bin/postanalysisscript.sh in a text editor. For example: nedit /usr/local/rig/bin/postanalysisscript.sh 2) Line 26 of /usr/local/rig/bin/postanalysisscript.sh looks like this: DESTINATION_IP="w.x.y.z" Replace the w.x.y.z with the IP address of the remote computer, making sure to retain the doublequotes. It should end up looking similar to this, with whatever numbers correspond to your machine: DESTINATION_IP=" " 3) Line 57 of /usr/local/rig/bin/postanalysisscript.sh looks like this: #ssh $DESTINATION_USER@$DESTINATION_IP runanalysispipe $DESTINATION_PATH/$D_DIR Delete the # symbol so that the line looks like this: ssh $DESTINATION_USER@$DESTINATION_IP runanalysispipe $DESTINATION_PATH/$D_DIR 4) Save and close the file. The runanalysispipe part of the above command corresponds to the normal command for running the Shotgun Signal Processing pipeline on a dataset that has already been imageprocessed. The commands that actually copy the data from the Instrument to the remote computer do not need to be customized, and so they were not included in these instructions. (If you are curious, they are found on lines 50 and 53 of /usr/local/rig/bin/postanalysisscript.sh). This concludes the procedure for configuring automatic remote execution of the Shotgun Signal Processing pipeline. Page 6 of 12

7 Example 2: Automating Non-Shotgun Processing By default, there are two main pipelines included in the 454 Sequencing System Software: the Shotgun pipeline and the Amplicon pipeline. However, there is also the ability to make custom pipelines as well as to execute GS GType Assay Software Add-on modules after a pipeline has been run. Therefore, this section describes in general terms how to set up automatic processing for a pipeline of your choice. We will use Amplicon processing as an example, thereby superseding TCB , Setting up automatic Signal Processing for Amplicon experiment. Incorporating Add-on processing will be discussed in the next section, Example 3: Automating Add-on Processing. In Example 1: Automating Shotgun Processing, the only modifications that needed to be made were to edit postanalysisscript.sh to include the correct IP address of the remote computer and to remove a comment character from the remote command (Steps 2 and 3 of that section). One limitation of postanalysisscript.sh is that it can only execute one specific remote command (runanalysispipe, above). That is, there is no parameter that can be passed to it in order to specify a different command. Therefore, in order to configure a different kind of remote processing (e.g. Amplicon processing) we need to do the following: Create a copy of postanalysisscript.sh with a unique name, i.e. postanalysisscript<custom>.sh Edit the remote command to reflect the pipeline of choice, i.e. runanalysispipe<custom> Furthermore, since the Image Processing pipeline is hard-coded to execute only postanalysisscript.sh, and NOT postanalysisscript<custom>.sh, we also need to create a copy of the Image Processing pipeline that executes postanalysisscript<custom>.sh. As we will see in the next section, we will call it imageprocessingonly<custom>.xml. Create a Custom Image Processing Only Pipeline 1) The default Image Processing pipeline configuration file is located the directory /usr/local/rig/apps/gsrunprocessor/etc/gsrunprocessor/. Create a new copy of it using the following commands: cd /usr/local/rig/apps/gsrunprocessor/etc/gsrunprocessor cp imageprocessingonly.xml imageprocessingonly<custom>.xml In the Amplicons processing example, the second command would equate to: cp imageprocessingonly.xml imageprocessingonlyamplicons.xml 2) Open the imageprocessingonly<custom>.xml file in a text editor, for example: nedit imageprocessingonlyamplicons.xml 3) Near the top of the file is a block of text that should look similar to this, which is taken from the v2.6 Image Processing pipeline: Page 7 of 12

8 <info> <id>imageprocessingonly</id> <gsrunprocessorversion>2.6</gsrunprocessorversion> <displaytext>image processing only</displaytext> <description lang="en"> This is the default pipeline for taking the raw images and making intermediate files that can be analyzed by other pipelines. </description> <displaysortorder>10</displaysortorder> </info> a. Replace the <id> block with ImageProcessingOnly<custom> b. Replace the <displaytext> block with Image processing only Amplicons c. Replace the <displaysortorder> block with a unique number not present in any of the other pipeline files located in the /usr/local/rig/apps/gsrunprocessor/etc/gsrunprocessor directory. The modified file should now have an <info> block that looks like this: <info> <id>imageprocessingonlyamplicons</id> <gsrunprocessorversion>2.6</gsrunprocessorversion> <displaytext>image Processing only Amplicons</displayText> <description lang="en"> This is the default pipeline for taking the raw images and making intermediate files that can be analyzed by other pipelines. </description> <displaysortorder>11</displaysortorder> </info> These changes result in the custom pipeline being listed as a selectable pipeline, available for you to choose in the Choose Run Processing Type window of the Instrument Procedure Wizard, during Run set-up. 4) One additional edit is required to the imageprocessingonly<custom>.xml file. Near the very bottom of the file, the last block in the file is the one that specifies which script to execute, which is postanalysisscript.sh by default: Page 8 of 12

9 <postanalysisscript>postanalysisscript.sh</postanalysisscript> Replace the contents of this block with postanalysisscript<custom>.sh, as shown here for our Amplicons example: <postanalysisscript>postanalysisscriptamplicons.sh</postanalysisscript> 5) Save and close the imageprocessingonly<custom>.xml file. Create a Custom postanalysisscript.sh File Steps 1 through 4 of this section are very similar to the instructions provided in Example 1: Automating Shotgun Processing, but adapted for a custom postanalysisscript<custom>.sh file instead of the default. The custom pipeline is specified in Step 5. 1) Assuming you have downloaded postanalysisscript.sh into the /home/adminrig directory as indicated previously, execute the following commands to create a custom file that corresponds to the one you specified in Step 4 of the previous section: cd /home/adminrig cp postanalysisscript.sh /usr/local/rig/bin/postanalysisscript<custom>.sh 2) Open /usr/local/rig/bin/postanalysisscript<custom>.sh in a text editor. For example: nedit /usr/local/rig/bin/postanalysisscriptamplicons.sh 3) Line 26 of /usr/local/rig/bin/postanalysisscript<custom>.sh looks like this: DESTINATION_IP="w.x.y.z" Replace the w.x.y.z with the IP address of the remote computer, making sure to retain the doublequotes. It should end up looking similar to this, with whatever numbers correspond to your machine: DESTINATION_IP=" " 4) Line 57 of /usr/local/rig/bin/postanalysisscript<custom>.sh looks like this: #ssh $DESTINATION_USER@$DESTINATION_IP runanalysispipe $DESTINATION_PATH/$D_DIR Delete the # symbol so that the line looks like this: ssh $DESTINATION_USER@$DESTINATION_IP runanalysispipe $DESTINATION_PATH/$D_DIR Page 9 of 12

10 5) Replace runanalysispipe with runanalysispipe<custom>, which is the name of the pipeline you would like to execute, for example: ssh runanalysispipeamplicons $DESTINATION_PATH/$D_DIR This example is wrapped between two lines, but in the script itself all this text should be included on a single line. The remote pipeline command itself, runanalysispipeamplicons, is part of the 454 Sequencing System Software, so it will already be present on the remote computer. We shall see in the next section that when automating Add-on processing this is not the case, which is why it will be our third and most complex example. 6) This concludes the procedure for configuring automatic remote execution of a non-shotgun Signal Processing pipeline, using the Amplicons pipeline as our example. Page 10 of 12

11 Example 3: Automating GS GType Assay Software Add-on Processing In our final example, we describe how to configure automatic remote processing of the GS GType Assay Software Add-on. This is the most complex example because the processing requires an additional step to be run after Signal Processing. The process entails everything described in the previous section, Example 2: Automating Non-Shotgun Processing, with one major addition. In the previous section, it was assumed that the runanalysispipe<custom> pipeline-launching script was already installed on the remote computer. Here, it needs to be created using components provided with the GS GType Assay Software Add-on package. Create a Custom postanalysisscript.sh File Create a custom postanalysisscript<custom>.sh file by following the instructions in the previous section, Example 2: Automating Non-Shotgun Processing. Adapt it in the following ways: In Step 1, replace the <custom> placeholder with GType<assay>, where <assay> is another placeholder representing the name of the Assay for which you are automating processing. For the GS GType Leukemia Assay, for example, this would equate to postanalysisscriptgtypeleukemia.sh. For the GS GType HLA Assay, it would be postanalysisscriptgtypehla.sh. In Step 5, again replace the <custom> placeholder with GType<assay>. This would equate to runanalysispipegtypeleukemia for GS GType Leukemia. Create a Custom Image Processing Only Pipeline Create a custom Image Processing pipeline by following the instructions in the previous section, Example 2: Automating Non-Shotgun Processing. Adapt it in the following ways: In Steps 1 and 3, again replace the <custom> placeholder with GType<assay>, where <assay> is another placeholder representing the name of the Assay for which you are automating processing. For the GS GType Leukemia Assay, for example, this would equate to imageprocessingonlygtypeleukemia.xml. For the GS GType HLA Assay, it would be imageprocessingonlygtypehla.xml. In Step 4, remember to correctly specify the name of your custom postanalysisscript<custom>.sh file, (e.g. postanalysisscriptgtypeleukemia.sh). Create a Custom Pipeline-launching Script on the Remote Computer The GS GType Assay Software Add-on comes with one Add-on script for each of the assays. Refer to TCB , Installation of GS GType Assay Software Add-on v2.0 (or newer, if one exists at the time you are reading this), for more information on the Add-on scripts and how to manually execute them. The GS GType Assay Software Add-on also comes with custom pipeline configuration files (XML) for each Assay. These pipeline configuration files will tell the pipeline to automatically run the appropriate Add-on script once the respective Page 11 of 12

12 Signal Processing is complete. However, one thing that the Add-on package does not provide is a set of scripts to launch those Assay pipelines analogous to runanalysispipe and runanalysispipeamplicons for the default pipelines. In order to avoid having to execute the default Amplicons Signal Processing pipeline followed separately by the Add-on script, and to therefore keep the remote automation procedure for Add-ons consistent with the procedures detailed in the previous Examples, it is necessary to create a wrapper script for the selected Assay that refers to the respective bundled Add-on XML files. 1) Log into the remote computer as root, or as a user that has sudo privileges. 2) Execute the following commands: cd /opt/454/bin sed 's/_pipe=/_pipe=gtype<assay>-/' runanalysispipeamplicons > runanalysispipegtype<assay> chmod a+rx runanalysispipegtype<assay> The second of these three commands is wrapped between two lines in this document, but the command itself should be typed on a single line. Note the positions of the placeholders that you need to replace with your custom identifier. Note also that the standalone > is not a placeholder and must be typed, as do all the other non-placeholder symbols, quotes and spaces. Keeping with Leukemia as an example, these commands would equate to: cd /opt/454/bin sed 's/_pipe=/_pipe=gtypeleukemia-/' runanalysispipeamplicons > runanalysispipegtypeleukemia chmod a+rx runanalysispipegtypeleukemia 3) This concludes the procedure for configuring automatic remote execution of GS GType Software Add-on processing. For life science research only. Not for use in diagnostic procedures. License disclaimer information is subject to change or amendment. For current license information on license disclaimers for a particular product, please refer to 454, 454 LIFE SCIENCES, 454 SEQUENCING, GS FLX, GS FLX TITANIUM, GS JUNIOR, EMPCR, PICOTITERPLATE, PTP, NEWBLER, REM, GS GTYPE, GTYPE, AMPLITAQ, AMPLITAQ GOLD, FASTSTART, NIMBLEGEN, SEQCAP, MAGNA PURE, and CASY are trademarks of Roche. All other product names and trademarks are the property of their respective owners. Page 12 of 12

TCB No. 2012-006 March 2012. Technical Bulletin. GS FLX and GS FLX+ Systems. Configuration of Data Backup Using backupscript.sh

TCB No. 2012-006 March 2012. Technical Bulletin. GS FLX and GS FLX+ Systems. Configuration of Data Backup Using backupscript.sh TCB No. 2012-006 March 2012 Technical Bulletin GS FLX and GS FLX+ Systems Configuration of Data Backup Using backupscript.sh Summary This document describes the intended use and a configuration example

More information

TCB No. 2012-008 September 2012. Technical Bulletin. GS FLX+ System & GS FLX System. Installation of 454 Sequencing System Software v2.

TCB No. 2012-008 September 2012. Technical Bulletin. GS FLX+ System & GS FLX System. Installation of 454 Sequencing System Software v2. TCB No. 2012-008 September 2012 Technical Bulletin GS FLX+ System & GS FLX System Installation of 454 Sequencing System Software v2.8 Summary This document describes how to upgrade the 454 Sequencing System

More information

CycleServer Grid Engine Support Install Guide. version 1.25

CycleServer Grid Engine Support Install Guide. version 1.25 CycleServer Grid Engine Support Install Guide version 1.25 Contents CycleServer Grid Engine Guide 1 Administration 1 Requirements 1 Installation 1 Monitoring Additional OGS/SGE/etc Clusters 3 Monitoring

More information

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Contents Installation: Ubuntu Linux 7.10 Gusty Gibbon:... 2 Installation: Redhat Enterprise 5 and Fedora 8 Linux:...

More information

Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients

Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients Using a login script for deployment of Kaspersky Network Agent to Mac OS X clients EXECUTIVE SUMMARY This document describes how an administrator can configure a login script to deploy Kaspersky Lab Network

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Setting Up the Device and Domain Administration

Setting Up the Device and Domain Administration Setting Up the Device and Domain Administration Install a Host Support Program on your Computer A NetVault7.1 program must be installed on the computer(s) used by the administrator(s) of your backup service.

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

NovaBACKUP Central Management Console

NovaBACKUP Central Management Console NovaBACKUP Central Management Console User Manual NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are

More information

Extending Remote Desktop for Large Installations. Distributed Package Installs

Extending Remote Desktop for Large Installations. Distributed Package Installs Extending Remote Desktop for Large Installations This article describes four ways Remote Desktop can be extended for large installations. The four ways are: Distributed Package Installs, List Sharing,

More information

Browser Client 2.0 Admin Guide

Browser Client 2.0 Admin Guide Browser Client is a web-based application that allows users to point their browser at a URL and view live video from a set of Intellex units. Browser Client 2.0 is compatible with Intellex 3.2 software.

More information

Tutorial Guide to the IS Unix Service

Tutorial Guide to the IS Unix Service Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

IUCLID 5 Guidance and Support

IUCLID 5 Guidance and Support IUCLID 5 Guidance and Support Installation Guide for IUCLID 5.4 Stand-alone Application Custom Installation on Microsoft Windows October 2012 Legal Notice Neither the European Chemicals Agency nor any

More information

Backing Up TestTrack Native Project Databases

Backing Up TestTrack Native Project Databases Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later

More information

Milestone Systems Software Manager 1.5. Administrator's Manual

Milestone Systems Software Manager 1.5. Administrator's Manual Milestone Systems Software Manager 1.5 Contents INTRODUCTION... 4 PREREQUISITES... 5 SUPPORTED OPERATING SYSTEMS... 5 PREREQUISITES FOR ALL REMOTE SERVERS... 5 IMPORTANT INFORMATION... 5 VERSION SPECIFIC

More information

Amon Agent. User Guide

Amon Agent. User Guide Amon Agent User Guide Table of Contents Agent Installation.............................................................................. 1 Scheduling....................................................................................

More information

Access Control and Audit Trail Software

Access Control and Audit Trail Software Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Access Control and Audit Trail Software Operation Manual Varian, Inc. 2002 03-914941-00:3 Table of Contents Introduction... 1 Access Control

More information

A-AUTO 50 for Windows Setup Guide

A-AUTO 50 for Windows Setup Guide A-AUTO 50 for Windows Setup Guide 1st Edition 1 A-AUTO is a registered trade mark of UNIRITA Inc. "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)."

More information

Using Network Attached Storage with Linux. by Andy Pepperdine

Using Network Attached Storage with Linux. by Andy Pepperdine Using Network Attached Storage with Linux by Andy Pepperdine I acquired a WD My Cloud device to act as a demonstration, and decide whether to use it myself later. This paper is my experience of how to

More information

NovaBACKUP xsp Version 15.0 Upgrade Guide

NovaBACKUP xsp Version 15.0 Upgrade Guide NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Installing SQL-Ledger on Windows

Installing SQL-Ledger on Windows Installing SQL-Ledger on Windows Requirements Windows 2000, Windows XP, Windows Server 2000 or Windows Server 2003 WinZip Knowledge of simple DOS commands, i.e. CD, DIR, MKDIR, COPY, REN Steps Installing

More information

NovaBACKUP Storage Server User Manual NovaStor / April 2013

NovaBACKUP Storage Server User Manual NovaStor / April 2013 NovaBACKUP Storage Server User Manual NovaStor / April 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change

More information

Ingenious Testcraft Technical Documentation Installation Guide

Ingenious Testcraft Technical Documentation Installation Guide Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United

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

Cloud Backup Express

Cloud Backup Express Cloud Backup Express Table of Contents Installation and Configuration Workflow for RFCBx... 3 Cloud Management Console Installation Guide for Windows... 4 1: Run the Installer... 4 2: Choose Your Language...

More information

Unix Sampler. PEOPLE whoami id who

Unix Sampler. PEOPLE whoami id who Unix Sampler PEOPLE whoami id who finger username hostname grep pattern /etc/passwd Learn about yourself. See who is logged on Find out about the person who has an account called username on this host

More information

Sage 200 Web Time & Expenses Guide

Sage 200 Web Time & Expenses Guide Sage 200 Web Time & Expenses Guide Sage (UK) Limited Copyright Statement Sage (UK) Limited, 2006. All rights reserved If this documentation includes advice or information relating to any matter other than

More information

Local File Sharing in Linux

Local File Sharing in Linux Local File Sharing in Linux Would you like to share files among multiple users on the same Linux system? Surprisingly, this is trickier to accomplish than it appears, so here is a method that works. The

More information

Automated Offsite Backup with rdiff-backup

Automated Offsite Backup with rdiff-backup Automated Offsite Backup with rdiff-backup Michael Greb 2003-10-21 Contents 1 Overview 2 1.1 Conventions Used........................................... 2 2 Setting up SSH 2 2.1 Generating SSH Keys........................................

More information

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose Setting up the Oracle Warehouse Builder Project Purpose In this tutorial, you setup and configure the project environment for Oracle Warehouse Builder 10g Release 2. You create a Warehouse Builder repository

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

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

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

Contents Overview... 5 Configuring Project Management Bridge after Installation... 9 The Project Management Bridge Menu... 14

Contents Overview... 5 Configuring Project Management Bridge after Installation... 9 The Project Management Bridge Menu... 14 Portfolio Management Bridge for Microsoft Office Project Server User's Guide June 2015 Contents Overview... 5 Basic Principles and Concepts... 5 Managing Workflow... 7 Top-Down Management... 7 Project-Based

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

INSTALL ZENTYAL SERVER

INSTALL ZENTYAL SERVER GUIDE FOR Zentyal Server is a small business server based on Ubuntu s LTS server version 10.04 and the ebox platform. It also has the LXDE desktop installed with Firefox web browser and PCMAN File manager.

More information

Server Manual. For Administrators of Cameleon Version 4

Server Manual. For Administrators of Cameleon Version 4 Server Manual For Administrators of Cameleon Version 4 Cameleon Version 4 Server Manual For Administrators of Cameleon Version 4 R4-07OCT04 Copyright 2004 360 Surveillance Inc. Camera Cameleon is a trademark

More information

Server Account Management

Server Account Management Server Account Management Setup Guide Contents: About Server Account Management Setting Up and Running a Server Access Scan Addressing Server Access Findings View Server Access Scan Findings Act on Server

More information

User Manual Web DataLink for Sage Line 50. Version 1.0.1

User Manual Web DataLink for Sage Line 50. Version 1.0.1 User Manual Web DataLink for Sage Line 50 Version 1.0.1 Table of Contents About this manual...3 Customer support...3 Purpose of the software...3 Installation...6 Settings and Configuration...7 Sage Details...7

More information

FalconStor Recovery Agents User Guide

FalconStor Recovery Agents User Guide FalconStor Recovery Agents User Guide FalconStor Software, Inc. 2 Huntington Quadrangle Melville, NY 11747 Phone: 631-777-5188 Fax: 631-501-7633 Web site: www.falconstor.com Copyright 2007-2009 FalconStor

More information

Expresso Quick Install

Expresso Quick Install Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide

RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide Contact Information See our Web sites for regional Customer Support telephone and fax numbers. RSA Security Inc. RSA Security

More information

Server & Workstation Installation of Client Profiles for Windows

Server & Workstation Installation of Client Profiles for Windows C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W General Notes to Prepare for Installing

More information

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation

Table of Contents. OpenDrive Drive 2. Installation 4 Standard Installation Unattended Installation User Guide for OpenDrive Application v1.6.0.4 for MS Windows Platform 20150430 April 2015 Table of Contents Installation 4 Standard Installation Unattended Installation Installation (cont.) 5 Unattended

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

MultiValue Dashboard. Installation Guide

MultiValue Dashboard. Installation Guide MultiValue Dashboard Installation Guide Introduction to MultiValue Dashboard MultiValue Dashboard is a dynamic Web-based development tool for the creation of desktop widgets utilizing your knowledge of

More information

NetIQ Sentinel 7.0.1 Quick Start Guide

NetIQ Sentinel 7.0.1 Quick Start Guide NetIQ Sentinel 7.0.1 Quick Start Guide April 2012 Getting Started Use the following information to get Sentinel installed and running quickly. Meeting System Requirements on page 1 Installing Sentinel

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3.

Published. Technical Bulletin: Use and Configuration of Quanterix Database Backup Scripts 1. PURPOSE 2. REFERENCES 3. Technical Bulletin: Use and Configuration of Quanterix Database Document No: Page 1 of 11 1. PURPOSE Quanterix can provide a set of scripts that can be used to perform full database backups, partial database

More information

TECHNICAL REFERENCE. Version 1.0 August 2013

TECHNICAL REFERENCE. Version 1.0 August 2013 TECHNICAL REFERENCE Version 1.0 August 2013 Technical Reference IPWeb 1.0 Copyright EVS Broadcast Equipment S.A. Copyright 2013. All rights reserved. Disclaimer The information in this manual is furnished

More information

Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab

Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab Yocto Project Developer Day San Francisco, 2013 Jessica Zhang Introduction Welcome to the Yocto Project Eclipse plug-in

More information

Xopero Backup Build your private cloud backup environment. Getting started

Xopero Backup Build your private cloud backup environment. Getting started Xopero Backup Build your private cloud backup environment Getting started 07.05.2015 List of contents Introduction... 2 Get Management Center... 2 Setup Xopero to work... 3 Change the admin password...

More information

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01

A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE. Version 1.12 2014-07-01 A SHORT INTRODUCTION TO DUPLICITY WITH CLOUD OBJECT STORAGE Version 1.12 2014-07-01 PAGE _ 2 TABLE OF CONTENTS 1. Introduction....Page 03 2. System Configuration....Page 04 3. Create Backup Script....Page

More information

4. GS Reporter Application 65

4. GS Reporter Application 65 Data Processing B Table of Contents Part B: Data Processing 2. GS Sequencer (Output Only; Not a DataRig Application) 42 2.1 GS Sequencer Application Output...42 2.1.1 datarunparams.parse...43 2.1.2 imagelog.parse...44

More information

Summer 2013 Cloud Initiative. Release Bulletin

Summer 2013 Cloud Initiative. Release Bulletin Summer 2013 Cloud Initiative In this bulletin... July 2013 Summer 2013 Cloud Initiative 1 Getting started with the new Cloud... 2 Cloud Enhancements 3 How To Save Files 7 How to Set Up ipad Access 9 How

More information

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide LT Auditor+ 2013 Windows Assessment SP1 Installation & Configuration Guide Table of Contents CHAPTER 1- OVERVIEW... 3 CHAPTER 2 - INSTALL LT AUDITOR+ WINDOWS ASSESSMENT SP1 COMPONENTS... 4 System Requirements...

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

How to setup camera with NAS

How to setup camera with NAS How to setup camera with NAS V.150714 This article describes how to set up a Phylink camera with your NAS driver. Once your camera is authorized to access the NAS, it will be able to record its snapshots

More information

Using and Contributing Virtual Machines to VM Depot

Using and Contributing Virtual Machines to VM Depot Using and Contributing Virtual Machines to VM Depot Introduction VM Depot is a library of open source virtual machine images that members of the online community have contributed. You can browse the library

More information

Aspera Connect User Guide

Aspera Connect User Guide Aspera Connect User Guide Windows XP/2003/Vista/2008/7 Browser: Firefox 2+, IE 6+ Version 2.3.1 Chapter 1 Chapter 2 Introduction Setting Up 2.1 Installation 2.2 Configure the Network Environment 2.3 Connect

More information

TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server

TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER AUGUST 2012 STRM uses system configuration files to provide useful characterizations of network data flows. Updates to the system configuration files, available

More information

Using Symantec NetBackup with Symantec Security Information Manager 4.5

Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager 4.5 Using Symantec NetBackup with Symantec Security Information Manager Legal Notice Copyright 2007 Symantec Corporation. All rights

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2009, Parallels, Inc.

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

Cassandra Installation over Ubuntu 1. Installing VMware player:

Cassandra Installation over Ubuntu 1. Installing VMware player: Cassandra Installation over Ubuntu 1. Installing VMware player: Download VM Player using following Download Link: https://www.vmware.com/tryvmware/?p=player 2. Installing Ubuntu Go to the below link and

More information

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Cloud Server powered by Mac OS X Getting Started Guide Page 1 Getting Started Guide: Cloud Server powered by Mac OS X Version 1.0 (02.16.10) Copyright 2010 GoDaddy.com Software, Inc.

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

Upgrading MySQL from 32-bit to 64-bit

Upgrading MySQL from 32-bit to 64-bit Upgrading MySQL from 32-bit to 64-bit UPGRADING MYSQL FROM 32-BIT TO 64-BIT... 1 Overview... 1 Upgrading MySQL from 32-bit to 64-bit... 1 Document Revision History... 21 Overview This document will walk

More information

CAPIX Job Scheduler User Guide

CAPIX Job Scheduler User Guide CAPIX Job Scheduler User Guide Version 1.1 December 2009 Table of Contents Table of Contents... 2 Introduction... 3 CJS Installation... 5 Writing CJS VBA Functions... 7 CJS.EXE Command Line Parameters...

More information

Setting Up Specify to use a Shared Workstation as a Database Server

Setting Up Specify to use a Shared Workstation as a Database Server Specify Software Project www.specifysoftware.org Setting Up Specify to use a Shared Workstation as a Database Server This installation documentation is intended for workstations that include an installation

More information

using version control in system administration

using version control in system administration LUKE KANIES using version control in system administration Luke Kanies runs Reductive Labs (http://reductivelabs.com), a startup producing OSS software for centralized, automated server administration.

More information

Parallels Virtual Automation 6.1

Parallels Virtual Automation 6.1 Parallels Virtual Automation 6.1 Installation Guide for Windows April 08, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH. c/o Parallels

More information

OSPI SFTP User Guide

OSPI SFTP User Guide OSPI SFTP User Guide NOTE: Please contact OSPI to request an account BEFORE setting up this software. In order to configure the software you will need account information from OSPI. Here are some steps

More information

Primavera P6 Professional Windows 8 Installation Instructions. Primavera P6. Installation Instructions. For Windows 8 Users

Primavera P6 Professional Windows 8 Installation Instructions. Primavera P6. Installation Instructions. For Windows 8 Users Primavera P6 Installation Instructions For Windows 8 Users 1 IMPORTANT: READ THESE INSTRUCTIONS CAREFULLY AND FOLLOW THEM EXACTLY. The following is provided for your convenience only. Ten Six Consulting

More information

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7

Sophos SafeGuard Native Device Encryption for Mac Administrator help. Product version: 7 Sophos SafeGuard Native Device Encryption for Mac Administrator help Product version: 7 Document date: December 2014 Contents 1 About SafeGuard Native Device Encryption for Mac...3 1.1 About this document...3

More information

Upgrading to advanced editions of Acronis Backup & Recovery 10. Technical white paper

Upgrading to advanced editions of Acronis Backup & Recovery 10. Technical white paper Upgrading to advanced editions of Acronis Backup & Recovery 10 Technical white paper Table of contents 1 Introduction...3 2 Choosing the way to upgrade...3 2.1 Gradual upgrade... 3 2.2 Importing backup

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

FactoryTalk ViewPoint Quick Start Guide

FactoryTalk ViewPoint Quick Start Guide FactoryTalk ViewPoint Quick Start Guide Publication FTVP-QS002F-EN-E - September 2015 Supersedes Publication FTVP-QS002E-EN-E Important user information Read this document and the documents listed in the

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

Virtual CD v10. Network Management Server Manual. H+H Software GmbH

Virtual CD v10. Network Management Server Manual. H+H Software GmbH Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

Configure Backup Server for Cisco Unified Communications Manager

Configure Backup Server for Cisco Unified Communications Manager Configure Backup Server for Cisco Unified Communications Manager Document ID: 110309 Contents Introduction Prerequisites Requirements Components Used Conventions Configure a Backup Server for Cisco Unified

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

How to use SURA in three simple steps:

How to use SURA in three simple steps: How to use SURA in three simple steps: Most of SURA s functionality can be accessed through these three steps. 1) Download SURA to your computer Go to the SU Downloads page to obtain the SURA utility.

More information

Installation and Configuration of VPN Software

Installation and Configuration of VPN Software Installation and Configuration of VPN Software for Remote Spat Systems These instructions help you install AT&T Global Services and VPN Client (Extranet Access) software on your Windows computer for accessing

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit. Scheduler Quick Start Guide

WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit. Scheduler Quick Start Guide WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit Scheduler Quick Start Guide 2 INTRODUCTION 5 CHAPTER I : INSTALLATION 7 CHAPTER II : SET UP YOUR FIRST SCHEDULED

More information

SNMP Upgrade Procedure for NV Transmitters

SNMP Upgrade Procedure for NV Transmitters SNMP Upgrade Procedure for NV Transmitters IS09019C Issue 1.0...26 November 2010 Nautel Limited 10089 Peggy's Cove Road, Hackett's Cove, NS, Canada B3Z 3J4 T.877 6 nautel (628835) or +1.902.823.2233 F.+1.902.823.3183

More information

Windows Clients and GoPrint Print Queues

Windows Clients and GoPrint Print Queues Windows Clients and GoPrint Print Queues Overview The following tasks demonstrate how to configure shared network printers on Windows client machines in a Windows Active Directory Domain and Workgroup

More information

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

ULTEO OPEN VIRTUAL DESKTOP V4.0

ULTEO OPEN VIRTUAL DESKTOP V4.0 ULTEO OPEN VIRTUAL DESKTOP V4.0 MIGRATION GUIDE 28 February 2014 Contents Section 1 Introduction... 4 Section 2 Overview... 5 Section 3 Preparation... 6 3.1 Enter Maintenance Mode... 6 3.2 Backup The OVD

More information

Parallels Virtual Automation 6.0

Parallels Virtual Automation 6.0 Parallels Virtual Automation 6.0 Installation Guide for Windows Copyright 1999-2012 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH. c/o Parallels International

More information

2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel

2. Boot using the Debian Net Install cd and when prompted to continue type linux26, this will load the 2.6 kernel These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external

More information

Management Center. Installation and Upgrade Guide. Version 8 FR4

Management Center. Installation and Upgrade Guide. Version 8 FR4 Management Center Installation and Upgrade Guide Version 8 FR4 APPSENSE MANAGEMENT CENTER INSTALLATION AND UPGRADE GUIDE ii AppSense Limited, 2012 All rights reserved. part of this document may be produced

More information

Configuring MailArchiva with Insight Server

Configuring MailArchiva with Insight Server Copyright 2009 Bynari Inc., All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any

More information