CPSC150L Lab 0 Lab Set Up

Size: px
Start display at page:

Download "CPSC150L Lab 0 Lab Set Up"

Transcription

1 CPSC150L Lab 0 Lab Set Up Fall 2016 Welcome to the laboratory exercises that accompany the lecture course CPSC 150 Computers and Programming I. These lab exercises are designed to support and complement the material presented in lectures; however, the lab and lecture may cover topics at different times or with a different emphasis. In this first lab, we will get acquainted with the software that will support our main goal: creating computer programs using the Java programming language. It is not the intention of this first lab to emphasize Java programming; instead you are to take the Java programs provided for you and learn how to use the tools in this lab to create an test programs. If you have questions regarding why a particular program behaves as it does, feel free to ask your lab instructor, but understand that the details of the programs will be addressed in lecture and in the following labs. 1 Structure of the Labs Grading: Labs have questions and exercises that you should complete. Pay careful attention to the instructions regarding how the questions are to be graded. For the majority of the lab exercises, you will use a automated grader called WebCAT to check the correctness of the program. For the exercises that are not graded by WebCAT, your instructor will verify the correctness of your code. The number of questions you answer and the exercises you c Christopher Newport University,

2 complete will determine your total grade. Additionally, your instructor may enforce certain code conventions such as requiring all code to be properly indented. Your instructor will give you the specific grading scale for your particular section. Be sure to ask your instructor for details associated with the grading of each lab. The goal of the lab is to provide you with an instructor that will assist you with the questions you encounter. In order to do so, WebCAT is integrated into the grading aspects of the course so that your instructor can focus on answering your questions instead of determining the correctness of your programs. You may consult with other students in the lab to complete your work as the course incorporates a team programming philosophy, and encourages discussion. You must program the solutions yourself; be careful to understand the difference between working together and copying the work of others. Late submissions: Your instructor will determine how and if late lab submissions are allowed, so be sure to check with your instructor. Be aware that these labs are created and ordered to enhance your success in CPSC150, and that completing these labs after their due dates could result in you being unprepared for an assignment in the lecture. Online Content: Your instructor will provide you with the location of online content to support this course, including the lab manuals, the unit tests, reference materials including Java source files where applicable, links to relevant online content, and instructional videos. 2

3 2 Operating System Essentials 2.1 Logging In Be sure to read this entire section before attempting to log in. You should have received, via , or will soon be receiving information to log into your PCSE account. If you have already taken a course in the department, your username and password remains the same. This account is not the same account you use to read your CNU , instead it provides access to the departmental file server. Type your username and password and press the button labeled Log In. If you are unsuccessful in logging in, check for the following. 1. Are you using the correct password? (It s not your cnu.edu password!) 2. Passwords are case-sensitive. For example, M is different from m. 3. CAPS LOCK key should not be pressed in 4. NUM LOCK key should not be pressed in 5. Capital O looks similar to numeral 0. Are you tapping the correct key? 6. Uppercase I looks similar to lower case L and numeral 1 (one). Are you tapping the correct key? If you have not been successful despite after making the above adjustments, see your instructor for assistance in determining your password. If your instructor does not know your password, you may need to contact the system administrator to obtain it or have it reset. Your instructor can help you with this. There are many situations which might delay your obtaining the proper account information if we do not have correct addresses or the most up-to-date registration. In this case, there is an alternative way to log into the system as a generic user. Ask your instructor for details. The drawback of using this alternative is that you will not have access to your files 3

4 on the server and you will not be able to save to the server. You should start using your username and password as soon as you can. 2.2 Ownership of Files The most important concept to grasp from the beginning is how your files will be stored and managed, so let s start with the process of establishing how to log in with your username and password which will be used to manage file ownership. Picture the organization as follows. Figure 1: Computer Organization As you work on the workstation in the lab, you determine whether the file will be stored on the machine in the lab, or on the file server. Here are a few primary reasons that you want to store files on the files server. The images on the lab machines may be reset every time the machine is rebooted. This means that anything you store on this machine will be deleted. 4

5 You want to be able to access your account files from any machine in the lab and from your dorm room. You want the files password protected and backed up to a secondary storage. Storing the files on the file server provides protection, global access and backup of you files. So... store your files on the file server when possible. The name of the file server we will be using is Samba and can be found by clicking on Computer in the Window start menu, denoted as S:. 2.3 Access to Server Storage Once you have logged on with your personal username and password, you will be able to access the file server. On Windows, this will be through a network drive (specifically as drive S:\). On Mac OSX, this will be your home directory. If you had to log in with the generic username, you will NOT have access to this server resource until your login problems are resolved, but you can still store your work on the C: drive or Mac Desktop and complete this lab. However, once you log out or restart the machine, your files will be erased. You should save any files you would like to keep to a thumbdrive or by ing the files to yourself. It is important that you read over this section and then revisit the section after you get your username and password. 3 Files and Directories Whether you are using a remote file server or your local machine to store your programs, one needs a basic understanding of the organization of the file system of your OS. There are videos to help explain files and directories, using Windows directories as the point of focus. If you feel that you need further assistance, watch the instructional videos. 5

