Introduction to Mac OS X

Size: px
Start display at page:

Download "Introduction to Mac OS X"

Transcription

1 Introduction to Mac OS X The Mac OS X operating system both a graphical user interface and a command line interface. We will see how to use both to our advantage. Using DOCK The dock on Mac OS X is the Application bar which by default is situated at the bottom of your screen. It is similar to the Task Bar on Windows. The dock is customizable (see Mac help for more info). To launch applications in your Dock, click on their icon once. A black triangular shape appearing under the icon indicates that the application is currently open. Adding a shortcut for an application You can add easily an item to the Dock. For example we are going to use the software MacMolPlot along the sessions so let's add it into the Dock. First you need to open a Finder window and click on the Application short cut on the left of the window, like it is shown below:

2 When you reach the icon of your application (in our example MacMolPlot) you simply click and keep the button pressed until you drag the icon into Dock where you simply drop it. Now you can see the icon of MacMolPlot in your dock so by clicking on it you can open the application. Using FINDER Finder on mac OS X is the same as the "Windows Explorer" on Windows. Finder gives you lots of options to locate, display and organize all your files and folders. The 3 buttons we circled on the picture allow you to modify the display as you like to visualize your folders. From Finder you can open an application by double clicking on it. It works the same for the files. Each kind of files has an application assigned by default to open it, so when you double click on a file it will be open with that application.

3 You can also drag and drop the file on the icon of the application in Dock with which you want to open that file. Using X11-terminal On your mac you will find two kind of terminals. One installed by default which is called "Terminal" and one installed by the user called "X11". The X11 terminal is a X window. It allows the user to display graphical interface on Unix-like operating systems. X11 terminal is in the Utilities directory under the Applications. Launching X11 Usually when you install the developper's tools on your mac, X11 terminal is installed under the Utilities directories. As we plan to use X11 a lot, it would be useful to add it in the Dock. Then to launch the X11 terminal it will be easy to click on the icon in the Dock After clicking on the icon, it will begin activate and a little black triangular shape will appear under the icon to mention that the application is opened. And then a X11 terminal will open.. The X11 terminal is used as a Unix terminal as all of the standart UNIX utilities and scripting languages are included in Mac OS X: editors like emacs, vi (you will see later), file management tools, shell scripts... Hints on Mac OS Web Browser The most popular browser for mac users is now Safari. we will be using this browser in this course. If it is not in the Dock you can drag and drop the icon of Safari from the Applications folder.

4 Enable tabs on Safari First go to Safari menu and select Preferences. The Preferences window opened, you will click on the tabs icon on the top. Then activate the option called "Enable Tabbed Browsing". Activate the tabbed browsing on Safari. Shortcuts with Safari: Open a new tab: command + t Open a link in a new tab and select it: command + click Open a link in a new tab: command + shift + click Open a link in a new window and select it: command + option + click Open a link in a new window behind the current one: command + option + shift + click Access the search field: command + option + f Increase font of a webpage: command + Plus-sign Decrease font size of a web page: command + Minus-sign Quit an application properly When you want to quit an application you close the window by clicking on the red button. BUT the application is not quit, it is still opened. So to close the application you need to go to the menu of the application and select Quit, or simply use the short cut: command + q.

5 You can check if you let application opened by looking at the Dock. All applications open have a black triangular shape under the icon that disappears when you quit the application. Checking this avoids to have too many applications opened. Shortcuts on Mac OS: keyboard commands On Mac the keyboard is slightly different than on Windows machines. The most important difference is the Apple or command key. This key is used much like the Control key on a Windows machine. Also many shortcuts in programs on a Windows program will work with the Apple key on the Mac. Text Copy: command + c Paste: command + v Cut: command + x Undo: command + z Redo: command + y Select all: command + a Window Close window:command + w Close all windows: Option + command + w Menu Command Log out: shift + command + q Log out immediately: shift + option + command + q Hide the active application: command + h

