Setting up Radmind For an OSX Public Lab

Size: px
Start display at page:

Download "Setting up Radmind For an OSX Public Lab"

Transcription

1 Setting up Radmind For an OSX Public Lab Radmind consists of a set of about ten Unix Commands installed on both the client and server machines. A GUI application, called Radmind Assistant, provides a simplified interface for using these unix commands. As of now, Radmind Assistant does not yet support the initial setup of a Radmind Server so that this must be accomplished using the OSX Terminal utility to directly run radmind and other Unix commands. Once the Server is set up, Radmind Assistant can be used for the daily operation of Radmind. Server The Radmind Server can be any networked OSX machine. It will run the unix process, radmind, in the background. The server machine requires a large disk space to hold master copies of all the clients programs plus listings of these programs called Transcripts. The client programs can be grouped in any way you want into loadsets. Usually, they are grouped according to function such as: CoreOSXSystem, MicrosoftOffice, OfficeUpdatexx, FileMakerPro, etc. The file data for each loadset is stored on the server in a separate folder and it is stored with the same directory structure as the client. Each loadset has an associated Transcript (.T) file, which is just a listing of each file or directory found in the data folder for that group. The Server also holds several Command (.K) files which are plain text files containing lists of Transcript file names in priority loading order. Finally, the Server holds one config file which is another plain text file associating client machines with specific Command files. The config file will connect a specific client IP number or group of IP numbers to a Command (.K) file so that the server knows what transcripts a specific client needs and in what order. With this setup the server can serve different client machines with different programs. Client The client is any OSX machine. It must be loaded with the 10 radmind unix commands. The Radmind Assistant is optional. The administrator has the option to run the radmind unix commands from scripts, without the aid of the Radmind Assistant. The client also holds copies of the transcript files used to update it. 1

2 When a client machine requires an update it starts by asking the server if there are any changes, additions, or subtractions to the transcripts it already has stored away. The transcripts are plain text listings of files so they do not get very large. If there are changes it will download the new transcripts from the server. The server knows from its config file what command file to pull for this particular client. The command file then tells the server what Transcript files the client will be working from so it can send the right ones. The client then compares its actual files with those listed in the transcripts. A temporary file is built on the client listing all the differences and this is used to update the machine. Unlisted files are removed and new, or updated files, are downloaded from the server. OSX Installation The first step in building the lab is to load all the machines with the latest OSX system. Radmind needs an OSX system to run from. Here are the steps to set up OSX on all the client machines: 1. Install OSX on one client machine using the latest installation disks. Before installing the system, use the Disk Utility on the installation CD to partition the drive as you like. You may install as many of the ilife programs as you like, or add them later. What you install here will become the first Radmind Transcript called Core.T. 2. Run Software Update to make sure you have the latest updates to the system. 3. Download the application Carbon Copy Cloner from its website and install it on the client machine. 4. Attach an external Firewire drive to the client and use Carbon Copy Cloner to clone your entire OSX system to the external drive. 5. Boot the other client machines from the Firewire drive and use the Disk Utility to partition the client drive as you like and then use Carbon Copy Cloner to load OSX onto the client s drive. Initial Radmind Server Setup The Radmind Server must be loaded with the Radmind unix tools, a directory structure must be built to hold all the Radmind files, and a few control files must be built for the initial setup. Once this is done we can go back to one of the clients loaded with an OSX system and download it to the server along with a core.t transcript. All this is done with unix commands from the Mac OSX Terminal program. Once this initial setup is completed, you can operate the Radmind either through the GUI, Radmind Assistant, or continue to operate directly through the radmind unix commands. Here are the initial server setup steps: 2