6 Files and Directories The C: Drive These are only included as a resource to bring your level of understanding to a minimal level, so use your own discretion to determine what is necessary. Also remember that you have your instructor and student tutors to assist you. In the event that you need help with the notion of directories and drives in Windows, there are a number of videos on the course website to assist with this. View the videos depending on your current expertise. They are not lengthy, so if you have questions about whether to view them or not... watch them! The important points to remember are the following. There are two locations on the lab machines where you should store your files, namely Code: C:\Users\<your username>\my Documents\ and Code: S:\Windows\My Documents\. If you logged in with the generic username, then you will not have access to the S: drive. Otherwise, you logged into your personal account and should see the S: drive under My Computer (Windows 7) or This PC (Windows 10). Everything on this drive is your account, but you should still be careful about how you use this space. Do not delete any of the files that are already in your account. Instead create new directories on this drive for storage and organization of your assignments. Contents on the S: drive can only be accessed by you, however you can access them from any PCSE computer. If it is necessary to use the C: drive location (your account is not yet set up), understand that these files are very frequently deleted and also are readable and writable by anyone 6

7 who logs on with that username. This is especially problematic if you had to log on as the generic user. In the case of the generic user, all files from the session are purged when you log off, so be careful! 4 Setting Up Your Computer This section focuses on installing the Java Development Kit (JDK) and jedit. 4.1 Installing Java on Your Personal Computer If you have the JDK installed, ensure that its version is at least 1.8. If you do not, download the JDK (called the Java SE Development Kit) for your operating system from Note, this is different from the Java Runtime Engine (JRE), which allows you to execute existing Java programs but not develop new ones. Make sure you remember the version number (8u##) that you downloaded as this will be important in a couple of steps. If you own a Mac, your machine likely already has the updates appropriate for your version of the MacOS. You will still need to do the second step and install jedit. Questions regarding Java and MacOS can generally be answered at If you own a PC, a Flash movie is available to guide you though this process. When you access the course web site (available from your instructor) to run the video, you may be asked if you want to install the Flash player, and if so, respond to do that installation also. Watching the video only takes about 5-6 minutes and the actual process of installation of Java takes a little longer. You can watch the video, and step through your own installation at the same time, pausing the movie when relevant. The video for Java installation can be found at the course web site and is named Setting up Java. 7

8 4.2 Configuring Your Computer for Java Development In order to properly configure your personal computer for using command-line Java, it is necessary to modify environment variables. Watch the Environment Variables video for instructions on how to configure environment variables for Java on a Windows PC. If you are on Mac or Linux, you are ready to program. If you have an aversion to videos, then navigate to My Computer (Windows 7) or This PC (Windows 10) and right click inside the window and then click Properties. In the window that pops up, click Advanced System Settings. A window with a button titled Environment Variables should pop up. If there is a field under User variables called PATH, then go ahead and click it and then click edit. In this, you will add the path to the JVM, usually Code: C:\Program Files\java\jdk<version>\bin and then hit OK. You only need to perform the above activities once for your machine. These configurations have already been applied to the lab machine, so upon completion of these tasks your machine should perform identically to the lab machines. 4.3 Installing jedit jedit is a text editor that will be used to create Java programs. jedit requires the installation of Java, so be sure you have gone through the previous steps before installing jedit. All users will need to install jedit as it is not a default installation of any operating system. You can find the download for jedit at If you need help, a video to assist you with this process is available at the course web site and is named Installing jedit. 8

9 4.4 Transferring Files Between Your Computer and the File Server At this point, the easiest mechanism for transfer is to use a simple USB drive or a cloud storage service. You can also yourself you lab files. Additionally, CNU provides a Git server at if you wish to use that. 9

CPSC 150 Laboratory Manual. Lab 1 Introduction to Program Creation

CPSC 150 Laboratory Manual. Lab 1 Introduction to Program Creation CPSC 150 Laboratory Manual A Practical Approach to Java, jedit & WebCAT Department of Physics, Computer Science & Engineering Christopher Newport University Lab 1 Introduction to Program Creation Welcome

More information

The Blackboard 5.5 Student Guide

The Blackboard 5.5 Student Guide The Blackboard 5.5 Student Guide Release Version 2.1 Spring 2003 Semester Chris Matthew Tkaczyk Title III Office The Blackboard 5.5 Student Guide Table of Contents What is Internet Explorer?... 1 How do

More information

Lab 1 1 Due Wed., 2 Sept. 2015

Lab 1 1 Due Wed., 2 Sept. 2015 Lab 1 1 Due Wed., 2 Sept. 2015 CMPSC 112 Introduction to Computer Science II (Fall 2015) Prof. John Wenskovitch http://cs.allegheny.edu/~jwenskovitch/teaching/cmpsc112 Lab 1 - Version Control with Git

More information

Developing Android applications in Windows

Developing Android applications in Windows Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

Download and Installation Instructions. Java JDK Software for Windows

Download and Installation Instructions. Java JDK Software for Windows Download and Installation Instructions for Java JDK Software for Windows Updated October, 2017 The CompuScholar Java Programming and Android Programming courses use the Java Development Kit (JDK) software.

More information

Lasell College s Moodle 3 Student User Guide. Access to Moodle

Lasell College s Moodle 3 Student User Guide. Access to Moodle Access to Moodle The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. 1. The homepage of Lasell Learning Management System Moodle is

More information

How to Test and Use the Cisco WebEx Client

How to Test and Use the Cisco WebEx Client Introduction When you register for one of our classes, all of the information you ll need to attend the class, access labs and reach out for support are centralized in our Registration Info Tab in the

More information

Students Guide to Desire2Learn

Students Guide to Desire2Learn Students Guide to Desire2Learn Created By: Justin Poggemann Updated by Kimberly Ross on June 1 st 2008 Desire2Learn Table of Contents: System Requirements How to get to Desire2Learn Log-On Procedures Secure/Non

More information

Eclipse Environment Setup

Eclipse Environment Setup Eclipse Environment Setup Adapted from a document from Jeffrey Miller and the CS201 team by Shiyuan Sheng. Introduction This lab document will go over the steps to install and set up Eclipse, which is

More information

Setting up your Computer

Setting up your Computer Setting up your Computer 1 Introduction On this lab, you will be getting your computer ready to develop and run Java programs. This lab will be covering the following topics: Installing Java JDK 1.8 or

More information

Instructions PLEASE READ (notice bold and underlined phrases)

Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercises wk02 Lab Basics First Lab of the course Required Reading Java Foundations - Section 1.1 - The Java Programming Language Instructions PLEASE READ (notice bold and underlined phrases) Lab Exercise

More information

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse Goals - to become acquainted with the Linux/Gnome environment Overview For this lab, you will login to a workstation

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Lab Install Windows 8

Lab Install Windows 8 Introduction In this lab, you will install Windows 8.1 and 8.0. Recommended Equipment A computer with a blank hard disk drive Windows 8.1 and 8.0 installation DVD or USB flash drive Step 1: Starting the

More information

IntelliJ IDEA Getting Started Guide for FIRST Robotics Competition

IntelliJ IDEA Getting Started Guide for FIRST Robotics Competition IntelliJ IDEA 2016.1 Getting Started Guide for FIRST Robotics Competition 1 PRE-REQUISITES GitHub account. Knowledge of your computer and how to use it. Administrator Account on your computer. Access to

More information

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ).

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ). How to Activate Student E-Mail 1. Log in to the student Registration system (also known as My Community Education or Banner ). 2. The new account notice shows at the top of the screen once signed in. Click

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