6 Hide others application: option + command + h New windows: command + n New folder in Finder: shift + command + n Open a new document: command + o Save a document: command + s Save as: shift + command + s Print menu: command + p Move to Trash: command + delete Other Commands Switch application: command + tab Force quit: option + command + ESC Restart, Sleep, Shutdown dialog box: control + eject Sleep: option + command + eject(buton on the left-up corner) Quit all applications and restart: control + command + eject Reference to learn more shortcuts on Mac: Introduction to Basic Unix commands The Graphical User Interface (GUI) of Mac OS X provides a visual "userfriendly" layer that provides visual cues to help users use their computer with greater ease. The same operation can also be done typing in a command on the "command line". For example, dragging and dropping a file HelloBaby.txt into folder PinkyToes could be done on the command line using: mv HelloBaby.txt PinkyToes To use the command line on a Mac you need to open a terminal In unix, tasks often use the following syntax:

7 Syntax of a Unix Command This example shows how to copy a directory called folder1, making a new directory called, folder2. Useful tip! Wildcards can be used to add flexibility to your commands: The most common wildcards * For example: ls *.inp returns the list of files with the extension ".inp" in the directory. Another common wildcard is:? For example: ls my??put.inp => return the list of files with 2 letters to replace the two?. Common Command lines Information: Any time you wish to find information about how to use a command properly, you can type: man the_command_of_interest This will open the unix manual for the command, which you may scroll through using the arrow keys, or by pressing the letter "f" for "forward" or the letter "b" for "backward", and you can exit the manual by pressing the letter "q". Try, for example, typing: man cd In your command line window, to see information about the first command listed below. Directory cd [directory] change directory mkdir directory_name make a directory rmdir delete an empty directory rm -r directory delete the directory

8 File ls [options] directory or file list directory contents or file permission pwd find out which directory you are in cp [options] file1 file2 copy file1 into file2 cp [options] file1 file2 copy file1 into file2 less [options] file page through a text file o o o [shift] g => go the end of the file [ctrl] d => go 10 lines down [ctrl] b => go 10 lines back tail -f filename Show the line at the same time as they are written tar [options] archive_name.tar files_name combined multiple files and folders into a single file, but does not compress anything. gzip [options] file_name > ar archive_name compress files gunzip [option] archive_name Extract the files from the archive bzip2 [option] filenames create a compressed file.bz2 bunzip2 [option] archive.bz2 Uncompress the compress file Find find directory -name file Look for a file in a directory and his content grep pattern file Look for a pattern in a file Processes ps -al display the processes jobs display the tasks ctrl z interrupt the current task ctrl c Stop the current task kill -9 processus_number kill the processes bg job_number put a task in background fg job_number put the task in front Right ls -l filename list file permissions chown [option] file modify the owner of a file/directory chgrp file modify the group

9 Introduction to VI There are many VI tutorials and cheat sheets on the web. VI Tutorial : List of VI Commands: Why bother learning VI? It is installed by default on UNIX systems. The key to learning VI is to keep in mind the 2 principal modes that are the text-insert mode used to add text to a file and the command-mode used to give commands. The ESC key has to be pressed to pass from one mode to another one. To invoke VI: vi filename If you did not already have the file, this command will create it. VI modes Editing mode Edit mode allows you to move the cursor and edit the text buffer. It is the default mode when you open a file with vi. Inserting mode Insert mode "drops" the cursor at a specific point in the buffer, allowing you to insert text. i Insert before cursor. I Insert at start of current line. a Append after cursor. A Append at end of current line. o Open new line below. O Open new line above. Command mode Command mode moves the cursor to the command line, allowing you to invoke program commands such as write to file (:w) and quit (:q). You enter colon mode from edit mode by typing a colon followed by a command. :w Write buffer to the current filename.

10 :w newname Write buffer to file newname. :r Read the current filename into the buffer. :r oldname Read the file oldname into the buffer. :q! Quit vi without saving buffer. :wq Write buffer to current filename and quit vi. :e filename Close current buffer and edit (open) filename. :e # Close current buffer and edit (open) previous file. Cursor movement In addition to the arrow keys, you can use these edit mode commands to move the cursor: h Left one character. j Down one line. k Up one line. l Right one character. b Beginning of previous word. e End of next word. w Beginning of next word. { Backward one paragraph. } Forward one paragraph. ^ Go to first character of current line. $ Go to last character of current line. CTRL/d Forward (down) one-half page. CTRL/u Backward (up) one-half page. CTRL/f Forward one page.ctrl/b Backward one page. G Go to the end of the file. 1G Go to the first line of the file. ng Go to line number n. Searching in VI editor / The slash is the symbol to indicate you wish to search for whatever follows (make note that this is case-sensitive) E.g.) /GAMESS will result in a search for the word GAMESS in your file, an bring you to the next location ahead in the file containing the word