3 1. Download the Radmind Tools and Radmind Assistant from the Radmind website and install them onto the server. (The Radmind Assistant includes the Tools and a utility for installing them). 2. Open the OSX Terminal utility. Root access is necessary for operating the radmind unix commands. Type sudo s followed by an administrator password to get root access. Be extremely careful from now on you can do lots of damage with root access. 3. Check out where the Radmind Tools have been installed. The tools are located at /usr/local/bin and the one radmind program is at /usr/local/sbin. There should be a new directory, /var/radmind (or /private/var/radmind). This is where all the radmind control and data files are normally kept. Note that /var and /private/var are the same location because they are linked. Here are some commands you can use to look around - cd /usr/local/bin to change directory, ls l to look at the contents of the current directory. 4. The directory /var/radmind (or /private/var/radmind) is normally where all the radmind files and data are kept, which includes the various configuration files, transcripts and loadsets of data. This can be an inconvenient location if you are using the server for other functions. This directory can grow very large since it will hold all the data from your client machines. You can relocate the radmind server files to drives other than the startup disk by setting up a symbolic link. Here is how you do it: 1. rmdir -r /var/radmind 2. mkdir /Volumes/DriveName/radmind 3. ln -s /Volumes/DriveName/radmind /private/var/radmind The first line removes the radmind directory from the main drive. The second line creates a radmind directory on a separate drive of your choice replace DriveName with the name of the drive or partition you want to use. Note that the OSX unix system denotes other drives on your machine (other than the main root drive) as /Volumes/xxx. The third line creates a symbolic link so that whenever anything is suppose to happen in the directory /private/var/radmind (or equivalently, /var/radmind) it is linked over to the radmind directory on DriveName instead. One caveat of linking to another drive is that you can now view all the radmind files from the OSX finder. 5. Next, various control files are created in the linked radmind directory just created. 1. mkdir /var/radmind/command 2. touch /var/radmind/command/commandfilename.k 3

4 3. pico /var/radmind/config The first line creates a directory that will hold all the.k command files. Note that the actual location of the directory will be on the linked drive as described above. The second line creates an empty.k command file. Give it a name of your choice. The third line uses pico to create a configuration file. You could also use any plain text editor. Enter a single command line into the file such as <52-59> CommandFileName.K. The numbers specify the IP addresses of your client machines. The CommandFileName is a name you choose for the empty command file just created in step All the initial control files and directories have now been set up on the server. The next step is to go to the client machine and set it up to send a core transcript and its associated loadset data to the server. The server program that acts as a traffic controller for client data is /usr/local/sbin/radmind. This is a process that runs in the background on the server machine and can be started from the Terminal with the command: sudo /usr/local/sbin/radmind Initial Radmind Client Setup The Radmind Server receives all its transcripts and data loadsets from a client machine. At this point, the client machines have been loaded with a clean core of OSX. Here are the steps needed to create a core transcript and upload it and the data to the server. 1. Download the Radmind Tools and Radmind Assistant from the Radmind website and install them onto one of the client machines. (The Radmind Assistant includes the Tools). The Radmind Assistant can be placed in an administrative account so that it is hidden from the regular users. 2. The directory /private/var/radmind should now exist on the client. Open up the Terminal Utility Program and enable root access with the sudo s command. Check that /private/var/radmind exists and then run the following command to keep this directory out of sight from the regular users. 3. Build a client directory with: chmod 700 /private/var/radmind mkdir /private/var/radmind/client 4. Next step is to create a negative transcript. A negative transcript lists those files which should exist on each client machine but not necessarily be identical on each 4

5 client. These are files that the server is told to ignore except for confirming their existence on the client. No loadset data is stored for these listed files. The Radmind website offers a sample negative transcript for the latest OSX system. Download this transcript and place it in your Documents folder. Use TextEdit to view it. It is suggested in the documentation that the /User directory be part of the negative transcript. The /Users data sets up user preferences, elements in the Dock, and files appearing on the desktop. In a lab setting, all of this should be controlled by the Radmind server. I would suggest the following approach: Keep the /Users line active in the negative transcript while setting up the core loadset. However, after the core loadset is uploaded, comment out the /Users line from the negative transcript, then build a separate Users.T loadset from just the /Users data. In future loadsets it is easy to edit out any /Users transcript lines, saving them to update the Users.T transcript. In the negative transcript, the data following the file names can be checked and corrected by running a unix command for each file name. In this way also, additional lines can be added to the negative.t. The entries must be in Unix alphabetical order; that is, all the uppercase letters in alphabetical order followed by all the lowercase letters. /usr/local/bin/fsdiff 1 c sha1 [filename or directory] (note the 1 in -1 and sha1 is the numeral 1) After checking and editing the negative.t file, move it to the radmind client directory. mv Documents/negative.T /private/var/radmind/client The transcript can also be viewed and edited using the Radmind Transcript Editor found in the Radmind Assistant GUI. 5. The next step is to create a.k command file with the negative.t file as an entry. 1. touch /var/radmind/client/command.k 2. pico /var/radmind/client/command.k 3. cat /var/radmind/client/command.k The first step creates an empty command.k file. Use pico to enter the one line n negative.t in the command.k file. Use cat to check your results. 6. Create a base.t transcript with the following line. It should take some time to run. 5