Installation Guide - Windows

Installation Guide - Windows Kony Visualizer Enterprise Installation Guide - Windows Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET. Installation Guide

A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET. Installation Guide A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET Installation Guide HOW TO INSTALL THE SPESCOIN GUI WALLET SYSTEM REQUIREMENT: Ensure you have Java Runtime Environment

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

Flash Video Encoder CS3 Fetch Microsoft Office 2004 (Excel, imovie. Powerpoint, Word, Entourage) itunes

Flash Video Encoder CS3 Fetch Microsoft Office 2004 (Excel, imovie. Powerpoint, Word, Entourage) itunes Welcome This is a small packet of information concerning some of the simpler uses of technology in the department, how to transfer files, change your password, that sort of thing. In this department, we

More information

Classroom Technology: Rike 206

Classroom Technology: Rike 206 Classroom Technology: Rike 206 03/29/2018 Scan QR code for more Classsroom resources! ACCESS THE WINDOWS DESKTOP Login to the Classroom Workstation Press CTRL+ALT+DEL to open the login screen Enter your

More information

Remote Proctor Now Student Guide

Remote Proctor Now Student Guide Remote Proctor Now Student Guide Website... 2 Video Walkthrough... 2 Authentication... 2-8 Taking an exam... 8-12 Common Errors... 13 1 RPNow Student/Exam Taker Guide Website: http://www.remoteproctor.com/rpinstall/