11 Typing / again will result in proceeding again foreward in the file to find the next location of the word GAMESS.? The question mark is also a search symbol, to search backwards from your current position in the file. E.g.)?ENERGY will search backwards for the word ENERGY previously written in the file.

Command Line - Part 1

Command Line - Part 1 Command Line - Part 1 STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat Course web: gastonsanchez.com/teaching/stat133 GUIs 2 Graphical User Interfaces

More information

QUIT MACSCHOOL AND DRAG YOUR SERVER ICONS TO THE TRASH OR HIT THE DISCONNECT BUTTON BESIDE THE SERVER ICON IN THE TOP SIDEBAR

QUIT MACSCHOOL AND DRAG YOUR SERVER ICONS TO THE TRASH OR HIT THE DISCONNECT BUTTON BESIDE THE SERVER ICON IN THE TOP SIDEBAR Macintosh Operating System OSX 10.3.x STARTING YOUR COMPUTER Logging in Whenever you start your computer, you will need to enter your computer password at the log in screen. When the log in screen appears,

More information

Introduction to the UNIX Operating System and Open Windows Desktop Environment

Introduction to the UNIX Operating System and Open Windows Desktop Environment Introduction to the UNIX Operating System and Open Windows Desktop Environment Welcome to the Unix world! And welcome to the Unity300. As you may have already noticed, there are three Sun Microsystems

More information

Macintosh General Help

Macintosh General Help The Macintosh computers on campus use Mac Operating System 10.6. OS 10.6 differs in many ways from what is now called the classic OS 9. This help sheet will help you to better orient yourself with these

More information

The Basics - Macintosh OS X

The Basics - Macintosh OS X The Basics - Macintosh OS X ~ About this document ~ Prepared by Bruce Carruthers for Central vic Apple Users Inc. http://cvau.net The Menu Bar Menu Bar [lefthand end] This is always along the top of the

More information

As you look at an imac you will notice that there are no buttons on the front of the machine as shown in figure 1.

As you look at an imac you will notice that there are no buttons on the front of the machine as shown in figure 1. Apple imac When you first sit down to use an Apple Macintosh Computer, or Mac for short, you may seem intimidated by using something other than Microsoft Windows, but once you use a Mac, you might find

More information

Managing Your Desktop with Exposé, Spaces, and Other Tools

Managing Your Desktop with Exposé, Spaces, and Other Tools CHAPTER Managing Your Desktop with Exposé, Spaces, and Other Tools In this chapter Taking Control of Your Desktop 266 Managing Open Windows with Exposé 266 Creating, Using, and Managing Spaces 269 Mac

More information

Tutorial 0A Programming on the command line

Tutorial 0A Programming on the command line Tutorial 0A Programming on the command line Operating systems User Software Program 1 Program 2 Program n Operating System Hardware CPU Memory Disk Screen Keyboard Mouse 2 Operating systems Microsoft Apple

More information

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria.

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria. Using the Finder When you first start up your Mac, you're greeted by the Finder, which allows you to visually access practically everything on your Mac, including applications, hard disks, files, folders,

More information

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook QNS OSX instructions. CONTENTS 1 The Apple and Finder 2 The Dock 3 Navigating OS X 4 System Preferences 1 OS X tutorial: the apple The apple menu The apple menu is hidden under the apple at the top left

More information

A Crash Course in OS X D. Riley and M. Allen

A Crash Course in OS X D. Riley and M. Allen Objectives A Crash Course in OS X D. Riley and M. Allen To learn some of the basics of the OS X operating system - including the use of the login panel, system menus, the file browser, the desktop, and

More information

Shortcut Keystrokes in OS X by Phil Russell

