Setting Up VNC, SSH Tunnels, and RDP

Size: px
Start display at page:

Download "Setting Up VNC, SSH Tunnels, and RDP"

Transcription

1 Setting Up VNC, SSH Tunnels, and RDP Thomas Pepler August 8, 2016 If you have suggestions for improving this document, please them to: Contents 1 Connecting to DOE Linux Machines with PuTTY Download and Setup PuTTY Configure PuTTY with DOE Connection Settings Start an SSH Session Setting up a VNC Session Creating Your VNC Password Changing the Default Desktop Environment and Other Settings Creating a New VNC Session Listing Your VNC Sessions Killing a VNC Session Adding an SSH Tunnel for Your VNC Session Find an Available Port to Use For Tunneling Add an SSH Tunnel to Your VNC Port Using a VNC Viewer to Access the VNC Session Download, Install, and Run a VNC Viewer Launch PuTTY and Log In to the server Open the VNC Session Adding and using SSH Tunnels for RDP (Windows machines) Adding the Tunnel Connecting to the Remote Machine Page 1 of 13

2 1 Connecting to DOE Linux Machines with PuTTY 1.1 Download and Setup PuTTY 1. If you do not already have PuTTY installed on your computer, then go to the following link, download and install a copy of PuTTY (on Windows OS, I recommend using the Installer executable). sgtatham/putty/download.html 1.2 Configure PuTTY with DOE Connection Settings 1. The easiest way to configure PuTTY is to download the Windows registrey keys available from my website, here. (If this link is broken let me know.) This file is configured for a connection to borr, you should modify the server name to the one you want. The servers are: borr, odin, and thor. Alternatively, in PuTTY set the Host Name, Port, and Connection Type to those shown in figure 1, but use the server name you want. Then save these settings by typing a name in the Saved Sessions field (the instructions assume it was doe ) and click Save. You can then skip the remaining steps in section Find where you saved the file and double-click it, this should automatically add the keys to your Windows Registry. The next time you run PuTTY there should be a saved session named doe (see figure 1). 3. Load all the settings for the saved session by selecting the name and click Load. 1.3 Start an SSH Session 1. At the bottom of the Sessions setup page, click Open. 2. If this is the first time logging in to this server, you may be asked to add a security key for it; choose Yes to store the key and you will not get this warning next time. 3. A command prompt should pop up. Enter your DOE username and password at the prompts. 2 Setting up a VNC Session This section describes how to use your local Windows machine to set up a remote VNC session that runs on the DOE Linux machines. The advantage of using VNC is that the session remains running even after the connection to it has closed (i.e. your applications remain open even after you close the VNC viewer). Page 2 of 13

3 Figure 1: An example of PuTTY with saved sessions, showing the doe saved session. Page 3 of 13

4 Note: I have tried to stick to the following conventions related to using terminal commands: when asked to enter something at the prompt, this means type it and then push Enter or Return on the keyboard; when directed to type something, this means to type it, but omit the Enter or Return. 2.1 Creating Your VNC Password The first and most important thing to do is create a password (not only for your own protection, but anyone else who uses the machine). 1. At the prompt, enter vncpasswd. You will be directed to enter the password (no characters get echoed to the terminal while you enter your password), and then enter it again to verify against any typos. 2. If everything worked fine, you will be back at the prompt and your VNC session logins are now secured with a password. An example: borr ( tpepler ): ~ $vncpasswd Password : Verify : borr ( tpepler ): ~ $ 2.2 Changing the Default Desktop Environment and Other Settings Note: you may now be able to skip this section, as the xstartup script seems to be created with all the useful defaults now. However, I have left this section in, just in case. If you have never run VNC before, then your xstartup script will not exist in your.vnc directory yet. In that case, skip to section 2.3 to make a dummy session causing the creation of your xstartup file, then section 2.5 to kill the session, then return here to change some of the default settings. 1. To get the gnome desktop environment to load when you create your VNC session, uncomment the two lines at the top of the xstartup script just after the comment Uncomment the following two lines for normal desktop. Use any text editor to do this, but the easiest might be: nano ~/.vnc/xstartup, you can replace nano in the command with vi, gedit, or your own preferred editor. 2. While you ve got the xstartup script open, you may as well make another change. To allow copy/paste from the VNC viewer window to the client (e.g. Windows) machine, add the line vncconfig -nowin & before the two lines you just uncommented. In general, for vncconfig to work it must be called before the desktop environment startup (in this case, before those two lines). Page 4 of 13