More information

CompClass Solo User Guide for Instructors

CompClass Solo User Guide for Instructors CompClass Solo User Guide for Instructors CompClass Solo User Guide for Instructors Table of Contents Overview... 1 Online Help... 1 System Requirements... 2 Adopting CompClass... 2 Student Access to CompClass...

More information

Moodle FAQ. How do I login to Moodle?

Moodle FAQ. How do I login to Moodle? Moodle FAQ How do I login to Moodle? Why can't I login to Moodle? What do I need to use Moodle? How do I allow cookies for Moodle? How do I allow pop-ups for Moodle? How do I enable JavaScript? How do

More information

Cmpt 101 Lab 1 - Outline

Cmpt 101 Lab 1 - Outline Cmpt 101 Lab 1 - Outline Instructions: Work through this outline completely once directed to by your Lab Instructor and fill in the Lab 1 Worksheet as indicated. Contents PART 1: GETTING STARTED... 2 PART

More information

RMI ADVANTAGE Desktop User Guide. February 2010

RMI ADVANTAGE Desktop User Guide. February 2010 RMI ADVANTAGE Desktop User Guide February 2010 Table of Contents Contents Logging into the SaaS environment... 3 Logging off the Hosted Desktop... 9 Directories... 10 Wizmo AdminSet... 11 Shadowing a User...

More information

Key File Generation. November 14, NATIONAL STUDENT CLEARINGHOUSE 2300 Dulles Station Blvd., Suite 220, Herndon, VA 20171

Key File Generation. November 14, NATIONAL STUDENT CLEARINGHOUSE 2300 Dulles Station Blvd., Suite 220, Herndon, VA 20171 Key File Generation NATIONAL STUDENT CLEARINGHOUSE 2300 Dulles Station Blvd., Suite 220, Herndon, VA 20171 Table of Contents Introduction... 2 PuTTY Installation... 2 Key Generation... 7 Configuring PuTTY

More information

WCO CLiKC! Connection and Access Guide for Users

WCO CLiKC! Connection and Access Guide for Users WCO CLiKC! Connection and Access Guide for Users 1/16 SUMMARY 1. INTRODUCTION... 3 HOW TO USE THIS GUIDE... 3 NOTE... 3 2. WHAT ARE THE TECHNICAL PREREQUISITES?... 4 HARDWARE SPECIFICATIONS... 4 SOFTWARE

More information

Getting Started Guide For Users

Getting Started Guide For Users Getting Started Guide For Users August 2017 Table of Contents Overview 3 Create Your Account How to Log into the System Resetting Your Password Updating your User Profile Adding a picture The Learner Dashboard

More information

Addonics T E C H N O L O G I E S. mini NAS. Model: NAS25HDU Key Features

Addonics T E C H N O L O G I E S. mini NAS. Model: NAS25HDU Key Features 1.0 Key Features Addonics T E C H N O L O G I E S mini NAS Model: NAS25HDU2 Convert any 2.5 SATA drive into a Network Attached Storage device Connect a USB printer to share it over the network One Fast

More information

ThinManager Certification Test Lab 1

ThinManager Certification Test Lab 1 Goal: ThinManager Certification Test Lab 1 This lab leads you through a ThinManager configuration to test your knowledge of ThinManager by creating a basic deployment of ThinManager for a small factory.

More information

Creating Avid Projects, and Media Sharing with Small Tree TitaniumZ

Creating Avid Projects, and Media Sharing with Small Tree TitaniumZ When using Avid Media Composer System with Small Tree's Titanium Z storage, there are a few steps to take to share project and media files. It is important to note that While Small Tree can work in an

More information

Getting Started Guide for Physics Students

Getting Started Guide for Physics Students Access your Kinetic physics digital text Getting Started Guide for Physics Students If the product is already installed on your computer, simply click on the product icon on the desktop to launch the product.

More information

SIS Modernization Faculty Portal Training Guide

SIS Modernization Faculty Portal Training Guide SIS Modernization Faculty Portal Training Guide Created May 2017 Table of Contents Introduction to the New Faculty Portal... 1 Logging into the Faculty Portal... 1 Navigating the Faculty Portal... 6 Using

More information

Monroe Township High School AP Computer Science A Summer Packet