Shortcut Keystrokes in OS X by Phil Russell Shortcut Keystrokes in OS X by Phil Russell Is this you? You close a window or document by clicking the close box at upper left of the window or document. You create a new folder by mousing to the File

More information

Unix Guide. Logo Reproduction. School of Computing & Information Systems. Colours red and black on white backgroun

Unix Guide. Logo Reproduction. School of Computing & Information Systems. Colours red and black on white backgroun Logo Reproduction Colours red and black on white backgroun School of Computing & Information Systems Unix Guide Mono positive black on white background 2013 Mono negative white only out of any colou 2

More information

Introduction to Mac Operating System: Snow Leopard

Introduction to Mac Operating System: Snow Leopard Introduction to Mac Operating System: Snow Leopard Switching the Computer On 1. Press the round button on the back of the computer to turn the computer on. If the screen is black, but the lights are lit

More information

Birmingham Environment for Academic Research. Introduction to Linux Quick Reference Guide. Research Computing Team V1.0

Birmingham Environment for Academic Research. Introduction to Linux Quick Reference Guide. Research Computing Team V1.0 Birmingham Environment for Academic Research Introduction to Linux Quick Reference Guide Research Computing Team V1.0 Contents The Basics... 4 Directory / File Permissions... 5 Process Management... 6

More information

Tutorial Guide to the IS Unix Service

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

More information

Select the name of the application and click on Force Quit.

Select the name of the application and click on Force Quit. Mac and Windows Differences 1. Mouse buttons. The Mac mouse has a single button whereas a Windows mouse has two buttons. To display a contextual menu in a Mac environment, control+click on an object, unless

More information

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features

More information

Gaz s Mac Notes. Startup

Gaz s Mac Notes. Startup Gaz s Mac Notes. Startup Turn on the power button, after about 5 seconds you should hear a Dmmm sound indicating that the Bootup sequence has started. Login with a user and Password. If you login as a

More information

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer Fred Hantelmann LINUX Start-up Guide A self-contained introduction With 57 Figures Springer Contents Contents Introduction 1 1.1 Linux Versus Unix 2 1.2 Kernel Architecture 3 1.3 Guide 5 1.4 Typographical

More information

Mac OS X guide for Windows users

Mac OS X guide for Windows users apple 1 Getting started Mac OS X guide for Windows users So you ve made the switch? Moving to the Mac or coming back after a long time on Windows? This quick guide explain all the basics of the modern

More information

C&NS Summer 07 Faculty Computer Training Introduction to the Mac. Introduction to the Mac

C&NS Summer 07 Faculty Computer Training Introduction to the Mac. Introduction to the Mac Table of Contents C&NS Summer 07 Faculty Computer Training Introduction to the Mac Introduction to the Mac... 1 Mac vs. PC... 2 Introduction to Apple OS X (Tiger)... 2 The OS X Interface... 3 Tools for

More information

Command-Line Operations : The Shell. Don't fear the command line...

Command-Line Operations : The Shell. Don't fear the command line... Command-Line Operations : The Shell Don't fear the command line... Shell Graphical User Interface (GUI) Graphical User Interface : displays to interact with the computer - Open and manipulate files and

More information

Macintosh System OSX #1

Macintosh System OSX #1 Recipes4Success Macintosh System OSX #1 2007. All Rights Reserved. This Material is copyrighted under United States copyright laws. Tech4Learning, Inc. is the exclusive owner of the copyright. Distribution

More information

imac: Helpful Information

imac: Helpful Information 1 imac: Helpful Information Power Apple imac Port Information o 1 Headphone Port o 4 USB 3.0 Ports o 2 Thunderbolt Ports o 1 Gigabit Ethernet Port o 1 SDXC card slot Power button located at bottom-left

More information

Getting Started Guide. Chapter 14 Customizing LibreOffice

Getting Started Guide. Chapter 14 Customizing LibreOffice Getting Started Guide Chapter 14 Customizing LibreOffice Copyright This document is Copyright 2010 2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.3 User Manual for Linux and Unix operating systems Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved.

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

DECS DER APPLE WIRELESS HELPER DOCUMENT

