How to Work on your METEO 473 codes from your PC at home

Slides:



Advertisements
Similar presentations
Customizing Putty to work with Consuls. Step 1Get Putty Go to the website –
Advertisements

Enter the address as shown below in the address bar.
Linux, it's not Windows A short introduction to the sub-department's computer systems Gareth Thomas.
ENEE150: Discussion 1 Section 0104 Please Sit Down at a Computer and Login!
Dayu Zhang 9/8/2014 Lab02. Example of Commands pwd --- show your current directory This is home of venus, not your home directory Tilde: means you are.
CSCI 1411 FUNDAMENTALS OF COMPUTING LAB Lab Introduction 1 Shane Transue MSCS.
Software environment Sander Stuijk January 18th, 2006.
INF 123: Software Architectures, Distributed Systems, and Interoperability Discussion Session Week 3 - Spring 2008 Instructor: Prof. Richard N. Taylor.
ENGR 3 rocks. Hi I’m Damon Turney Homework 0 due October 7 ! Get a computer account.
Compe 341 Oracle Installation Procedure. Oracle From Click.
Dayu Zhang 9/3/2014 Lab01. Lab Instructor: Dayu Zhang Office Hour Mon/Wed 10:40am – 11:10am Room A201 Lab Website
1 SEEM3460 Tutorial Access to Unix Workstations in SE.
1 Basics of Linux On linux machine: Login at your home directory Open a “shell” or “terminal” or “xterm” workspace (4) On windows machine Intall linux.
Microsoft Office 2013 ®® Appendix A Introduction to Cloud Computing.
The Unix Environment and Compiling. Getting Set Up Your programs will be compiled and tested on the Departmental server ‘linprog’ The linprog servers.
Downloadable Audiobooks  Listen Anywhere  24/7 Access  Great Selection.
CprE 288 – Quick intro for compiling C in Linux
BIF713 Operating Systems & Project Management Instructor: Murray Saul
Overview of Linux CS3530 Spring 2014 Dr. José M. Garrido Department of Computer Science.
Unix Primer. Unix Shell The shell is a command programming language that provides an interface to the UNIX operating system. The shell is a “regular”
Linux environment ● Graphical interface – X-window + window manager ● Text interface – terminal + shell.
HPC at HCC Jun Wang Outline of Workshop1 Overview of HPC Computing Resources at HCC How to obtain an account at HCC How to login a Linux cluster at HCC.
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction Unix-like system is everywhere Linux Android for smartphones Google Chrome OS for Chromebook Web.
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
LINUX Tuesday, 5 July :00 pm. Remote Login l Use Secure Shell (ssh) l Machine name/IP address E.g. ssh hydra.sma.nus.edu.sg Or ssh
1 Editing a C Program 01/16/15. 2 Objective Use Linux to edit, compile and execute a C program.
TAMU CSCE 313 (the basics). Basic Unix/Linux programming Accessing CS systems  PuTTY (putty.exe) – a Telnet and SSH client  Common hosts: unix.cs.tamu.edu.
PROGRAMMING PROJECT POLICIES AND UNIX INTRO Sal LaMarca CSCI 1302, Fall 2009.
ACCESS IC LAB Graduate Institute of Electronics Engineering, NTU Usage of Workstation Lecturer: Yu-Hao( 陳郁豪 ) Date:
1 Lab 2 “Hello world” in Unix/Linux #include "std_lib_facilities_4.h" int main(){ cout
Chapter 0 A “Quick-Start” into the UNIX Operating System.
Intro to Programming Environment 1. Today You Will Learn how to connect to a machine remotely with “nomachine NX client” Learn how to create a new “source.
Creating Programs on UNIX This term you can create programs on UNIX or you can create programs using a C++ compiler on your PC. This set of slides steps.
Nat Type Change Speed Touch and Thomson Modems. Steps Disable uPNP Static Ip on Console Putty Download Telnet Procedure.
Copy of the from the secure website - click on the AccoridaLife.zip link.
Unix Servers Used in This Class  Two Unix servers set up in CS department will be used for some programming projects  Machine name: eustis.eecs.ucf.edu.
1 Getting Started with C++ Part 2 Linux. 2 Getting Started on Linux Now we will look at Linux. See how to copy files between Windows and Linux Compile.
ENEE150: Discussion 1 Section 0104/0105 Please Sit Down at a Computer and Login!
Basic Unix Commands & GCC Saurav Karmakar Spring 2007.
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
Unix Environment Basics CSCI-1302 Lakshmish Ramaswamy.
1 Introduction to Unix. 2 What is UNIX?  UNIX is an Operating System (OS).  An operating system is a control program that helps the user communicate.
CS 120 Extra: The CS1 Server Tarik Booker CS 120.
PuTTY Introduction to Web Programming Kirkwood Continuing Education by Fred McClurg © Copyright 2016, All Rights Reserved ssh client.
Assignprelim.1 Assignment Preliminaries © 2012 B. Wilkinson/Clayton Ferner. Modification date: Jan 16a, 2014.
Review Why do we use protection levels? Why do we use constructors?
Tutorial Six Linux Basics CompSci Semester Two 2016.
Overview of Linux Fall 2016 Dr. Donghyun Kim
Introduction to Unix for FreeSurfer Users
GRID COMPUTING.
ENEE150 Discussion 01 Section 0101 Adam Wang.
UNIX To do work for the class, you will be using the Unix operating system. Once connected to the system, you will be presented with a login screen. Once.
A “Quick-Start” into the UNIX Operating System
First Day in Lab Making a C++ program
Tutorial of Unix Command & shell scriptS 5027
CSC227: Operating Systems
Tutorial Six Recap & Linux Basics CompSci Semester Two 2016.
Andy Wang Object Oriented Programming in C++ COP 3330
What this activity will show you
How to submit a new tech ticket/incident into new HEAT system
Assignment Preliminaries
Tutorial of Unix Command & shell scriptS 5027
Tutorial of Unix Command & shell scriptS 5027
Web Programming Essentials:
Tutorial of Unix Command & shell scriptS 5027
Andy Wang Object Oriented Programming in C++ COP 3330
Tutorial Unix Command & Makefile CIS 5027
CSCE 206 Lab Structured Programming in C
DIBBs Brown Dog Tutorial Setup
Presentation transcript:

How to Work on your METEO 473 codes from your PC at home By: Michael K. Hernandez Date: September 3, 2008

1) Go to Firefox

2) Shrink the Firefox window

3) Search for PUTTY (an SSH client) WEBSITE: http://www.chiark.greenend.org.uk/~sgtatham/putty/

4) Go to the Download link

5) Scroll down and download putty.exe

6) Move the putty.exe to an easily locatable area on your desktop

7) Running Putty a) double click on putty b) type in lethe.met.psu.edu c) type in lethe d) click save e) click open b c d e

8) Sign in to get the screen below (Same as your meteo access account username and password)

Special Notes & Considerations You can open many of these files (known as terminals). It is advisable that you open at least two, one for the code and one to compile the code. You cannot use gedit, you must use VI or any other text editor that doesn’t involve an x-terminal. a) Notes on how to use the VI text editor is online at http://mkhernandez.tk Basic commands like cd, pwd, lpr, mkdir, cp, which, man, etc can be used. a) Notes on useful UNIX/LINUX commands are online at http://mkhernandez.tk