6 usr/local/bin/fsdiff -C -c sha1 -o /var/radmind/client/base.t 7. We are now ready to upload the base.t loadset to the server. You will need to know the IP address of the server. /usr/local/bin/lcreate -h [server IP address] /var/radmind/client/base.t This will be very verbose, listing every file that is uploaded to the server. If there is a checksum does not match error for a specific file, you must either delete the file, add it to the negative transcript, or keep it and rerun the fsdiff command in the previous step after deleting the /tmp/.file/* and /tmp/transcript/* files in the radmind folder on the server. 8. If the last step completed successfully, you should now be able to see the core.t transcript and all its actual data on the server, in the radmind folder, in the tmp folder. We also need to transfer the negative.t transcript to the server with the following command: /usr/local/bin/lcreate -N -h [server IP address] /var/radmind/client/negative.t In this case, only the transcript file is uploaded. No data from the files is sent since this is a negative type transcript. Server Setup from Radmind Assistant From this point on it is easier to use the Radmind Assistant GUI application to finish the server s initial setup. Read through the documentation on the Radmind Assistant to get more information on the following procedures. The Radmind Assistant includes a Server Manager in one of its menus. Open the Server manager. Three windows will appear after you give your administrator password: A listing of the config file built in step 5 of the server section; a double paned window listing.k Command files and their associated lists of transcripts (the command file you created in step 5 should appear without any listed transcripts); and finally, a window listing all the various transcripts. This last window should be empty except for a bottom section called the Loadset Drawer containing the recently uploaded core.t and negative.t transcript files. These two transcripts need to be Verified (or Updated) before being placed in the upper part of the window as available transcripts. This operation also moves the actual files out of the /radmind/tmp location to transcript and data directories in the radmind folder. 6

7 Select the Command file in the second window and drag the core.t and negative.t files from the third window onto the right pane of this second window. Save the result. This will add the names of the two transcripts to the Command file. Transcript files from the transcript window can be editied from the Radmind Assistant by bringing up the Transcript Editor. Do this by Control clicking on a transcript and selecting Editor from the menu that appears. At this point you may want to edit the negative.t transcript and comment out the /Users line as previously discussed. You would then go back to the client machine and run the Radmind Assistant Update routine to create a Users.T transcript and loadset. Be sure and look at the resulting transcript before uploading it to edit out any lines that are not /Users. This same process is repeated each time you add a new program or set of programs to a client machine. John Talbert TIMARA Department Oberlin Conservatory August

Using the Radmind Command Line Tools to. Maintain Multiple Mac OS X Machines

Using the Radmind Command Line Tools to. Maintain Multiple Mac OS X Machines Using the Radmind Command Line Tools to Maintain Multiple Mac OS X Machines Version 0.8.1 This document describes how to install, configure and use the radmind client and server tools to maintain a small

More information

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

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

More information

Wazza s QuickStart 15. Leopard Server - Disaster Backup

Wazza s QuickStart 15. Leopard Server - Disaster Backup Wazza s QuickStart 15. Leopard Server - Disaster Backup About the Document This document is the 15th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server

More information

Other documents in this series are available at: servernotes.wazmac.com

Other documents in this series are available at: servernotes.wazmac.com Wazza s Snow Leopard Server QuickStart 2. Configuring DNS About this Document This document is the second in a series of documents describing the process of installing and configuring a Mac OS X 10.6 Server

More information

It is recommended that you use a clean installation of Lion client before upgrading to Lion Server.

It is recommended that you use a clean installation of Lion client before upgrading to Lion Server. Wazza s Lion Server QuickStart 1. Installing Lion Server About this Document This document is the first in a series of documents describing the process of installing and configuring a Mac OS X 10.7 Server

More information

How to use FTP Commander

How to use FTP Commander FTP (File Transfer Protocol) software can be used to upload files and complete folders to your web server. On the web, there are a number of free FTP programs that can be downloaded and installed onto

More information

What is File Management. Methods for Categorizing Data. Viewing Data on a Computer

What is File Management. Methods for Categorizing Data. Viewing Data on a Computer What is File Management As described earlier, file management is basically the process of designing new folders and assigning files to those folders. The main goal in file management is to have a system

More information

How to FTP (How to upload files on a web-server)

How to FTP (How to upload files on a web-server) How to FTP (How to upload files on a web-server) In order for a website to be visible to the world, it s files (text files,.html files, image files, etc.) have to be uploaded to a web server. A web server

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

File Manager User Guide

File Manager User Guide File Manager User Guide Please note: EasySiteOptimizer Version 1.6 is supplied with Web Hosting (IBP) and Advanced Web Hosting only. File Manager Introduction to File Manager To access File Manager, select

More information

Version Control with Subversion and Xcode

Version Control with Subversion and Xcode Version Control with Subversion and Xcode Author: Mark Szymczyk Last Update: June 21, 2006 This article shows you how to place your source code files under version control using Subversion and Xcode. By

More information

Wazza s QuickStart 13. Leopard Server - Windows Domain

Wazza s QuickStart 13. Leopard Server - Windows Domain Wazza s QuickStart 13. Leopard Server - Windows Domain About the Document This document is the 13th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server

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

MICROSOFT OUTLOOK 2011 SYNC ACCOUNTS AND BACKUP

MICROSOFT OUTLOOK 2011 SYNC ACCOUNTS AND BACKUP MICROSOFT OUTLOOK 2011 SYNC ACCOUNTS AND BACKUP Last Edited: 2012-07-10 1 Sync Exchange and IMAP accounts... 3 Sync basics... 3 Sync Outlook with ical and Apple Mail on Mac... 3 Set schedule to synchronize

More information

Extending Remote Desktop for Large Installations. Distributed Package Installs

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

More information

Apple Server Diagnostics User Guide. For Version 3X106

Apple Server Diagnostics User Guide. For Version 3X106 Apple Server Diagnostics User Guide For Version 3X106 KKApple Inc. 2009 Apple Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written

More information

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core

StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core StarWind iscsi SAN Software: Installing StarWind on Windows Server 2008 R2 Server Core www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved.

More information

Recommended File System Ownership and Privileges

Recommended File System Ownership and Privileges FOR MAGENTO COMMUNITY EDITION Whenever a patch is released to fix an issue in the code, a notice is sent directly to your Admin Inbox. If the update is security related, the incoming message is colorcoded

More information

Witango Application Server 6. Installation Guide for OS X

Witango Application Server 6. Installation Guide for OS X Witango Application Server 6 Installation Guide for OS X January 2011 Tronics Software LLC 503 Mountain Ave. Gillette, NJ 07933 USA Telephone: (570) 647 4370 Email: [email protected] Web: www.witango.com

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Ad Hoc (Temporary) Accounts Instructions

Ad Hoc (Temporary) Accounts Instructions DLG/PDV SFTP Server Instructions 1. Ad Hoc (Temporary) Accounts. 2. LeadsGen (Permanent) Accounts. 3. Manually configuring SFTP Clients (WinSCP & FileZilla). 4. Uploading files into SFTP server. 5. Frequently

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

MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES

MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES MICROSOFT OUTLOOK 2011 GETTING STARTED AND HELP RESOURCES Lasted Edited: 2012-07-10 1 Introduction... 4 Getting Started... 4 Tour of the Outlook 2011 Interface... 4 Start Outlook 2011... 5 Configure E-mail

More information

USB HSPA Modem. User Manual

USB HSPA Modem. User Manual USB HSPA Modem User Manual Congratulations on your purchase of this USB HSPA Modem. The readme file helps you surf the Internet, send and receive SMS, manage contacts and use many other functions with

More information

Managing UNIX and Mac OS X Clusters with Radmind

Managing UNIX and Mac OS X Clusters with Radmind Managing UNIX and Mac OS X Clusters with Radmind Wesley Craig Patrick McNeal Andrew Mortensen University of Michigan Research Systems Unix Group of the University of Michigan 1 What s Radmind? A suite

More information

Using Drobo for Onsite & Offsite backup with Carbon Copy Cloner

Using Drobo for Onsite & Offsite backup with Carbon Copy Cloner Data protection is an everyday risk that far too many users are not addressing. Using any storage device that protects against hard drive failure is a great start, but it does not protect against major

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

WinSCP PuTTY as an alternative to F-Secure July 11, 2006

WinSCP PuTTY as an alternative to F-Secure July 11, 2006 WinSCP PuTTY as an alternative to F-Secure July 11, 2006 Brief Summary of this Document F-Secure SSH Client 5.4 Build 34 is currently the Berkeley Lab s standard SSH client. It consists of three integrated

More information

Accessing vlabs using the VMware Horizon View Client for OSX

Accessing vlabs using the VMware Horizon View Client for OSX Accessing vlabs using the VMware Horizon View Client for OSX This document will demonstrate how to download, install, and connect to a virtual lab desktop from a personal Mac OSX computer using the VMware

More information

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design

Implementing Microsoft SQL Server 2008 Exercise Guide. Database by Design Implementing Microsoft SQL Server 2008 Exercise Guide Database by Design Installation Lab: This lab deals with installing the SQL Server 2008 database. The requirements are to have either a Windows 7 machine

More information

Installing Java 5.0 and Eclipse on Mac OS X

Installing Java 5.0 and Eclipse on Mac OS X Installing Java 5.0 and Eclipse on Mac OS X This page tells you how to download Java 5.0 and Eclipse for Mac OS X. If you need help, Blitz [email protected]. You must be running Mac OS 10.4 or later

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

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

More information

File Transfer Protocol (FTP) Instructions

File Transfer Protocol (FTP) Instructions File Transfer Protocol (FTP) Instructions How to upload your website to the AUI server The FTP client most used for PCs is WS_FTP. It is already downloaded onto your Lab computer desktop, and looks like

More information

How to Setup OSX Mail to POP an Exchange Account

How to Setup OSX Mail to POP an Exchange Account How to Setup OSX Mail to POP an Exchange Account (Revised 04/27/11) LAUSD IT Help Desk 333 S. Beaudry Ave. 9 th Floor Phone 213.241.5200 Opening OS X Mail application The following instructions are written

More information

Install and configure SSH server

Install and configure SSH server Copyright IBM Corporation 2009 All rights reserved Install and configure SSH server What this exercise is about... 1 What you should be able to do... 1 Introduction... 1 Part 1: Install and configure freesshd

More information

Setting up a local working copy with SVN, MAMP and rsync. Agentic - 2009

Setting up a local working copy with SVN, MAMP and rsync. Agentic - 2009 Setting up a local working copy with SVN, MAMP and rsync Agentic - 2009 Get MAMP You can download MAMP for MAC at this address : http://www.mamp.info/en/downloads/index.html Install MAMP in your APPLICATION

More information

Installation Guide Mac OS X Operating Systems

Installation Guide Mac OS X Operating Systems Installation Guide Mac OS X Operating Systems Legal Notices Published by Toon Boom Animation Inc. Corporate Headquarters 5530 St. Patrick Suite2210 Montreal, Quebec Canada H4E 1A8 Tel: (514) 278-8666 Fax:

More information

User Manual for Data Backups

User Manual for Data Backups User Manual for Data Backups 1 Accepted formats are: EXT3, EXT4, NTFS, FAT32 and HFS+ (Mac OS). Recommended format: EXT3 and EXT4 Mac OS formatted disks will work only on workstations 4 and 7. Keep in

More information

Transferring AIS to a different computer

Transferring AIS to a different computer Transferring AIS to a different computer AIS can easily be transferred from one computer to another. There are several different scenarios for transferring AIS to another computer. Since AIS is designed

More information

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

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

More information

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8 CONTENTS SECTION 1 Check current version of Remote Desktop Connection for Mac.. Page 2 SECTION 2 Remove Old Version Remote Desktop Connection..Page 8 SECTION 3 Download and Install Remote Desktop Connection

More information

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux By the OS4 Documentation Team Prepared by Roberto J Dohnert Copyright 2013, PC/OpenSystems LLC This whitepaper describes how

More information

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

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

More information

Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number.

Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number. Version control Version control is a powerful tool for many kinds of work done over a period of time, including writing papers and theses as well as writing code. This session gives a introduction to a

More information

Accessing your Staff (N and O drive) files from off campus

Accessing your Staff (N and O drive) files from off campus Accessing your Staff (N and O drive) files from off campus It is possible to access your N and O drive files while you are off campus, for example whilst working from home or travelling. This document

More information

SSH and Basic Commands

SSH and Basic Commands SSH and Basic Commands In this tutorial we'll introduce you to SSH - a tool that allows you to send remote commands to your Web server - and show you some simple UNIX commands to help you manage your website.

More information

Mobile Labs Plugin for IBM Urban Code Deploy

Mobile Labs Plugin for IBM Urban Code Deploy Mobile Labs Plugin for IBM Urban Code Deploy Thank you for deciding to use the Mobile Labs plugin to IBM Urban Code Deploy. With the plugin, you will be able to automate the processes of installing or

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

New Lab Intro to KDE Terminal Konsole

New Lab Intro to KDE Terminal Konsole New Lab Intro to KDE Terminal Konsole After completing this lab activity the student will be able to; Access the KDE Terminal Konsole and enter basic commands. Enter commands using a typical command line

More information

Local Caching Servers (LCS) February 2015

Local Caching Servers (LCS) February 2015 Local Caching Servers (LCS) February 2015 1.1 Chapter 1: Welcome to LCS The Kansas Interactive Testing Engine (KITE ) is used to deliver standardized tests via testing machines like desktop, laptop, and

More information

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

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

More information

CASHNet Secure File Transfer Instructions

CASHNet Secure File Transfer Instructions CASHNet Secure File Transfer Instructions Copyright 2009, 2010 Higher One Payments, Inc. CASHNet, CASHNet Business Office, CASHNet Commerce Center, CASHNet SMARTPAY and all related logos and designs are

More information

TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control

TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control TEL2821/IS2150: INTRODUCTION TO SECURITY Lab: Operating Systems and Access Control Version 3.4, Last Edited 9/10/2011 Students Name: Date of Experiment: Read the following guidelines before working in

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

WinSCP for Windows: Using SFTP to upload files to a server

WinSCP for Windows: Using SFTP to upload files to a server WinSCP for Windows: Using SFTP to upload files to a server Quickstart guide Developed by: Academic Technology Services & User Support, CIT atc.cit.cornell.edu Last updated 9/9/08 WinSCP 4.1.6 Getting started

More information

Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac

Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac Making it easy to deploy, integrate and manage Macs, iphones and ipads in a Windows environment. Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac 2011 ENTERPRISE DEVICE

More information

2.6.1 Creating an Acronis account... 11 2.6.2 Subscription to Acronis Cloud... 11. 3 Creating bootable rescue media... 12

2.6.1 Creating an Acronis account... 11 2.6.2 Subscription to Acronis Cloud... 11. 3 Creating bootable rescue media... 12 USER'S GUIDE Table of contents 1 Introduction...3 1.1 What is Acronis True Image 2015?... 3 1.2 New in this version... 3 1.3 System requirements... 4 1.4 Install, update or remove Acronis True Image 2015...

More information

Hallpass Instructions for Connecting to Mac with a Mac

Hallpass Instructions for Connecting to Mac with a Mac Hallpass Instructions for Connecting to Mac with a Mac The following instructions explain how to enable screen sharing with your Macintosh computer using another Macintosh computer. Note: You must leave

More information

You must have at least Editor access to your own mail database to run archiving.

You must have at least Editor access to your own mail database to run archiving. Archiving An archive is a copy of a database you can create to store information no longer in use. Like a replica, an archive contains all documents and design elements in the original database, but unlike

More information

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

Computer Science and Engineering MacOS Cisco VPN Client Installation and Setup Guide Computer Science and Engineering MacOS Cisco VPN Client Installation and Setup Guide Contents Installation: For users who have no prior Cisco VPN Client Installed... 2 Profile Import:... 4 Usage:... 4

More information

Check Point VPN-1 SecureClient for Mac OS X Release Notes November 1, 2004

Check Point VPN-1 SecureClient for Mac OS X Release Notes November 1, 2004 Check Point VPN-1 SecureClient for Mac OS X Release Notes November 1, 2004 This document contains important information not included in the documentation. Review this information before setting up SecureClient

More information

Deploying software using Apple Remote Desktop (ARD)

Deploying software using Apple Remote Desktop (ARD) Software Licensing and Activation : Deploying software using Apple Remote Desktop This page last changed on Jan 21, 2010 by [email protected]. Deploying software using Apple Remote Desktop (ARD) Abstract

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

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

This chapter describes how to set up and manage VPN service in Mac OS X Server.

This chapter describes how to set up and manage VPN service in Mac OS X Server. 6 Working with VPN Service 6 This chapter describes how to set up and manage VPN service in Mac OS X Server. By configuring a Virtual Private Network (VPN) on your server you can give users a more secure

More information

Lab 1: Introduction to the network lab

Lab 1: Introduction to the network lab CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

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

Remote Administration

Remote Administration Contents Preparing The Server 2 Firewall Considerations 3 Performing Remote Administration 4 Additional Notes 5 Mobile Application Administration 6 Managing Users In The iphone App 8 Maxum Development

More information

Hadoop Data Warehouse Manual

Hadoop Data Warehouse Manual Ruben Vervaeke & Jonas Lesy 1 Hadoop Data Warehouse Manual To start off, we d like to advise you to read the thesis written about this project before applying any changes to the setup! The thesis can be

More information

Introducing Xcode Source Control

Introducing Xcode Source Control APPENDIX A Introducing Xcode Source Control What You ll Learn in This Appendix: u The source control features offered in Xcode u The language of source control systems u How to connect to remote Subversion

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

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

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

Integrating Mac OS X 10.6 with Active Directory. 1 April 2010

Integrating Mac OS X 10.6 with Active Directory. 1 April 2010 Integrating Mac OS X 10.6 with Active Directory 1 April 2010 Introduction Apple Macintosh Computers running Mac OS X 10.6 can be integrated with the Boston University Active Directory to allow use of Active

More information

File Management Where did it go? Teachers College Summer Workshop

File Management Where did it go? Teachers College Summer Workshop File Management Where did it go? Teachers College Summer Workshop Barbara Wills University Computing Services Summer 2003 To Think About The Beginning of Wisdom is to Call Things by the Right Names --

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

1. Open the Account Settings window by clicking on Account Settings from the Entourage menu.

1. Open the Account Settings window by clicking on Account Settings from the Entourage menu. Using TLS Encryption with Microsoft Entourage This guide assumes that you have previously configured Entourage to work with your Beloit College email account. If you have not, you can create an account

More information

INSTALL ZENTYAL SERVER

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

More information

2 Advanced Session... Properties 3 Session profile... wizard. 5 Application... preferences. 3 ASCII / Binary... Transfer

2 Advanced Session... Properties 3 Session profile... wizard. 5 Application... preferences. 3 ASCII / Binary... Transfer Contents I Table of Contents Foreword 0 Part I SecEx Overview 3 1 What is SecEx...? 3 2 Quick start... 4 Part II Configuring SecEx 5 1 Session Profiles... 5 2 Advanced Session... Properties 6 3 Session

More information

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

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

More information

Global Image Management System For epad-vision. User Manual Version 1.10

Global Image Management System For epad-vision. User Manual Version 1.10 Global Image Management System For epad-vision User Manual Version 1.10 May 27, 2015 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements 3 3. GIMS-Server

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

Comodo MyDLP Software Version 2.0. Endpoint Installation Guide Guide Version 2.0.010215. Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013

Comodo MyDLP Software Version 2.0. Endpoint Installation Guide Guide Version 2.0.010215. Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Comodo MyDLP Software Version 2.0 Endpoint Installation Guide Guide Version 2.0.010215 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.About MyDLP... 3 1.1.MyDLP Features...

More information

QuickStart Guide for Client Management. Version 8.7

QuickStart Guide for Client Management. Version 8.7 QuickStart Guide for Client Management Version 8.7 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Installing Proview on an Windows XP machine

Installing Proview on an Windows XP machine Installing Proview on an Windows XP machine This is a guide for the installation of Proview on an WindowsXP machine using VirtualBox. VirtualBox makes it possible to create virtual computers and allows

More information

TEL 500. Voice Communications. Week 1 Write Up. Session Initiation Protocol Lab. Submitted To: Prof Ronny Bull. By: Sai Sharan Korvi

TEL 500. Voice Communications. Week 1 Write Up. Session Initiation Protocol Lab. Submitted To: Prof Ronny Bull. By: Sai Sharan Korvi TEL 500 Voice Communications Week 1 Write Up Session Initiation Protocol Lab Submitted To: Prof Ronny Bull By: Sai Sharan Korvi Date: 09/10/2014 ABSTRACT: Softphone is usually a software which can be used

More information

Kernel. What is an Operating System? Systems Software and Application Software. The core of an OS is called kernel, which. Module 9: Operating Systems

Kernel. What is an Operating System? Systems Software and Application Software. The core of an OS is called kernel, which. Module 9: Operating Systems Module 9: Operating Systems Objective What is an operating system (OS)? OS kernel, and basic functions OS Examples: MS-DOS, MS Windows, Mac OS Unix/Linux Features of modern OS Graphical operating system

More information

How To Create An Intranet Site On A School Computer (For A School) On A Mac Or Pc Or Ipad (For Pc Or Mac) On An Ipad Or Ipa (For Mac) (For Ipa) On Pc

How To Create An Intranet Site On A School Computer (For A School) On A Mac Or Pc Or Ipad (For Pc Or Mac) On An Ipad Or Ipa (For Mac) (For Ipa) On Pc Wazza s QuickStart A School Intranet using any Mac This document provides information about setting up a school Intranet with nothing more than a basic Macintosh as an Intranet server. The procedure described

More information

Sophos Anti-Virus for Mac OS X network startup guide. For networked Macs running Mac OS X

Sophos Anti-Virus for Mac OS X network startup guide. For networked Macs running Mac OS X Sophos Anti-Virus for Mac OS X network startup guide For networked Macs running Mac OS X Product version: 7.0 Document date: May 2009 Contents 1 About this guide...3 2 System requirements...4 3 Protecting

More information

EVault Software. Course 361 Protecting Linux and UNIX with EVault

EVault Software. Course 361 Protecting Linux and UNIX with EVault EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in

More information

WinSCP Tutorial 01/28/09: Y. Liow ([email protected])

WinSCP Tutorial 01/28/09: Y. Liow (yliow@ccis.edu) WinSCP Tutorial 01/28/09: ([email protected]) What is WinSCP? WinSCP is an open source SFTP client for Windows. Its main function is the secure file transfer between a local and a remote computer. Beyond

More information

2 SQL in iseries Navigator

2 SQL in iseries Navigator 2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features

More information