DECS DER APPLE WIRELESS HELPER DOCUMENT DECS DER APPLE WIRELESS HELPER DOCUMENT A GUIDE TO THE DEPLOYMENT OF APPLE MAC NOTEBOOK COMPUTERS IN DECS WIRELESS NETWORKS apple Chris Downing, Senior Systems Engineer apple Viano Jaksa, Area Manager

More information

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab TABS ZIMBRA LAYOUT Overview Pane TABS Mail Inbox, compose new Address Book contacts (university contacts do not show up in book; however, they will show up in search) Calendar appointments (can be shared)

More information

MICROSOFT WINDOWS NAVIGATION

MICROSOFT WINDOWS NAVIGATION MICROSOFT WINDOWS NAVIGATION MARGARET E. HEGGAN FREE PUBLIC LIBRARY This walkthrough assumes you have a computer with Microsoft Windows 7 installed. Versions of Microsoft Windows are similar, but different

More information

Check out our website!

Check out our website! Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:

More information

Local Caching Servers (LCS): User Manual

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

More information

Citrix Desktop for Home Computers Apple ios Instructions

Citrix Desktop for Home Computers Apple ios Instructions Citrix Desktop for Home Computers Apple ios Instructions You can use Citrix to create and access a virtual work desktop from your home computer. Step 1 Uninstall: To install the newest version of Citrix

More information

GETTING STARTED TABLE OF CONTENTS

GETTING STARTED TABLE OF CONTENTS Windows 7 Tutorial GETTING STARTED An operating system, sometimes called an OS, is the main program the computer uses to function properly. Operating systems act as a link between you, the user, and the

More information

University of Toronto

University of Toronto 1 University of Toronto APS 105 Computer Fundamentals A Tutorial about UNIX Basics Fall 2011 I. INTRODUCTION This document serves as your introduction to the computers we will be using in this course.

More information

MY WORLD GIS. Installation Instructions

MY WORLD GIS. Installation Instructions MY WORLD GIS Version 4.1 Installation Instructions Copyright 2007 by Northwestern University. All rights reserved. Created August 15, 2002 Last Revised April 14, 2008 2. Launching the Installer On the

More information

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents:

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents: Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk Table of Contents: 1) The Macintosh HD 2) Your Home Directory 3) The Finder 4) The

More information

TIPS FOR USING OS X 10.8 MOUNTAIN LION

TIPS FOR USING OS X 10.8 MOUNTAIN LION Mac OS X Tutorial 10.8 Mountain Lion 1 TIPS FOR USING OS X 10.8 MOUNTAIN LION LAUNCHPAD Launchpad is an application launcher first introduced in OS X 10.7 Lion and improved upon in Mountain Lion. Launchpad

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

More information

What's it Called on my Mac?

What's it Called on my Mac? What's it Called on my Mac? Windows Term Mac Term Use Close button Close button To close a window, click the red leftmost button in the upper-left corner of a window. Control key Command key To perform

More information

MAC SWITCH 101. Elements of the Mac OS X desktop and Finder, and their Windows Explorer equivalents

MAC SWITCH 101. Elements of the Mac OS X desktop and Finder, and their Windows Explorer equivalents MAC SWITCH 101 Although it may feel like you're entering a brand new world with your Mac, you'll be happy to know that Finder has some familiar similarities to Windows Explorer. For example, you still

More information

Apple Time Machine. Backing up. Setting up Time Machine

Apple Time Machine. Backing up. Setting up Time Machine Apple Time Machine Backing up The Apple Time Machine is a built-in feature on Mac OS X Leopard and Snow Leopard computers that can back up everything on your computer: music, photos, documents, applications,

More information

Sophos Anti-Virus for Mac OS X Help

Sophos Anti-Virus for Mac OS X Help Sophos Anti-Virus for Mac OS X Help For networked and standalone Macs running Mac OS X version 10.4 or later Product version: 8 Document date: April 2012 Contents 1 About Sophos Anti-Virus...3 2 Scanning

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

CGS 1550 File Transfer Project Revised 3/10/2005

CGS 1550 File Transfer Project Revised 3/10/2005 CGS 1550 File Transfer Project Revised 3/10/2005 PURPOSE: The purpose of this project is to familiarize students with the three major styles of FTP client, which are: Pure (FTP only), character-based,

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