5 3. Save the file. Your xstartup should now look similar to this: #!/ bin /sh # allow copy / paste, but do not pop up a window : vncconfig - nowin & # Uncomment the following two lines for normal desktop : unset SESSION_ MANAGER exec / etc / X11 / xinit / xinitrc [ -x / etc / vnc / xstartup ] && exec / etc / vnc / xstartup [ - r $HOME /. Xresources ] && xrdb $HOME /. Xresources xsetroot - solid grey # xterm - geometry 80 x ls - title $VNCDESKTOP Desktop " & 2.3 Creating a New VNC Session 1. Everything should now be set up, so start a new VNC session with a specific resolution and colour depth as follows (note: 24-bit colour is required for some CAD programs, e.g.: Cadence Virtuoso): borr ( tpepler ): ~ $vncserver - depth 24 - geometry 1920 x1080 New borr. doe. carleton.ca :9 ( tpepler ) desktop is borr. doe. carleton.ca :9 Starting applications specified in / home / tpepler /. vnc / xstartup Log file is / home / tpepler /. vnc / borr. doe. carleton.ca :9. log borr ( tpepler ): ~ $ 2. The first line that is printed by the vncserver program tells you which server and display number is associated with this new VNC session. In the example above, the server is borr.doe.carleton.ca and the display is 9. Take note of these, as you will need them to connect using your VNC viewer or when creating an SSH tunnel. 2.4 Listing Your VNC Sessions 1. The vncserver program maintains a set of files in your.vnc directory for each VNC session you have created. Currently running sessions are the files with a.pid extension, so to list your currently running sessions type ls ~/.vnc/*.pid. e.g.: Page 5 of 13