Monroe Township High School AP Computer Science A Summer Packet Monroe Township High School AP Computer Science A Summer Packet Welcome to AP Computer Science A for the 2017-2018 School Year! This course emphasizes object-oriented programming methodology with a concentration

More information

ITI1120 Fall Lab 0 Introduction to the Lab Environment

ITI1120 Fall Lab 0 Introduction to the Lab Environment 1 Objectives ITI1120 Fall 2012 - Lab 0 Introduction to the Lab Environment Getting familiar to the lab environment o EECS Computer Accounts o Logging In and Logging Out o Notable Features o E-Mail o Virtual

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

Polarion Trial Installation 17.2

Polarion Trial Installation 17.2 SIEMENS Polarion Trial Installation 17.2 POL002 17.2 Contents About this guide...................................................... 1-1 Before you begin.....................................................

More information

Semester 2, 2018: Lab 1

Semester 2, 2018: Lab 1 Semester 2, 2018: Lab 1 S2 2018 Lab 1 This lab has two parts. Part A is intended to help you familiarise yourself with the computing environment found on the CSIT lab computers which you will be using

More information

Navigating Your Course

Navigating Your Course Dear Online Learner, We are looking forward to your participation in Immortal Diamond: A Study in Search of the True Self! The course opens at 9am (Mountain Time) on Wednesday, April 30, 2014. In this

More information

Desktop Application Reference Guide For Windows and Mac

Desktop Application Reference Guide For Windows and Mac Desktop Application Reference Guide For Windows and Mac UNTETHERED LABS, INC. support@gkaccess.com Contents 1. GateKeeper Feature Description... 2 1.1 What is the GateKeeper Desktop Application?... 2 1.2

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

Evangel euniversity [ANGEL ACCESS AND HELP GUIDE]

Evangel euniversity [ANGEL ACCESS AND HELP GUIDE] Evangel euniversity [ANGEL ACCESS AND HELP GUIDE] How to access your ANGEL account, what your computer needs to run ANGEL, and how to get ANGEL Technical and User support. Table of Contents How to Access

More information

eftp Application User Guide

eftp Application User Guide Team A eftp User Guide 1/30 eftp Application User Guide Table of Contents Page 1. Acknowledgement 2 2. Introduction a. Welcome eftp Audience 3 b. What s in this manual 3 c. Manual Conventions 3 d. Getting

More information

CPD at the Royal Veterinary College A guide for Webinar Plus courses

CPD at the Royal Veterinary College A guide for Webinar Plus courses CPD at the Royal Veterinary College A guide for Webinar Plus courses This document contains some practical information and advice which will aid you in your participation of Webinar Plus learning with

More information

CCS Student Lab Guide