RDM+ Remote Desktop for Mobiles For Blackberry Playbook

RDM+ Remote Desktop for Mobiles For Blackberry Playbook RDM+ Remote Desktop for Mobiles For Blackberry Playbook Getting Started Guide RDM+ (Remote Desktop for Mobiles) is an application that makes it possible to control your desktop or laptop remotely from

More information

Sophos Anti-Virus for Mac OS X Help

Sophos Anti-Virus for Mac OS X Help Sophos Anti-Virus for Mac OS X Help For networked and standalone Macs running Mac OS X Product version: 9 Document date: June 2013 Sophos TOC 3 Contents About Sophos Anti-Virus...5 About the Scans window...5

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Adobe Dreamweaver - Basic Web Page Tutorial

Adobe Dreamweaver - Basic Web Page Tutorial Adobe Dreamweaver - Basic Web Page Tutorial Window Elements While Dreamweaver can look very intimidating when it is first launched it is an easy program. Dreamweaver knows that your files must be organized

More information

Shortcuts and Tips for Leopard/Windows XP on the Intel Mac

Shortcuts and Tips for Leopard/Windows XP on the Intel Mac Information and Digital Technologies January 28, 2009 1 Shortcuts and Tips for Leopard/Windows XP on the Intel Mac The user s Leopard account is given admin rights until all software installs are done,

More information

IT Quick Reference Guides Using Windows 7

IT Quick Reference Guides Using Windows 7 IT Quick Reference Guides Using Windows 7 Windows Guides This sheet covers many of the basic commands for using the Windows 7 operating system. WELCOME TO WINDOWS 7 After you log into your machine, the

More information

Introduction to Computers

Introduction to Computers Introduction to Computers Parts of a computer Monitor CPU 3 Keyboard 3 4 4 Mouse 3 4 Monitor The monitor displays the content and operations of the computer. It is the visual display of what the computer

More information

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE INTRODUCTION Tumbleweed (Secure Transport) is used to provide secure file transfer of critical business files, financial transactions and sensitive data such

More information

Attix5 Pro Server Edition

Attix5 Pro Server Edition Attix5 Pro Server Edition V7.0.2 User Manual for Mac OS X Your guide to protecting data with Attix5 Pro Server Edition. Copyright notice and proprietary information All rights reserved. Attix5, 2013 Trademarks

More information

RDM+ Remote Desktop for Android. Getting Started Guide

RDM+ Remote Desktop for Android. Getting Started Guide RDM+ Remote Desktop for Android Getting Started Guide RDM+ (Remote Desktop for Mobiles) is a remote control tool that offers you the ability to connect to your desktop or laptop computer from Android device

More information

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002) Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and

More information

Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide

Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide Mac Built-in Accessibility (10.7 - Lion) - Quick Start Guide Overview The Mac operating system has many helpful features to help users with a wide range of abilities access their computer. This Quickstart

More information

Sophos Anti-Virus for Mac OS X: Home Edition Help

Sophos Anti-Virus for Mac OS X: Home Edition Help Sophos Anti-Virus for Mac OS X: Home Edition Help For standalone Macs running Mac OS X Product version: 9C Document date: June 2013 Sophos TOC 3 Contents About Sophos Anti-Virus...5 About the Scans window...5

More information

Most of your tasks in Windows XP will involve working with information

Most of your tasks in Windows XP will involve working with information OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows

More information

Introduction to. UNIX Bob Booth December 2004 AP-UNIX2. University of Sheffield

Introduction to. UNIX Bob Booth December 2004 AP-UNIX2. University of Sheffield Introduction to UNIX Bob Booth December 2004 AP-UNIX2 University of Sheffield Contents 1. INTRODUCTION... 3 1.1 THE SHELL... 3 1.2 FORMAT OF COMMANDS... 4 1.3 ENTERING COMMANDS... 4 2. ACCESSING UNIX MACHINES...

More information

The following was taken directly from the ARD (Apple Remote Desktop) operator s manual:

The following was taken directly from the ARD (Apple Remote Desktop) operator s manual: The following was taken directly from the ARD (Apple Remote Desktop) operator s manual: Copying Files Apple Remote Desktop makes it easy to update items on one or more client computers. Copying files works

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Reduced Quality Sample

Reduced Quality Sample Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.

More information

Unix Tools. Overview. Editors. Editors nedit vi Browsers/HTML Editors Mail Tools Utilities xv xman ftp

Unix Tools. Overview. Editors. Editors nedit vi Browsers/HTML Editors Mail Tools Utilities xv xman ftp Unix Tools Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@imap.pitt.edu http://www.sis.pitt.edu/~spring Overview Editors nedit vi Browsers/HTML

More information

User s Guide Version 7.5 April 2015. 2015 Ergonis Software. Contents

User s Guide Version 7.5 April 2015. 2015 Ergonis Software. Contents ! KeyCue User s Guide Version 7.5 April 2015 Contents License agreement... 2 Limited warranty... 2 Contact... 2 About KeyCue... 3 System requirements... 4 Installation... 4 Using KeyCue... 4 System-wide

More information

Apple Mac VPN Service Setting up Remote Desktop

Apple Mac VPN Service Setting up Remote Desktop Apple Mac VPN Service Setting up Remote Desktop After you have successfully connected via the VPN client to the University network you will then need to make the connection to your machine. To do this

More information

Lotus Notes Client Version 8.5 Reference Guide

Lotus Notes Client Version 8.5 Reference Guide Lotus Notes Client Version 8.5 Reference Guide rev. 11/19/2009 1 Lotus Notes Client Version 8.5 Reference Guide Accessing the Lotus Notes Client From your desktop, double click the Lotus Notes icon. Logging

More information

Intro to Web Development

Intro to Web Development Intro to Web Development For this assignment you will be using the KompoZer program because it free to use, and we wanted to keep the costs of this course down. You may be familiar with other webpage editing

More information

Mac OS X. A Brief Introduction for New Radiance Users. Andrew McNeil & Giulio Antonutto

Mac OS X. A Brief Introduction for New Radiance Users. Andrew McNeil & Giulio Antonutto Mac OS X A Brief Introduction for New Radiance Users Andrew McNeil & Giulio Antonutto Mac OS X 2 Graphical interface 2 Window buttons 2 The Dock 2 The menu 3 Keys combinations 3 File Locations 4 root level

More information

Introduction to Final Cut Pro 7 - Editing Basics

Introduction to Final Cut Pro 7 - Editing Basics Workshop Objectives Become familiar with the Final Cut Pro workspace, basic editing, capturing footage, using tools, exporting to tape, or QuickTime. Learn effective workflow and file management strategies.

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

Computer Basics: Tackling the mouse, keyboard, and using Windows

Computer Basics: Tackling the mouse, keyboard, and using Windows Computer Basics: Tackling the mouse, keyboard, and using Windows Class Description: Interested in learning how to use a computer? Come learn the computer basics at the Muhlenberg Community Library. This

More information

2. How to Use SMART Board as a Projector and Whiteboard

2. How to Use SMART Board as a Projector and Whiteboard Page 1 Smart Board Getting Started Smart Board is an interactive whiteboard developed by SMART Technologies that combines the capabilities of a data projector and a white board. Use the SMART Board to

More information

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

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

More information

Using Windows XP and File Management Handout (Staff)

Using Windows XP and File Management Handout (Staff) Using Windows XP and File Management Handout (Staff) The XP Interface Logging on to your computer. Logging in on campus. Analogy of a safe. Login screen Domains - FFLDU, Fairfield, Local Machine, Prep

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Mac OS X 10 Using the Keyboard Viewer and Character Palette

Mac OS X 10 Using the Keyboard Viewer and Character Palette Mac OS X 10 Using the Keyboard Viewer and Character Palette Use Keyboard Viewer to see the layout of characters on your keyboard for your chosen language. For example, if the U.S. is selected in the Input

More information

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor Linux Overview Local facilities Linux commands The vi (gvim) editor MobiLan This system consists of a number of laptop computers (Windows) connected to a wireless Local Area Network. You need to be careful