6 borr ( tpepler ): ~ $ls ~/. vnc /*. pid / home / tpepler /. vnc / loki :3. pid / home / tpepler /. vnc / borr. doe. carleton.ca :11. pid / home / tpepler /. vnc / loki :4. pid / home / tpepler /. vnc / borr. doe. carleton.ca :9. pid / home / tpepler /. vnc / loki :6. pid / home / tpepler /. vnc / oslo. doe. carleton.ca :1. pid borr ( tpepler ): ~ $ 2.5 Killing a VNC Session From time to time, you may need to close your VNC session (e.g. a program has locked up and you can t recover). To do this, you need to know the server and VNC display number. 1. SSH in to the server using PuTTY, as outlined in section 1.3. You must be SSH d (or logged in somehow) to the server with the VNC session you want to kill. 2. Now issue the command vncserver -kill :<display number to kill>. For example, if I wanted to kill my borr:11 session: borr ( tpepler ): ~ $vncserver - kill :11 Killing Xvnc process ID 7881 borr ( tpepler ): ~ $ 3 Adding an SSH Tunnel for Your VNC Session This section describes how to use an SSH tunnel to access your VNC session from outside the DOE network (e.g. somewhere else on campus, or off campus completely). 3.1 Find an Available Port to Use For Tunneling 1. On your Windows machine, open cmd.exe by: (a) Using the Start menu search to find a program called cmd.exe ; or (b) type [Windows key]+r to open a run dialog, and enter cmd. 2. At the cmd prompt enter netstat -ano find <port_number>". For the <port_number> you can put any number, but I suggest sticking to 4-digit numbers; 1234 seems to be open on most systems. 3. If the command returns nothing, then the port is available for your use (make a note of the number to use in a later part of the instructions). If the port is already being Page 6 of 13

7 used, the command will return some information about the port. An example of the command first for an unused port number, then a used port number are shown in figure 2. Figure 2: Example of finding an open ( 1234 ) and used ( 1972 ) port. 3.2 Add an SSH Tunnel to Your VNC Port 1. If you have the PuTTY prompt already open, click on the icon in the top left corner of the window (see figure 3) and choose Change Settings..., if you ve just started PuTTY but not opened a connection, make sure you ve loaded the settings for doe first (check that the Host Name and Port fields are set correctly). Either way, you should now see a PuTTY configuration window like that shown in figure On the navigation panel on the left, expand (if needed) Connection, and then SSH, then select Tunnels (you may need to scroll down). 3. In the Source port field, type in the open port you found in section 3.1. In the Destination field type in the port in the format localhost:<port> ; for VNC ports, Page 7 of 13

8 the port number is calculated as [5900] + [display number] (remember the one I told you to note down in section 2.3?). 4. Make sure the Local and Auto radio buttons are selected, then click Add to add this tunnel to the list. See figure 4 for an example. 5. Now select the Session category on the left pane of the PuTTY window, click doe and choose Save to save the setting you just changed (i.e. added a tunnel). 6. Finally, choose Apply at the bottom to apply the changes. Figure 3: The PuTTY window icon to access the Change Settings form. 4 Using a VNC Viewer to Access the VNC Session 4.1 Download, Install, and Run a VNC Viewer Any VNC viewer should work fine, however TigerVNC works best as it allows the session screen size to be dynamically adjusted as you change the viewer window size. Page 8 of 13

9 Figure 4: Adding a new SSH tunnel. Page 9 of 13

10 4.2 Launch PuTTY and Log In to the server If you were following the tutorial so far, PuTTY should already be running and logged into the DOE. Each time you want to access your VNC session (on or off campus), you will have to first launch PuTTY and log in as described in section Open the VNC Session 1. Make sure you have PuTTY running and logged in. 2. Open your VNC viewer, and in the server field enter localhost::<local port>, where <local port> is the Local port you entered in section 3.2, e.g. see figure Finally, click Connect, if you get a warning about this being an unencrypted connection just continue anyway (and you can opt to not have the warning again), next you should be prompted to enter the password that you set earlier, if that works your VNC session should pop up. Figure 5: Entering the server in the VNC Viewer dialog. 5 Adding and using SSH Tunnels for RDP (Windows machines) An alternative to VNC is Remote Desktop Protocol (RDP), and is what you would use to access most machines running the Windows OS, e.g. the VLSI Windows servers maintained by Nagui, or your office computer (if it s running Windows). The corresponding viewer, Remote Desktop Connection, is usually installed by default on Windows; it is also available for Mac OS X, and there are equivalents for Linux (and probably other OSes). The process for using SSH tunnels to allow RDP access is basically the same as for VNC, as shown below. Page 10 of 13

11 5.1 Adding the Tunnel 1. The default port for RDP is 3389 (although this can possibly be changed by the administrator; maybe there s a way to find what it is, please let me know if you find out how). 2. Follow the same steps as in 3.1 and 3.2, except the destination port should be 3389 (or whatever else, if not the default), e.g.: :3389. Note: For the VLSI servers maintained by Nagui, you will have to use the IP address rather than the machine name, as the DNS does not seem to be configured for them. Following is a list of the server names and corresponding IPs: Server IP address Rami Marianne macopeland Tewfik Michel Sobhi Galal Marie eli Mounir gabrielle knight gisele Celine Celine (using IPv6) fe80::716a:8e3e:e63:454b * IPv6 addresses like that shown are only supported in the latest (nightly) builds of PuTTY, and should be included in PuTTY 0.65, when it s released (I assume). You would need to surround the address in square brackets, e.g.: [fe80::1c90:cc21:63ad:da42]:3389. After trying all of that, it was still not working for me, let me know if you have any success. 5.2 Connecting to the Remote Machine 1. Open Remote Desktop Connection, and in the Computer field, type localhost:<local port number>, e.g. if I used port number 2345, that would be localhost:2345 (see figure 6). Page 11 of 13

12 2. Before connnecting, you can adjust display options by clicking Show Options, and then the Display tab (see figure 7). Here you can adjust the screen resolution of the remote session by dragging the slider. You can also use all monitors (if you have more than 1), by checking Use all my monitors... (although this may not work depending on the version of Windows running on the remote machine). As well, you can change the colour depth (24-bit is recommended since some programs cannot run with less). 3. After making any changes, click Connect and you should be prompted to enter your username and password. You have to make sure your username also includes the correct domain, in the format of <domain>\<username>, e.g. vlsi1\tpepler. The VLSI servers use the domain name of vlsi1 while any of the DOE computers have the domain of doe.carleton.ca. Figure 6: Example screenshot of Remote Desktop Connection for a tunnel through local port Page 12 of 13

13 Figure 7: Example screenshot of Remote Desktop Connection display options. Page 13 of 13

Remote Connection to the Zoo

Remote Connection to the Zoo YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE CPSC 427: Object-Oriented Programming Handout #3 Professor M. J. Fischer February 2, 2016 1 Introduction Remote Connection to the Zoo The Zoo computers can

More information

To remotely use the tools in the CADE lab, do the following:

To remotely use the tools in the CADE lab, do the following: To remotely use the tools in the CADE lab, do the following: Windows: PUTTY: Putty happens to be the easiest ssh client to use since it requires no installation. You can download it at: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

More information

Linux Development Getting Started

Linux Development Getting Started Linux Development Getting Started VB-Linux on your Laptop Convenient Option Compared to Remote Transformer Access First, on your Windows or Mac OS-X laptop, install Oracle Virtual-Box as follows: First,

More information

Introduction to Cuda Visualization. Graphical Application Tunnelling on Palmetto

Introduction to Cuda Visualization. Graphical Application Tunnelling on Palmetto Introduction to Cuda Visualization The CUDA programming paradigm is NVidia's development tool which is used to enable advanced computer processing on their GPGPU (General Purpose graphics Processing Units)

More information

Remote Access Via Remote Desktop

Remote Access Via Remote Desktop Remote Access Via Remote Desktop Remotely connecting to your office desktop requires a client-server interface using Remote Desktop. The following page describes the procedures for establishing a SSH Tunnel

More information

Remote Desktop How to guide

Remote Desktop How to guide CaseMap Remote Desktop for Windows User Contents How to open Remote Desktop Connection and Login to the Terminal Server... 2 How to save your connection settings and create a shortcut on your desktop...

More information

How to Configure an SSH Tunnel on PuTTY

How to Configure an SSH Tunnel on PuTTY How to Configure an SSH Tunnel on PuTTY YOU CAN USE A DYNAMIC TUNNEL TO ACCESS ALL REMOTE INFRASTRUCTURE. Most of you have probably used a tunnel with an SSH connection. What you probably weren t aware

More information

First-Time Login Procedure on XWin32

First-Time Login Procedure on XWin32 First-Time Login Procedure on XWin32 Configuring XWin32 The first time you log into X-Win32, you ll need to do a bit of profile setup; this is a one-time thing, and once done you shouldn t ever need to

More information

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04)

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) This guide will assist you in setting up a DogeCash Masternode on a Linux Server running Ubuntu 16.04. (Use at your own risk) If you require further

More information

Remote GUI access to a Linux computer using Tightvnc

Remote GUI access to a Linux computer using Tightvnc Remote GUI access to a Linux computer using Tightvnc The command line is a great way to manage a remote Linux computer if you don't mind typing in commands, but sometimes you need to be able to view a

More information

Running Sentaurus on the DOE Network

Running Sentaurus on the DOE Network Running Sentaurus on the DOE Network Department of Electronics Carleton University April 2016 Warning: This primer is intended to cover the DOE.CARLETON.CA domain. Other domains are not covered in this

More information

HOBLink Terminal Edition Quick guide

HOBLink Terminal Edition Quick guide HOBLink Terminal Edition Quick guide Installation: To install, we will need to download the HOBLink Terminal Edition 5.3.1 link that you were sent from the HOB Support team. Once downloaded, let us run

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

TSMC NA Secure Chamber Quick Start Guide V2.3

TSMC NA Secure Chamber Quick Start Guide V2.3 TSMC NA Secure Chamber Quick Start Guide V2.3 1. TSMC NA Secure Chamber supports windows client only, please use windows to connect to your chamber. 2. Citrix Receiver supports version 11 or above only,

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University Updated May 19, 2017

INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC. Nicholas Fitzkee Mississippi State University Updated May 19, 2017 INSTALLING AN SSH / X-WINDOW ENVIRONMENT ON A WINDOWS PC Installing Secure Shell (SSH) Client Nicholas Fitzkee Mississippi State University Updated May 19, 2017 The first thing you will need is SSH. SSH

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

Ion Client User Manual

Ion Client User Manual Ion Client User Manual Table of Contents About Ion Protocol...3 System Requirements... 4 Hardware (Client)... 4 Hardware (Server Connecting to)... 4 Software (Ion Client)... 4 Software (Server Connecting

More information

SET UP VPN FOR WINDOWS 10

SET UP VPN FOR WINDOWS 10 SET UP VPN FOR WINDOWS 10 A VPN (Virtual Private Network) provides a secure, encrypted tunnel from your computer to UHCL's network when off campus. UHCL offers VPN software to allow authenticated, secure

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website

Appserv Internal Desktop Access Mac OS Device with Safari Browser. Enter your Appserv username and password to sign in to the Website Appserv Desktop Access Logging on from a Mac OS device Step 1. To sign in to the Appserv Desktop Access website, enter the following address into the Safari browser address bar. Please Note: This documentation

More information

When you first log in, you will be placed in your home directory. To see what this directory is named, type:

When you first log in, you will be placed in your home directory. To see what this directory is named, type: Chem 7520 Unix Crash Course Throughout this page, the command prompt will be signified by > at the beginning of a line (you do not type this symbol, just everything after it). Navigation When you first

More information

Remote Access to Matlab at Mason. CDS-130: Computing for Scientists. Spring Jie Zhang

Remote Access to Matlab at Mason. CDS-130: Computing for Scientists. Spring Jie Zhang Remote Access to Matlab at Mason CDS-130: Computing for Scientists Spring 2013 Jie Zhang Credit: Joseph Marr, Samantha Fleming Accessing Matlab at Mason There are four different methods to access Matlab

More information

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not?

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Trying to commit a first file. There is nothing on

More information

This document is intended to help you connect to the CVS server on a Windows system.

This document is intended to help you connect to the CVS server on a Windows system. Sourceforge CVS Access Sourceforge CVS Access... 1 Introduction... 1 Tools... 1 Generate Public / Private Keys... 1 Configuring Sourceforge Account... 4 Loading Private Keys for Authentication... 7 Testing

More information

OFFICIAL USER MANUAL 1

OFFICIAL USER MANUAL 1 OFFICIAL USER MANUAL 1 Contents: Getting Started with Musician Video Maker 3 Launching And Activating Musician Video Maker 3 Beta Tester Users 5 Start Mode And Demo Mode 6 Importing Your Video Footage

More information

Setting up my Dev Environment ECS 030

Setting up my Dev Environment ECS 030 Setting up my Dev Environment ECS 030 1 Command for SSHing into a CSIF Machine If you already have a terminal and already have a working ssh program (That is, you type ssh into the terminal and it doesn

More information

Amazon Web Services Hands on EC2 December, 2012

Amazon Web Services Hands on EC2 December, 2012 Amazon Web Services Hands on EC2 December, 2012 Copyright 2011-2012, Amazon Web Services, All Rights Reserved Page 1-42 Table of Contents Launch a Linux Instance... 4 Connect to the Linux Instance Using

More information

RDAV Tutorial: Hands-on with VisIt on Nautilus If you want to work hands-on, you will need to install VisIt and

RDAV Tutorial: Hands-on with VisIt on Nautilus  If you want to work hands-on, you will need to install VisIt and RDAV Tutorial: Hands-on with VisIt on Nautilus http://rdav.nics.tennessee.edu/ If you want to work hands-on, you will need to install VisIt and register a password token. The data that we are using today

More information

How to SSH to nice.fas.harvard.edu from Windows

How to SSH to nice.fas.harvard.edu from Windows How to SSH to nice.fas.harvard.edu from Windows Recall that nice.fas.harvard.edu refers to a cluster of computers running Linux on which you have an account (your so-called FAS account). Even though those

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

Installing Exceed. (Exceed Exceed 14 3D + SecureShell 14) Introduction

Installing Exceed. (Exceed Exceed 14 3D + SecureShell 14) Introduction Installing Exceed (Exceed 14.0 + Exceed 14 3D + SecureShell 14) Introduction University of Sheffield has a site license for the X-Windows terminal emulation software named Exceed. ( For information: Exceed

More information

Power Development Platform Connecting to your PDP system user guide

Power Development Platform Connecting to your PDP system user guide Power Development Platform Connecting to your PDP system user guide Document Version 4 May 9, 2017 FOREWORD This document is intended for the users trying to access PDP for the first time. This document

More information

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup

CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup CSE 101 Introduction to Computers Development / Tutorial / Lab Environment Setup Purpose: The purpose of this lab is to setup software that you will be using throughout the term for learning about Python

More information

Lab Zero: A First Experiment Using GENI and Jacks Tool

Lab Zero: A First Experiment Using GENI and Jacks Tool Lab Zero: A First Experiment Using GENI and Jacks Tool These instructions are at: http://tinyurl.com/geni labzero Overview This is a first, simple experiment on GENI useful for familiarizing new experimenters

More information

LAB #5 Intro to Linux and Python on ENGR

LAB #5 Intro to Linux and Python on ENGR LAB #5 Intro to Linux and Python on ENGR 1. Pre-Lab: In this lab, we are going to download some useful tools needed throughout your CS career. First, you need to download a secure shell (ssh) client for

More information

Managing terminal sessions with screen. R. Bader (LRZ) G. Hager (RRZE) V. Weinberg (LRZ)

Managing terminal sessions with screen. R. Bader (LRZ) G. Hager (RRZE) V. Weinberg (LRZ) Managing terminal sessions with screen R. Bader (LRZ) G. Hager (RRZE) V. Weinberg (LRZ) Overview What is screen? screen is a text-based window manager that can handle multiple shell sessions from a single

More information

eggplant v11.0 Mac OS X EggPlant: Getting Started

eggplant v11.0 Mac OS X EggPlant: Getting Started eggplant v11.0 Mac OS X EggPlant: Getting Started Copyright 2011 TestPlant Inc. Eggplant: Getting Started Trademarks Eggplant, the Eggplant logos, TestPlant, and the TestPlant logo are trademarks or registered

More information

Your desktop or laptop computer consists of several hardware components:

Your desktop or laptop computer consists of several hardware components: Appendix A VirtualBox This appendix describes the role of an operating system on your desktop or laptop computer, how virtualization packages enable you to simultaneously run multiple operating systems

More information

Session 1: Accessing MUGrid and Command Line Basics

Session 1: Accessing MUGrid and Command Line Basics Session 1: Accessing MUGrid and Command Line Basics Craig A. Struble, Ph.D. July 14, 2010 1 Introduction The Marquette University Grid (MUGrid) is a collection of dedicated and opportunistic resources

More information

How to SFTP to nice.fas.harvard.edu from Windows

How to SFTP to nice.fas.harvard.edu from Windows How to SFTP to nice.fas.harvard.edu from Windows Recall that nice.fas.harvard.edu refers to a cluster of computers running Linux on which you have an account (your so-called FAS account). On this cluster

More information

Linux hep.wisc.edu

Linux hep.wisc.edu Linux Environment @ hep.wisc.edu 1 Your Account : Login Name and usage You are given a unique login name (e.g. john) A temporary password is given to you Use this to login name and password to enter the

More information

Anvil: HCC's Cloud. June Workshop Series - June 26th

Anvil: HCC's Cloud. June Workshop Series - June 26th Anvil: HCC's Cloud June Workshop Series - June 26th Anvil: HCC's Cloud OpenStack Cloud Resource offering customizable virtual machines For projects not well served by a traditional Linux environment: Software

More information

Configuring Microsoft Outlook to Connect to Hosted Exchange Service

Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook for Hosted Exchange Service Version: 1.0 Updated on: April 27, 2011 Page 1 of 7 TABLE OF CONTENTS Configuring

More information

Communication protocols and services

Communication protocols and services This chapter describes various protocols and that may be enabled on Modberry. SSH Connection SSH service is started up on boot and already preinstalled and configured. You may access your device through

More information

Lab 1: Accessing the Linux Operating System Spring 2009

Lab 1: Accessing the Linux Operating System Spring 2009 CIS 90 Linux Lab Exercise Lab 1: Accessing the Linux Operating System Spring 2009 Lab 1: Accessing the Linux Operating System This lab takes a look at UNIX through an online experience on an Ubuntu Linux

More information

ECE112 - Lab 6. Purpose. Parts/tools needed: Make sure we have a properly working environment

ECE112 - Lab 6. Purpose. Parts/tools needed: Make sure we have a properly working environment ECE112 - Lab 6 Purpose Make sure everyone can access a Linux host Get further acquainted with Linux Create a spice netlist, run a simulation Create a lab report using Latex Parts/tools needed: Your laptop

More information

Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University

Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University Install & Configure Windows 10, Visual Studio, & MySQL Dr. Tom Hicks Trinity University Windows 10 Install 1] Push the Next Button. 2] Push the Install Now Button. Windows-Database-Server-Installation-1.docx

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

How to Install, Configure and Use sftp (Windows Version)

How to Install, Configure and Use sftp (Windows Version) How to Install, Configure and Use sftp (Windows Version) The sftp secure File Transfer Protocol allows you to transfer patient datasets to and from IDT s server securely. All data transfers are encrypted

More information

Lab Zero: A First Experiment Using GENI and Jacks Tool

Lab Zero: A First Experiment Using GENI and Jacks Tool GENIExperimenter/Tutorials/jacks/GettingStarted_PartI/Procedure GENI: geni 2/27/16, 14:35 Lab Zero: A First Experiment Using GENI and Jacks Tool These instructions are at: http://tinyurl.com/geni-labzero

More information

Installing Komplete 5 with Direct Install

Installing Komplete 5 with Direct Install Installing Komplete 5 with Direct Install This document discusses how to use Receptor s Direct Install feature to install and update Komplete 5, its plugins, and its libraries. In order to install Komplete

More information

Guide for Attempting an HDP Certification Practice Exam. Revision 2 Hortonworks University

Guide for Attempting an HDP Certification Practice Exam. Revision 2 Hortonworks University Guide for Attempting an HDP Certification Practice Exam Revision 2 Hortonworks University Overview Hortonworks University has developed a practice environment that emulates our actual exam environment.

More information

Helsinki 19 Jan Practical course in genome bioinformatics DAY 0

Helsinki 19 Jan Practical course in genome bioinformatics DAY 0 Helsinki 19 Jan 2017 529028 Practical course in genome bioinformatics DAY 0 This document can be downloaded at: http://ekhidna.biocenter.helsinki.fi/downloads/teaching/spring2017/exercises_day0.pdf The

More information

Contents. Last updated: 18 th August 2017

Contents. Last updated: 18 th August 2017 DRM Lite in Firefox DRM Lite is the new way for British Library to deliver electronic documents securely. When a document is requested via this service the document is locked so that only one user can

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Using the Zoo Workstations

Using the Zoo Workstations Using the Zoo Workstations Version 1.86: January 16, 2014 If you ve used Linux before, you can probably skip many of these instructions, but skim just in case. Please direct corrections and suggestions

More information

Datathon 2018 Connecting to MicroStrategy on AWS Cloud

Datathon 2018 Connecting to MicroStrategy on AWS Cloud Datathon 2018 Connecting to MicroStrategy on AWS Cloud Introduction This document describes how to connect to MicroStrategy on AWS cloud. The first part will show screenshots and introduction to the MicroStrategy

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

Linux for Biologists Part 2

Linux for Biologists Part 2 Linux for Biologists Part 2 Robert Bukowski Institute of Biotechnology Bioinformatics Facility (aka Computational Biology Service Unit - CBSU) http://cbsu.tc.cornell.edu/lab/doc/linux_workshop_part2.pdf

More information

New User Tutorial. OSU High Performance Computing Center

New User Tutorial. OSU High Performance Computing Center New User Tutorial OSU High Performance Computing Center TABLE OF CONTENTS Logging In... 3-5 Windows... 3-4 Linux... 4 Mac... 4-5 Changing Password... 5 Using Linux Commands... 6 File Systems... 7 File

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

STA 303 / 1002 Using SAS on CQUEST

STA 303 / 1002 Using SAS on CQUEST STA 303 / 1002 Using SAS on CQUEST A review of the nuts and bolts A.L. Gibbs January 2012 Some Basics of CQUEST If you don t already have a CQUEST account, go to www.cquest.utoronto.ca and request one.

More information

Touch Dynamic Quest II 7 - Tablet Staging Setup

Touch Dynamic Quest II 7 - Tablet Staging Setup Touch Dynamic Quest II 7 - Tablet Staging Setup Overview This page was written to assist with setting up and staging of tablets. Touch Dynamic Quest II 7 - Initializing and Turning on the Tablet 1. When

More information

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011)

UoW HPC Quick Start. Information Technology Services University of Wollongong. ( Last updated on October 10, 2011) UoW HPC Quick Start Information Technology Services University of Wollongong ( Last updated on October 10, 2011) 1 Contents 1 Logging into the HPC Cluster 3 1.1 From within the UoW campus.......................

More information

Placing a Video Call with Zoom PC/Mac

Placing a Video Call with Zoom PC/Mac Placing a Video Call with Zoom PC/Mac Document Outline: To sign up for a PIR Zoom profile and download the Zoom App on any device... p. 1 To search ExpertBook and contact a subject matter expert... p.

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

Web Console Setup & User Guide. Version 7.1

Web Console Setup & User Guide. Version 7.1 Web Console Setup & User Guide Version 7.1 1 Contents Page Number Chapter 1 - Installation and Access 3 Server Setup Client Setup Windows Client Setup Mac Client Setup Linux Client Setup Interoperation

More information

Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins Menu Sequence: VM / Guest / Send Ctrl-Alt-Delete

Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins Menu Sequence: VM / Guest / Send Ctrl-Alt-Delete CIS 231 Windows 2008 Server Install Lab #1 (Virtual Machines) Keys to Remember when using the vsphere client. Send the Ctrl-Alt-Delete key sequence to the Guest OS one of two ways: Key sequence: Ctlr-Alt-Ins

More information

New Dropbox Users (don t have a Dropbox account set up with your Exeter account)

New Dropbox Users (don t have a Dropbox account set up with your Exeter  account) The setup process will determine if you already have a Dropbox account associated with an Exeter email address, and if so, you'll be given a choice to move those contents to your Phillips Exeter Dropbox

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK

MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK MySQL SERVER INSTALLATION, CONFIGURATION, AND HOW TO USE WITH STARCODE NETWORK This document describes how to install MySQL server (5.7.19) on Windows PC, and how to use StarCode Network with MySQL server

More information

College of Pharmacy Windows 10

College of Pharmacy Windows 10 College of Pharmacy Windows 10 Windows 10 is the version of Microsoft s flagship operating system that follows Windows 8; the OS was released in July 2015. Windows 10 is designed to address common criticisms

More information

ChemSense Studio Client Version 3.0.7

ChemSense Studio Client Version 3.0.7 Quick Start Guide: ChemSense Studio Client Version 3.0.7 January 5, 2005 Comments/Questions/Bug Report? E-mail: chemsense-contact@ctl.sri.com Background The ChemSense Studio Client software supports the

More information

What is VMware View. IMPORTANT: Connecting from Off-Campus. Connecting to View Desktops. Downloading the Client

What is VMware View. IMPORTANT: Connecting from Off-Campus. Connecting to View Desktops. Downloading the Client 1. What is VMware View 2. Connecting from Off-Campus 3. Connecting to View Desktops 4. Extra View Tips 5. What to do if something is wrong What is VMware View VMware View is a technology that allows us

More information

Installing and Configuring Cisco Unified Real-Time Monitoring Tool

Installing and Configuring Cisco Unified Real-Time Monitoring Tool CHAPTER 2 Installing and Configuring Cisco Unified Real-Time Monitoring Tool You can install Cisco Unified Real-Time Monitoring Tool (RTMT), which works for resolutions 800*600 and above, on a computer

More information

CSE 390 Lecture 10. Do anything from anywhere tools to free your choice of OS

CSE 390 Lecture 10. Do anything from anywhere tools to free your choice of OS CSE 390 Lecture 10 Do anything from anywhere tools to free your choice of OS slides created by Marty Stepp, modified by Jessica Miller and Ruth Anderson http://www.cs.washington.edu/390a/ 1 Important Announcement

More information

FTP Frequently Asked Questions

FTP Frequently Asked Questions Guide to FTP Introduction This manual will guide you through understanding the basics of FTP and file management. Within this manual are step-by-step instructions detailing how to connect to your server,

More information

Workshop on Genomics 2018

Workshop on Genomics 2018 Instructors Workshop on Genomics 2018 Connecting to the cloud and starting an instance. Guy Leonard - guy.leonard@gmail.com Workshop Team Objectives By the end of this session, you will be expected to

More information

How To: Panopto Tutorial for Faculty & Staff

How To: Panopto Tutorial for Faculty & Staff How To: Panopto Tutorial for Faculty & Staff Information Technology Help Desk Colorado Mesa University 8/22/2016 CMU Help Desk: 970-248-2111 or http://whd.coloradomesa.edu Page 0 Table of Contents What

More information

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines Introduction to UNIX Logging in Basic system architecture Getting help Intro to shell (tcsh) Basic UNIX File Maintenance Intro to emacs I/O Redirection Shell scripts Logging in most systems have graphical

More information

Installing and Configuring Cisco Unified Real-Time Monitoring Tool

Installing and Configuring Cisco Unified Real-Time Monitoring Tool CHAPTER 2 Installing and Configuring Cisco Unified Real-Time Monitoring Tool You can install Cisco Unified Real-Time Monitoring Tool (RTMT), which works for resolutions 800*600 and above, on a computer

More information

EECS 1710 SETTING UP A VIRTUAL MACHINE (for EECS labs)

EECS 1710 SETTING UP A VIRTUAL MACHINE (for EECS labs) EECS 1710 SETTING UP A VIRTUAL MACHINE (for EECS labs) In this tutorial, we will work through the process of setting up a virtual machine on your home desktop/laptop, that reflects the working environment

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

CMPSCI 120 Fall 2017 Lab #1 Professor William T. Verts

CMPSCI 120 Fall 2017 Lab #1 Professor William T. Verts CMPSCI 120 Fall 2017 Lab #1 Professor William T. Verts The Goal The ultimate goal of this assignment is to create a Web page on the server, make sure it is visible to the outside world, and to design and

More information

Linux Tutorial #1. Introduction. Login to a remote Linux machine. Using vim to create and edit C++ programs

Linux Tutorial #1. Introduction. Login to a remote Linux machine. Using vim to create and edit C++ programs Linux Tutorial #1 Introduction The Linux operating system is now over 20 years old, and is widely used in industry and universities because it is fast, flexible and free. Because Linux is open source,

More information

Remote Access User Guide for Mac OS (Citrix Instructions)

Remote Access User Guide for Mac OS (Citrix Instructions) (Citrix Instructions) VERSION: 003 PUBLISHED: 2/2018 Page 1 of 8 Remote Access User Guide for Mac OS Please follow the steps outlined in this guide which will show you how to access the Clarion Partners

More information

CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C

CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C CpSc 1111 Lab 1 Introduction to Unix Systems, Editors, and C Welcome! Welcome to your CpSc 111 lab! For each lab this semester, you will be provided a document like this to guide you. This material, as

More information

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox

1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu. FireFox CIS 231 Windows 7 Install Lab #2 1) Use either Chrome of Firefox to access the VMware vsphere web Client. https://vweb.bristolcc.edu CHROME At the your connection is not private message, click Advanced

More information

Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up

Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up Author : admin Recently I blogged How to create dynamic and static SSH tunnels

More information

Lab 2: Setting up secure access

Lab 2: Setting up secure access Lab 2: Setting up secure access Oracle Database Cloud Service Hands On Lab This lab is divided into 3 parts 1. Securely Connecting to DBCS instance using Putty 2. Configuring SQL Developer for Secure Access

More information

UNT System Campus VPN Guide

UNT System Campus VPN Guide Contents Introduction... 3 SSL Web Portal... 4 Installing AnyConnect VPNClient... 12 Connecting AnyConnect VPN client... 16 IPSec Client Configuration... 18 Apple OS X Configuration... 21 Android Configuration...

More information

Installing Oxwall completely in Amazon Cloud

Installing Oxwall completely in Amazon Cloud Contents Installing Oxwall completely in Amazon Cloud... 1 PART 1 Creating AWS Instance... 1 Section 1 Security Group... 1 Section 2 - A LAMP-friendly instance... 2 Section 3 - The Elastic IP... 5 PART

More information

Secure Web Appliance. Basic Usage Guide

Secure Web Appliance. Basic Usage Guide Secure Web Appliance Basic Usage Guide Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About this Manual... 1 1.2.1. Document Conventions... 1 2. Description of the

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

San Jacinto College. Secure SSL VPN Instruction Manual. Contents

San Jacinto College. Secure SSL VPN Instruction Manual. Contents 1 San Jacinto College Secure SSL VPN Instruction Manual The new Secure SSL VPN provides a more secure and convenient method of accessing San Jacinto College resources remotely. This document provides an

More information

How To: Panopto Tutorial for Faculty & Staff

How To: Panopto Tutorial for Faculty & Staff How To: Panopto Tutorial for Faculty & Staff Information Technology Help Desk Colorado Mesa University 8/22/2016 CMU Help Desk: 970-248-2111 or http://whd.coloradomesa.edu Page 0 Table of Contents What

More information