CCS Student Lab Guide CCS Student Lab Guide A guide to using computers and lab equipment in the labs 1 CCS Campus Safety Ford campus: (313) 664-7444 Taubman Center: (313) 664-1444 (If using a campus phone, simply dial the last

More information

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students

Welcome to MyKangan! A how to guide for student. Welcome to MyKangan. A How to guide for students Welcome to MyKangan A How to guide for students May 2015 Contents Welcome to MyKangan... 1 Logging in... 2 Accessing MyKangan via the Student Portal ONSITE... 2 Accessing MyKangan via the Student Portal

More information

Interim Registration

Interim Registration Interim Registration Students will need to do two things with Banner Web to register for an Interim project: Look at the descriptions of the projects and write down the project name and Course Reference

More information

Lab - Install Windows 7 or Vista

Lab - Install Windows 7 or Vista Introduction In this lab, you will install the Windows 7 or Vista operating system. Recommended Equipment A computer with a blank hard disk drive Windows 7 or Vista installation DVD or USB flash drive

More information

Syllabus CS 301: Data Structures Spring 2015

Syllabus CS 301: Data Structures Spring 2015 Syllabus CS 301: Data Structures Spring 2015 Meeting Times Instructor Graders Text Lect: 12:00-12:50 M, Tu, Wed, HB 116 Labs: 12:00-12:50 Th, HB 203 Dr. Razvan Andonie, HB 219-B, Office hours Projects

More information

Mehran Sahami Handout #5 CS 106A September 26, 2018 Downloading Eclipse

Mehran Sahami Handout #5 CS 106A September 26, 2018 Downloading Eclipse Mehran Sahami Handout #5 CS 106A September 26, 2018 Downloading Eclipse Parts of this handout were written by Justin Manus and Brandon Burr and then wantonly updated by your loving CS106A staff. In CS106A,

More information

St. Paul s Convent School (Secondary Section) ELMO Student User Guide

St. Paul s Convent School (Secondary Section) ELMO Student User Guide St. Paul s Convent School (Secondary Section) ELMO Student User Guide Version 1.0 Page 1 of 14 1. User Account 1.1 Login Open Chrome browser and go to http://elmo.spcs.edu.hk, a Sign In screen will be

More information

CSCI 201 Lab #11 Prof. Jeffrey Miller 1/23. Lab #11 CSCI 201. Title MySQL Installation. Lecture Topics Emphasized Databases

CSCI 201 Lab #11 Prof. Jeffrey Miller 1/23. Lab #11 CSCI 201. Title MySQL Installation. Lecture Topics Emphasized Databases Lab #11 CSCI 201 Title MySQL Installation Lecture Topics Emphasized Databases Introduction This lab will introduce you to MySQL. Before being able to run the DBMS, we will need to install it. There is

More information

WELCOME TO PROGRAMMING

WELCOME TO PROGRAMMING WELCOME TO PROGRAMMING Course Navigation and information on Canvas Dan McElroy This video is offered under a Creative Commons Attribution Non-Commercial Share license. Content in this video can be considered

More information

Jackson State University Department of Computer Science CSC / Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan

Jackson State University Department of Computer Science CSC / Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Jackson State University Department of Computer Science CSC 437-01/539-01 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Lab Project # 2: Running Secure Shell (SSH) Server in a Virtual

More information

Online Registration Instructions

Online Registration Instructions Online Registration Instructions Prior to registering online, new students must apply for admission by clicking Apply and Register on the home page then Apply for Admission. Upon completion of the application,

More information

System 44 Installation Guide

System 44 Installation Guide System 44 Installation Guide For use with System 44 version 2.5 or later and Student Achievement Manager version 2.5 or later Table of Contents Introduction... 3 Getting Started... 3 Windows and Mac OS

More information

Learning Management System (LMS) Student Instructions

Learning Management System (LMS) Student Instructions Learning Management System (LMS) Student Instructions CLUB LEARNING INSTITUTE Page 1 of 16 Table of Contents How do I login to the learning management system (LMS)?... 3 Navigation Panel... 4 How do I

More information

Moodle Student Manual

Moodle Student Manual Moodle Student Manual Date: August 31, 2018 Prepared by: Department of College Teaching, Learning, and Development Moodle, or Modular Object-Oriented Dynamic Learning Environment, is an online Learning

More information

westminstercollege computingguide

westminstercollege computingguide Westminster College Computing Guide westminstercollege computingguide Page Faculty/Staff Edition for Academic Year 2003/2004 Inside this Guide: Getting Help 1 Logging In 1 Network Password 2 Saving to

More information

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK V-Camp Student Guide INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK 03 EDITION V-Camp Student Guide Table of Contents Unit : Table of Contents...iii How

More information

Desire2Learn. Student Guide. Information Technology Services. Outreach and Distance Learning Technologies

Desire2Learn. Student Guide. Information Technology Services. Outreach and Distance Learning Technologies Desire2Learn Student Guide Information Technology Services Outreach and Distance Learning Technologies Copyright 2013 - KSU Department of Information Technology Services This document may be downloaded,

More information

CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I

CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I Welcome to your CSCI-1100 Lab! In the fine tradition of the CSCI-1100 course, we ll start off the lab with the classic bad joke

More information

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries Contents I Table of Contents Part I Welcome 6 1 Welcome... 6 2 Frequently Asked... Questions 6 Part II Getting Started 6 1 Getting Started... 6 2... 7 Create a New Database... 7 Open an Existing... Database

More information

READ 180 Next Generation Installation Guide

READ 180 Next Generation Installation Guide READ 180 Next Generation Installation Guide rskills including College & Career For use with READ 180 Next Generation suite and Student Achievement Manager version 2.5 or higher Table of Contents Introduction...

More information

Classroom Technology: Extron Podium Controls

Classroom Technology: Extron Podium Controls Classroom Technology: Extron Podium Controls 03/29/2018 Scan QR code for more Classsroom resources! ACCESS THE WINDOWS DESKTOP Login to the Classroom Workstation Press CTRL+ALT+DEL to open the login screen

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

ModeChanger

ModeChanger 35020808-02 2015.11 ModeChanger ModeChanger is a software utility that can switch the drive between normal mode and encrypted mode. Operating in encrypted mode will help protect your data. While the drive

More information

TurningPoint Cloud (Mac) Release Notes

TurningPoint Cloud (Mac) Release Notes TurningPoint Cloud (Mac) Release Notes Software Name: TurningPoint (Mac) Release Date: 11/03/2016 Version: 7.5.3 Support: support@turningtechnologies.com Language: Arabic, Chinese, Danish, Dutch, English,

More information

ASSIGNMENT 5 Objects, Files, and a Music Player

ASSIGNMENT 5 Objects, Files, and a Music Player ASSIGNMENT 5 Objects, Files, and a Music Player COMP-202A, Fall 2009, All Sections Due: Thursday, December 3, 2009 (23:55) You MUST do this assignment individually and, unless otherwise specified, you

More information

The Reading Inventory Installation Guide

The Reading Inventory Installation Guide The Reading Inventory Installation Guide For use with The Reading Inventory version 2.5 or later and Student Achievement Manager version 2.5 or later Table of Contents Introduction... 3 Getting Started...

More information

PRACTICE-LABS User Guide

PRACTICE-LABS User Guide PRACTICE-LABS User Guide System requirements Microsoft Windows XP Sp2/Vista/7/8/2003/2008 Linux Redhat, Fedora, SuSE, Ubuntu Apple Mac OS X Minimum of 512Mb Ram (depending on OS) Minimum processor speed

More information

1. Go to https://online.national.edu/ 2. Click the link at the bottom that says Please click here for a System Check before you log in.

1. Go to https://online.national.edu/ 2. Click the link at the bottom that says Please click here for a System Check before you log in. Desire 2 Learn User Guide Desire 2 Learn User Guide Using the System Check Quick Link You can use the quick link on the entry page of the online classroom for a general test of your computer s preparedness

More information

Classroom Technology Touch Panel

Classroom Technology Touch Panel Classroom Technology Touch Panel 03/29/2018 Scan QR code for more Classsroom resources! ACCESS THE WINDOWS DESKTOP Login to the Classroom Workstation Press CTRL+ALT+DEL to open the login screen Enter your

More information

Mehran Sahami Handout #5 CS 106A September 27, 2017 Downloading Eclipse

Mehran Sahami Handout #5 CS 106A September 27, 2017 Downloading Eclipse Mehran Sahami Handout #5 CS 106A September 27, 2017 Downloading Eclipse Parts of this handout were written by Justin Manus and Brandon Burr and then wantonly updated by your loving CS106A staff. In CS106A,

More information

RTMS - Software Setup

RTMS - Software Setup RTMS - Software Setup These instructions are for setting up the RTMS (Robot Tracking & Management System) software. This software will run on your PC/MAC and will be used for various labs in order to allow

More information

1 Important steps before BFD3 installation. 2 Installing BFD3 software - Mac OSX. 3 Installing BFD3 Core Library - Mac OSX

1 Important steps before BFD3 installation. 2 Installing BFD3 software - Mac OSX. 3 Installing BFD3 Core Library - Mac OSX Contents 1 Important steps before BFD3 installation 3 2 Installing BFD3 software - Mac OSX 4 3 Installing BFD3 Core Library - Mac OSX 6 4 Installing BFD3 software - Windows 8 5 Installing BFD3 Core Library

More information

PC Applications IT102 estart Fall 2014

PC Applications IT102 estart Fall 2014 PC Applications IT102 estart Fall 2014 3 credits No prerequisites Instructor Information Debbi Remillard, IT Department NHTI full time faculty member for 16 years as PC Applications Coordinator Email address:

More information

Getting Started with Panopto (Windows and OSX)

Getting Started with Panopto (Windows and OSX) Table of Contents Setting up Panopto in Blackboard... 2 Setting up Panopto... 6 For Windows... 8 For OSX:... 11 Removing Panopto RSS Feeds in Blackboard... 14 Creating Placeholders for Future Lectures...

More information

SAP e-academy. Quick Reference Sheet

SAP e-academy. Quick Reference Sheet SAP e-academy Quick Reference Sheet Table of Contents 1. Getting Started... 3 1.1. Minimum System Requirements... 3 1.1.1. Hardware Requirements... 3 1.1.2. Operating System... 3 1.1.3. Software... 3 1.1.4.

More information

Setting up Eclipse (Windows), or GCC (Mac) Setting up Atmel Studio (Windows & Mac)

Setting up Eclipse (Windows), or GCC (Mac) Setting up Atmel Studio (Windows & Mac) ECE3411 Fall 2015 Lecture # 0 Setting up Eclipse (Windows), or GCC (Mac) Setting up Atmel Studio (Windows & Mac) Marten van Dijk, Syed Kamran Haider Department of Electrical & Computer Engineering University

More information

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER CHAPTER 1 Revised: May 31, 2011 Accessing Cisco Show and Share, page 1-1 Cisco Show and Share Quick Start, page 1-4 Sign In to Cisco Show and Share, page 1-20 Set Your Personal Preferences, page 1-22 Accessing

More information

Ensuring your computer has Java

Ensuring your computer has Java Ensuring your computer has Java TournamentSR and all of its support programs require the Java Standard Runtime Environment (JRE). This is a free program that can be downloaded and installed from the Internet.

More information

Starting the KVM Console

Starting the KVM Console Starting the KVM Console This chapter includes the following sections: KVM Console, page 1 Starting the KVM Console from a Server, page 5 Starting the KVM Console from a Service Profiles, page 5 Starting

More information

Virtual Machine Connection Guide for AWS Labs

Virtual Machine Connection Guide for AWS Labs Virtual Machine Connection Guide for AWS Labs Thank you for participating in our hands-on workshop. We are glad to have you in our class! This class relies on our accompanying lab environment which provides

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT D2L : Introduction A Guide for Instructors ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents Introduction...1 Objectives... 1 Logging In to D2L...1 My Home... 2 The Minibar...

More information

Classroom Technology: MH201, 203, 205

Classroom Technology: MH201, 203, 205 Classroom Technology: MH201, 203, 205 3/29/2018 Scan QR code for more Classsroom resources! ACCESS THE WINDOWS DESKTOP Login to the Classroom Workstation Press CTRL+ALT+DEL to open the login screen Enter

More information

Learn Center LMS Student Instructions

Learn Center LMS Student Instructions VERTICLIMB Learn Center LMS Student Instructions 1 Table of Contents How do I login to the Learn Center LMS (learning management system)?... 3 Navigation Panel... 4 How do I take a course?... 5 Course

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Desktop User Guide May 2014

Desktop User Guide May 2014 Desktop User Guide May 2014 Table of Contents Software Environment... 1 Logging into the SaaS environment... 1 Logging off the Hosted Desktop... 6 Directories... 7 Wizmo AdminSet... 8 Shadowing a User...

More information

Moodle Student Manual

Moodle Student Manual Moodle Student Manual Date: April 29, 2016 Prepared by: Department of College Teaching, Learning, and Development Moodle, or Modular Object-Oriented Dynamic Learning Environment, is an online Learning

More information

CST VMWare Documentation

CST VMWare Documentation Login to the vsphere Web Client using a web browser by navigating to https://cstvmware.ridgewater.edu/ui/. Chrome is the best for this, but others will work. You will see a page like this: Login with your

More information

IS L02-MIGRATING TO SEP 12.1

IS L02-MIGRATING TO SEP 12.1 IS L02-MIGRATING TO SEP 12.1 Description Migrating to Symantec Endpoint Protection (SEP)? Want to upgrade to the latest SEP technology? In this Lab, see how to upgrade a multi-site Symantec Endpoint Protection

More information

User s Guide For Instructors

User s Guide For Instructors User s Guide For Instructors Section Page 1. GETTING STARTED (Instructor and Student) A. First Time Registration 2 B. Logging In 4 C. System Requirements 5 D. Icons Used in MyNorthStarLab 6 E. Getting

More information

UMUC Digital Labs. Contents

UMUC Digital Labs. Contents Contents The DigiCampus DaaS Lab Broker... 2 Using the Lab Broker to Access Lab Environments... 3 Workspace Application Manager... 6 Verifying and Refreshing Installed Apps... 6 Obtaining Lab Assistance

More information

Student Guide to Blackboard

Student Guide to Blackboard Student Guide to Blackboard Blackboard is an Internet application used by many instructors to put their courses online. Typically, your instructor will let you know on the first day of class if he or she

More information

Murray Bridge High School Connecting to the BYOD Network Mac OS X Version 3 Amended 2/10/2014

Murray Bridge High School Connecting to the BYOD Network Mac OS X Version 3 Amended 2/10/2014 Murray Bridge High School Connecting to the BYOD Network Mac OS X 10.7 10.9 Version 3 Amended 2/10/2014 Use of the Murray Bridge High School BYOD (Bring Your Own Device) facilities and network is subject

More information

ASSIGNMENT 5 Objects, Files, and More Garage Management

ASSIGNMENT 5 Objects, Files, and More Garage Management ASSIGNMENT 5 Objects, Files, and More Garage Management COMP-202B, Winter 2010, All Sections Due: Wednesday, April 14, 2009 (23:55) You MUST do this assignment individually and, unless otherwise specified,

More information

SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition

SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition SpeechClass User Guide for Students A Speaker s Guidebook, Fourth Edition Getting Started with SpeechClass for A Speaker s Guidebook, Fourth Edition Table of Contents Overview... 1 Getting Help... 1 System

More information