More information

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On Installation and Setup of Google Drive for Students on Mac OS X Purpose: This guide will lead you through the Google Drive Installation and Configuration. Pre-requisites: 1) ODU Student Gmail account 2)

More information

Mac OS X (Leopard) The Basics

Mac OS X (Leopard) The Basics Mac OS X (Leopard) The Basics Howard County Public School System OIT Training Document ID No.: MAC02 Revision Date: 10/14/2008 =Warning =Timesaver =Suggestion Navigating Your New Computer This section

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Mac Keyboard Shortcuts

Mac Keyboard Shortcuts Mac Keyboard Shortcuts Menu Symbols Menu Symbol Key on Keyboard Command/Apple Key (like Control on a PC) Also written as Cmd Option (like Alt on a PC) Shift Control (Control-click = Right-click) Tab Return

More information

File Management and File Storage

File Management and File Storage File Management and File Storage http://training.usask.ca Information Technology Services Division Table of Contents File Management at the University of Saskatchewan...3 Introduction...3 Creating Files

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

To install the "Microsoft Remote Desktop Client" on OS X 10.4.9 "Tiger" or above:

To install the Microsoft Remote Desktop Client on OS X 10.4.9 Tiger or above: How to connect to the DGL Practice Manager Hosted Servers from an Apple Mac Connecting to the DGL Hosted Servers requires the use of the "Microsoft Remote Desktop Client" application, which almost all

More information

UPSentry Smart 2000. User s Manual. Shutdown Management Software. for Mac OS X 10.1

UPSentry Smart 2000. User s Manual. Shutdown Management Software. for Mac OS X 10.1 UPSentry Smart 2000 Shutdown Management Software for Mac OS X 10.1 User s Manual Table of Contents Introduction...3 Installing/Removing UPSentry Smart 2000...4 User Interface: UPSentry Smart 2000...5 System

More information

ClaroRead SE for Mac. User Guide!

ClaroRead SE for Mac. User Guide! ClaroRead SE for Mac User Guide! Welcome to ClaroRead SE Welcome to ClaroRead SE for Mac. ClaroRead SE is designed to help make your computer easier to use. It is closely integrated with Pages and Microsoft

More information

Event Record Monitoring and Analysis Software. Software Rev. 3.0 and Up. User s Guide

Event Record Monitoring and Analysis Software. Software Rev. 3.0 and Up. User s Guide Event Record Monitoring and Analysis Software Software Rev. 3.0 and Up User s Guide 2 Contents Contents Chapter 1: About ERMAWin 4 Chapter 2: Overview 5 About this Manual 5 System Requirements 5 Installing

More information

Windows Basics. Developed by: D. Cook

Windows Basics. Developed by: D. Cook Windows Basics Developed by: D. Cook User Interface Hardware and Software Monitor Keyboard Mouse User friendly vs. MS-DOS GUI (graphical user interface) Launching Windows 2000 (XP) CTRL-ALT-DEL Desktop

More information

CLC Bioinformatics Database

CLC Bioinformatics Database CLC Bioinformatics Database End User USER MANUAL Manual for CLC Bioinformatics Database 4.6 Windows, Mac OS X and Linux September 3, 2015 This software is for research purposes only. QIAGEN Aarhus A/S

More information

Unix Sampler. PEOPLE whoami id who

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

More information

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes Generative Drafting Page 1 Tutorial Objectives Description This Tutorial is an introduction to Generative Drafting. Message To show how CATIA V5 allows the user to automatically generate associative drafting

More information

WORDPAD TUTORIAL WINDOWS 7

WORDPAD TUTORIAL WINDOWS 7 WORDPAD TUTORIAL WINDOWS 7 Quick Access bar Home Tab Triangles = More Commands Groups on the Home tab Right paragraph margin Left paragraph Margin & Indent Paragraphs Ruler Hover the mouse pointer over

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Attix5 Pro. Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition. V6.0 User Manual for Mac OS X

Attix5 Pro. Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition. V6.0 User Manual for Mac OS X Attix5 Pro Your guide to protecting data with Attix5 Pro Desktop & Laptop Edition V6.0 User Manual for Mac OS X Copyright Notice and Proprietary Information All rights reserved. Attix5, 2011 Trademarks

More information