Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph :

Size: px
Start display at page:

Download "Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph : 2576681"

Transcription

1 DOS Commands By Milan Kothari

2 What Is Dos? DOS or the Disk Operating System designed to operate personal computer is basically a collection of software programs that help to manage the personal computer s resources, that is, system board, printers, keyboard, visual display unit etc. and direct the fundamental computer operations. A computer system minus the operating system is a useless piece of machine. With an operating system you are able to interact with the computer and instruct it what to do. To operate the personal computer or compatibles either MS-DOS or PC-DOS is required. MS- DOS is the registered trademark of MICROSOFT CORPORATION and PC-DOS is the registered trademark of IBM CORPORATION. Internal command The internal command is a command, which is present in the system. It is a part of the COMMAND.COM Program. If you type in any of the internal commands such as COPY irrespective of which disk drive is operational, you will still be able to use the COPY command. Putting it simply once the dos get resident in the memory for internal command usage the system does not refer to the dos available on the disk, but takes the required instruction from the memory resident portion of the DOS. External command External commands are those, which form part of the MS-DOS, command structure but are not present in the system when MS-DOS is operational. Before an external command can be put to use, it is first loaded. As a result you must have the path set to MS-DOS directory in the computer to make use of the external commands. FORMAT, DISKCOPY etc. is examples of the external commands. Thus external commands are part of the standard MS-DOS system but are not memory resident. Wild card character Wild card also called a global characters are special characters that can be used in a filename to make the name ambiguous. On using these special characters, the filename you are using can match more than one file on the disk. The question mark (?) and the asterisk mark (*) are two DOS wild card characters. DOS interpret the: Question mark to imply: match any one character in the filename. Whereas Asterisk means: match any number of characters in the file name. Both? And * will match places where characters are not specified in a filename. Combination of? s and * s can also be used. If you want to copy all your files from one directory to another directory starting from A letter and ending with any two letter and extension is.txt type the following command C:\>copy A??.TXT c:\cp1 If you want to copy all your files from one directory to another directory starting with any one letter and ending with.txt extension type the following command C:\>copy?.TXT c:\cp1 If you want to copy all your files from one directory to another directory having.txt extension type the following command C:\>copy *.TXT c:\cp1 If you want to copy all your files from one directory to another directory starting with A letter type the following command

3 C:\>copy A*.* c:\cp1 If you want to copy all your files from one directory to another directory starting from A letter and ending with any one letter type the following command C:\>copy A?*.* c:\cp1 FILES (config.sys) Assign the amount of memory that is to be set aside for file handles. The command is to be used only in a config.sys file. Format: Files = xx XX is the amount of memory for a control block used in managing file handles. PRINT (external) Use the command to print a text file while you are using other MS-DOS commands. Format : PRINT [/d: device] [/b: size] [/u:ticks1] [/m:ticks2] [/s:ticks3] [/q: qsize] [/t] [[drive:][path]filename[ ]] [Drive:] [Path] filename: these parameters specify the location and name of a file or set of files that need to be printed. /D : this switch will specify the name of the print device. /B : this switch will set the size (in bytes) of the internal buffer, which is used to store data before it is sent to the printer. /U : ticks-use the switch to specifies the maximum number of clock ticks print is to wait for a printer to be available (clock ticks occur about 18 times per second). If the printer is not available within the time specified, the job does not print. /M : ticks2-this switch will specify the maximum number of clock ticks print can take to print a character on the printer. /S : ticks-this switch will specify the number of clock ticks the MS-DOS scheduler allocates for background printing. /Q : qsize-use the switch to specify the maximum number of files allowed in the printer queue. /T : this switch removes all files from the print queue. To view the status of the print queue type the following C:\>PRINT COPY (internal) Copies one or more files to another location. Frmat : COPY [/A /B] source [/A /B] [+ source [/A /B] [+...]] [destination [/A /B]] [/V] [/Y /-Y] Source : Specifies the file or files to be copied. /A : Indicates an ASCII text file. /B : Indicates a binary file. Destination : Specifies the directory and/or filename for the new file(s). /V : verifies that new files are written correctly.

4 /Y : Suppresses prompting to confirm you want to overwrite an existing destination file. /-Y : Causes prompting to confirm you want to overwrite an existing destination file. The switch /Y may be preset in the COPYCMD environment variable. This may be overridden with /-Y on the command line To append files, specify a single file for destination, but multiple files For source (using wildcards or file1+file2+file3 format). XCOPY: To copy all of a directory s files and subdirectories, you should use the XCOPY command. COPY CON : Use to create a new file. C:\>COPY CON file1.txt After you type this command and press ENTER, MS-DOS copies everything you type to the file file1.txt. When you are finished typing, either press F6 key or CTRL+Z to indicate that you want to end the file. The CTRL+Z character will appear on the screen as ^Z. Copy one file to another file type the following command C:\>COPY file1.txt file2.txt Using wild card character if you want to copy all files from one directory to another directory type the following command C:\>COPY c:\dir1\*.* c:\dir2 DIR (internal) Use the command to display a list of the files and/or subdirectories in the specified path. Format : DIR [drive:][path][filename] [/p] [/w] [/a [[:] attributes]] [/o [[:]sort order]][/s][/b][/l][/c] /P : Pauses after each screenful of information(display page wise listing). /W : Uses wide list format. /A : Displays files with specified attributes. Attributes D Directories R Read-only files H Hidden files A Files ready for archiving S System files - Prefix meaning not /O : List by files in sorted order. sortorder N By name (alphabetic) S By size (smallest first) E By extension (alphabetic) D By date & time (earliest first) G Group directories first - Prefix to reverse order A By Last Access Date (earliest first) /S : Displays files in specified directory and all subdirectories. /B : Uses bare format (no heading information or summary). /L : Uses lowercase. /V : Verbose mode. /4 : Displays year with 4 digits (ignored if /V also given). To display list of all files and subdirectories page wise type the following command C:\>DIR /p To display list of all files and subdirectories in alphabetical order type the following command C:\>DIR /o:n

5 DATE (internal) To Displays or sets the system dates. Format : DATE [date] Type DATE without parameters to display the current date setting and a prompt for a new one. Press ENTER to keep the same date. TIME (internal) To Displays or sets the system time. Format : TIME [time] Type TIME with no parameters to display the current time setting and a prompt for a new one. Press ENTER to keep the same time. FORMAT (external) Formats a disk for use with MS-DOS. Format : FORMAT drive: [/V[:label]] [/Q] [/F:size] [/C] FORMAT drive: [/V[:label]] [/Q] [/T:tracks /N:sectors] [/C] FORMAT drive: [/V[:label]] [/Q] [/1] [/4] [/C] FORMAT drive: [/Q] [/1] [/4] [/8] [/C] /V: label - Specifies the volume label. /Q : Performs a quick format. /F: size-specifies the size of the floppy disk to format (such as 160, 180, 320, 360, 720, 1.2, 1.44, 2.88). /T: tracks - Specifies the number of tracks per disk side. /N: sectors - Specifies the number of sectors per track. /1 : Formats a single side of a floppy disk. /4 : Formats a 5.25-inch 360K floppy disk in a high-density drive. /8 : Formats eight sectors per track. /C : Tests clusters that are currently marked "bad." LABEL (external) Creates, changes, or deletes the volume label of a disk. Format : LABEL [drive:][label] ATTRIB (external) Displays or changes file attributes. Format : ATTRIB [+R -R] [+A -A] [+S -S] [+H -H] [[drive:][path]filename] [/S] + Sets an attribute. - Clears an attribute. R : Read-only file attribute. A : Archive file attribute. S : System file attribute.

6 H : Hidden file attribute. /S : Processes files in all directories in the specified path. To set a read-only attribute to a file abc.txt type following C:\>ATTRIB +r abc.txt CHDIR OR CD (internal) Displays the name of or changes the current directory. Format : CHDIR [drive:][path] CHDIR [..] CD [drive:][path] CD [..].. Specifies that you want to change to the parent directory. Type CD drive: to display the current directory in the specified drive. Type CD without parameters to display the current drive and directory. DEL OR DELETE (internal) Deletes one or more files. Format : DEL [drive:][path] filename [/P] ERASE [drive:][path] filename [/P] [Drive:][Path]filename: specifies the file(s) to delete. Specify multiple files by using wildcards. /P: Prompts for confirmation before deleting each file. To delete abc.txt file type the following command C:\>DEL abc.txt To delete all files from directory then use wild card character C:\cp1\>DEL *.* FIND (external) To Searches for a text string in a file or files. Format : FIND [/V] [/C] [/N] [/I] "string" [[drive:][path]filename[...]] /V : Displays all lines NOT containing the specified string. /C : Displays only the count of lines containing the string. /N : Displays line numbers with the displayed lines. /I : Ignores the case of characters when searching for the string. "String : Specifies the text string to find. [Drive:][Path] filename: Specifies a file or files to search. If a pathname is not specified, FIND searches the text typed at the prompt or piped from another command. To display all lines from file1.txt in the specified order that contains the string programming then type C:\>FIND programming file1.txt

7 RENAME OR REN (internal) Renames a file/directory or files/directories. Format:RENAME[drive:][path][directoryname1 filename1] [directoryname2 filename2] REN [drive:][path][directoryname1 filename1][directoryname2 filename2] Note that you cannot specify a new drive or path for your destination. To rename a file named temp.txt to area.txt type the following command C:\>REN temp.txt area.txt EXIT Quits the COMMAND.COM program (command interpreter). Format : EXIT CLS Clears the screen. Format : CLS SORT (external) Sorts input and writes results to the screen, a file, or another device Format: SORT[/R][/+n][[drive1:][path1]filename1][>[drive2:][path2]filename2] [command ] SORT [/R] [/+n] [> [drive2:][path2]filename2] /R : Reverses the sort order; that is, sorts Z to A, then 9 to 0. /+N : Sorts the file according to characters in column n. [drive1:][path1]filename1 : Specifies file(s) to be sorted [drive2:][path2]filename2 : Specifies a file where the sorted input is to be stored. command : Specifies a command whose output is to be sorted. To sort the content of the file temp.txt in reverses order type the following command C:\>SORT /r temp.txt PROMPT (internal) Changes the Windows command prompt. Format : PROMPT [text] Text Specifies a new command prompt. Prompt can be made up of normal characters and the following special codes: $Q = (equal sign) $$ $ (Dollar sign) $T Current time $D Current date $P Current drive and path

8 $V Windows version number $N Current drive $G > (greater-than sign) $L < (less-than sign) $B (pipe) $H Backspace (erases previous character) $E Escape code (ASCII code 27) $_ Carriage return and linefeed The following command sets the user prompt to $ C:\>PROMPT $$ The following command display the current path as well as the system prompt C:\>PROMPT $P$G MKDIR OR MD (internal) Creates a directory. Format : MKDIR [drive:]path MD [drive:] path To create a directory cp1 type the following command C:\>MD cp1 PATH (internal) Displays or sets a search path for executable files. Format : PATH [[drive:]path[;...]] PATH ; Type PATH ; to clear all search-path settings and direct Windows to search Only in the current directory. Type PATH without parameters to display the current path. RMDIR OR RD (internal) Removes (deletes) a directory. Format : RMDIR [drive:]path RD [drive:] path It is necessary that prior to directory deletion, you must delete its files and subdirectory. To remove cp1 directory type the following C:\>RD cp1 CHKDSK (external) Checks a disk and displays a status report. Format : CHKDSK [drive:][[path]filename] [/F] [/V] [Drive:][Path]: Specifies the drive and directory to check. Filename: Specifies the file(s) to check for fragmentation. /F : Fixes errors on the disk. /V : Displays the full path and name of every file on the disk.

9 Type CHKDSK without parameters to check the current disk. Instead of using CHKDSK, try using SCANDISK. SCANDISK can reliably detect And fix a much wider range of disk problems.

DOS Command Reference

DOS Command Reference DOS Command Reference Introduction Some course material on the Teaching Network may still use the command line operating system called DOS (Disk Operating System). This requires the user to type specific

More information

DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands:

DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands: DIR Suppose you want to display all files and directories in a directory, including hidden or system files. To specify this display, type the following command: dir /a Suppose you want DIR to display one

More information

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics:

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics: Topics: LECTURE-7 Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. BASIC INTRODUCTION TO DOS OPERATING SYSTEM DISK OPERATING SYSTEM (DOS) In the 1980s or early 1990s, the operating

More information

Understanding the Boot Process and Command Line Chapter #3

Understanding the Boot Process and Command Line Chapter #3 Understanding the Boot Process and Command Line Chapter #3 Amy Hissom Key Terms 1. Active Partition the primary partition on the hard drive that boots the OS. Windows NT/2000/XP calls the active partition

More information

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories Windows by bertram lyons senior consultant avpreserve AVPreserve Media Archiving & Data Management Consultants

More information

Operating System. Lab Manual for Cmp 621A 2nd Edition

Operating System. Lab Manual for Cmp 621A 2nd Edition Operating System Lab Manual for Cmp 621A 2nd Edition Department of Education Feb., 1997 MS-DOS Lab Manual 2 Note to teachers: The labs in this manual offer a brief introduction to the operating system

More information

List of FTP commands for the Microsoft command-line FTP client

List of FTP commands for the Microsoft command-line FTP client You are on the nsftools.com site This is a list of the commands available when using the Microsoft Windows command-line FTP client (requires TCP/IP to be installed). All information is from the Windows

More information

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98 DOS Reference Even if the systems you support, upgrade, and repair are all running the latest version of Windows, you will inevitably find yourself occasionally troubleshooting these systems from the DOS

More information

Chapter 14 MS-DOS Operating System

Chapter 14 MS-DOS Operating System Understanding Operating Systems, Fifth Edition 14-1 Chapter 14 MS-DOS Operating System At a Glance Instructor s Manual Table of Contents Overview Objectives s Quick Quizzes Class Discussion Topics Additional

More information

An overview of FAT12

An overview of FAT12 An overview of FAT12 The File Allocation Table (FAT) is a table stored on a hard disk or floppy disk that indicates the status and location of all data clusters that are on the disk. The File Allocation

More information

Thirty Useful Unix Commands

Thirty Useful Unix Commands Leaflet U5 Thirty Useful Unix Commands Last revised April 1997 This leaflet contains basic information on thirty of the most frequently used Unix Commands. It is intended for Unix beginners who need a

More information

ERD Commander 2003. User s Guide

ERD Commander 2003. User s Guide Winternals Software LP 3101 Bee Caves Road, Suite 150 Austin, Texas 78746 (512) 330-9130 (512) 330-9131 Fax www.winternals.com Copyright 2003 Winternals Software LP Table of Contents 1 Introduction...1

More information

UNIX: Introduction to TELNET and FTP on UNIX

UNIX: Introduction to TELNET and FTP on UNIX Introduction to TELNET and FTP on UNIX SYNOPSIS This document is written with the novice user in mind. It describes the use of TCP/IP and FTP to transfer files to and from the UNIX operating system and

More information

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses A Computer Glossary For the New York Farm Viability Institute Computer Training Courses 2006 GLOSSARY This Glossary is primarily applicable to DOS- and Windows-based machines and applications. Address:

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

Command Line Reference

Command Line Reference Command Prompt \windows\system32\cmd.exe Commands are typed, one at a time, at a simple prompt and then the commands are carried out when the ENTER key is pressed. After a command has completed, a new

More information

THE UNIVERSITY OF AUCKLAND

THE UNIVERSITY OF AUCKLAND THE UNIVERSITY OF AUCKLAND 07.340 T07.340 EXAMINATION FOR BA BSc ETC 1995 COMPUTER SCIENCE Operating Systems ( Time allowed : THREE hours ) NOTES: Answer SIX questions. The total mark for each question

More information

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training Basic Computer Skills MS Windows XP Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding

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

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting.

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting. NTLDR is missing Issue NTLDR is Missing. Related errors Below are the full error messages that may be seen when the computer is booting. NTLDR is Missing Press any key to restart Boot: Couldn't find NTLDR

More information

Active@ Password Changer for DOS User Guide

Active@ Password Changer for DOS User Guide Active@ Password Changer for DOS User Guide 1 Active@ Password Changer Guide Copyright 1999-2014, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Understanding Files and Folders

Understanding Files and Folders Windows Files and Folders Overview Before I get into Windows XP's method of file management, let's spend a little space on a files and folder refresher course. (Just in case you forgot, of course.) The

More information

5COMPUTER SCIENCE For Class IX (marks 55)

5COMPUTER SCIENCE For Class IX (marks 55) 5COMPUTER SCIENCE For Class IX (marks 55) 1. Introduction to Computers o History and development of computers - Types of computers (analogue, digital, hybrid) - Classification of digital computers (micro,

More information

2 ASCII TABLE (DOS) 3 ASCII TABLE (Window)

2 ASCII TABLE (DOS) 3 ASCII TABLE (Window) 1 ASCII TABLE 2 ASCII TABLE (DOS) 3 ASCII TABLE (Window) 4 Keyboard Codes The Diagram below shows the codes that are returned when a key is pressed. For example, pressing a would return 0x61. If it is

More information

How To: Manage your Oracle patch deployment life cycle using Oracle Support Patch Plans

How To: Manage your Oracle patch deployment life cycle using Oracle Support Patch Plans How To: Manage your Oracle patch deployment life cycle using Oracle Support Patch Plans Introduction As part of my writing I often try to document and share best practices I develop on my day to day work,

More information

CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security. Project 3-1

CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security. Project 3-1 CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security Project 3-1 Linux support many different file systems that can be mounted using the mount command. In this project, you use the

More information

Microsoft Networks/OpenNET FILE SHARING PROTOCOL. INTEL Part Number 138446. Document Version 2.0. November 7, 1988

Microsoft Networks/OpenNET FILE SHARING PROTOCOL. INTEL Part Number 138446. Document Version 2.0. November 7, 1988 Microsoft Networks/OpenNET FILE SHARING PROTOCOL INTEL Part Number 138446 Document Version 2.0 November 7, 1988 Microsoft Corporation Intel Corporation File Sharing Protocol - 2 - November 7, 1988 1. Introduction

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

History of Revisions. Ordering Information

History of Revisions. Ordering Information No part of this document may be reproduced in any form or by any means without the express written consent of II Morrow Inc. II Morrow, Apollo, and Precedus are trademarks of II Morrow Inc. Windows is

More information

Table of Contents Introduction Supporting Arguments of Sysaxftp File Transfer Commands File System Commands PGP Commands Other Using Commands

Table of Contents Introduction Supporting Arguments of Sysaxftp File Transfer Commands File System Commands PGP Commands Other Using Commands FTP Console Manual Table of Contents 1. Introduction... 1 1.1. Open Command Prompt... 2 1.2. Start Sysaxftp... 2 1.3. Connect to Server... 3 1.4. List the contents of directory... 4 1.5. Download and Upload

More information

An Introduction to the Linux Command Shell For Beginners

An Introduction to the Linux Command Shell For Beginners An Introduction to the Linux Command Shell For Beginners Presented by: Victor Gedris In Co-Operation With: The Ottawa Canada Linux Users Group and ExitCertified Copyright and Redistribution This manual

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

USB Recorder. User s Guide. Sold by: Toll Free: (877) 389-0000

USB Recorder. User s Guide. Sold by:  Toll Free: (877) 389-0000 USB Recorder User s Guide Sold by: http://www.twacomm.com Toll Free: (877) 389-0000 Table of Contents 1. Getting Started 1-1...First Login 1-2...Creating a New User 2. Administration 2-1...General Administration

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

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

A UNIX/Linux in a nutshell

A UNIX/Linux in a nutshell bergman p.1/23 A UNIX/Linux in a nutshell Introduction Linux/UNIX Tommi Bergman tommi.bergman[at]csc.fi Computational Environment & Application CSC IT center for science Ltd. Espoo, Finland bergman p.2/23

More information

Opening a Command Shell

Opening a Command Shell Opening a Command Shell Win Cmd Line 1 In WinXP, go to the Programs Menu, select Accessories and then Command Prompt. In Win7, go to the All Programs, select Accessories and then Command Prompt. Note you

More information

HP Mobile Remote Control (Select Models Only) User Guide

HP Mobile Remote Control (Select Models Only) User Guide HP Mobile Remote Control (Select Models Only) User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are either trademarks or registered trademarks of Microsoft Corporation

More information

µtasker Document FTP Client

µtasker Document FTP Client Embedding it better... µtasker Document FTP Client utaskerftp_client.doc/1.01 Copyright 2012 M.J.Butcher Consulting Table of Contents 1. Introduction...3 2. FTP Log-In...4 3. FTP Operation Modes...4 4.

More information

CMSC 216 UNIX tutorial Fall 2010

CMSC 216 UNIX tutorial Fall 2010 CMSC 216 UNIX tutorial Fall 2010 Larry Herman Jandelyn Plane Gwen Kaye August 28, 2010 Contents 1 Introduction 2 2 Getting started 3 2.1 Logging in........................................... 3 2.2 Logging

More information

#65 4GHGTGPEG")WKFG #FXCPEGF"6GTOKPCN"5QHVYCTG 8GTUKQP"502 HQT"%QPVTQNNGT/#% Catalog # 100123 Rev.02

#65 4GHGTGPEG)WKFG #FXCPEGF6GTOKPCN5QHVYCTG 8GTUKQP502 HQT%QPVTQNNGT/#% Catalog # 100123 Rev.02 #65 #FXCPEGF"6GTOKPCN"5QHVYCTG 8GTUKQP"502 HQT"%QPVTQNNGT/#% 4GHGTGPEG")WKFG Catalog # 100123 Rev.02 &RS\ULJKWý ý ýìääçñýìääåýe\ý(vkhgý5rerwhfýõìäåëôý/lplwhgï 2FWREHUýìääåýõ3')ýYHUVLRQô &DWDORJýúìííìëêý5HYïíë

More information

Introduction to: Computers & Programming: Input and Output (IO)

Introduction to: Computers & Programming: Input and Output (IO) Introduction to: Computers & Programming: Input and Output (IO) Adam Meyers New York University Summary What is Input and Ouput? What kinds of Input and Output have we covered so far? print (to the console)

More information

Appendix C: Keyboard Scan Codes

Appendix C: Keyboard Scan Codes Thi d t t d ith F M k 4 0 2 Appendix C: Keyboard Scan Codes Table 90: PC Keyboard Scan Codes (in hex) Key Down Up Key Down Up Key Down Up Key Down Up Esc 1 81 [ { 1A 9A, < 33 B3 center 4C CC 1! 2 82 ]

More information

CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities. Project 7-1

CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities. Project 7-1 CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities Project 7-1 In this project you use the df command to determine usage of the file systems on your hard drive. Log into user account for this and the following

More information

Lab 1: Introduction to C, ASCII ART and the Linux Command Line Environment

Lab 1: Introduction to C, ASCII ART and the Linux Command Line Environment .i.-' `-. i..' `/ \' _`.,-../ o o \.' ` ( / \ ) \\\ (_.'.'"`.`._) /// \\`._(..: :..)_.'// \`. \.:-:. /.'/ `-i-->..

More information

The Linux Operating System and Linux-Related Issues

The Linux Operating System and Linux-Related Issues Review Questions: The Linux Operating System and Linux-Related Issues 1. Explain what is meant by the term copyleft. 2. In what ways is the Linux operating system superior to the UNIX operating system

More information

SVN Starter s Guide Compiled by Pearl Guterman June 2005

SVN Starter s Guide Compiled by Pearl Guterman June 2005 SVN Starter s Guide Compiled by Pearl Guterman June 2005 SV Table of Contents 1) What is SVN?... 1 2) SVN Architecture... 2 3) Creating a Working Copy... 3 4) Basic Work Cycle... 4 5) Status Symbols...

More information

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2

Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2 Unix Shell Scripts Norman Matloff July 30, 2008 Contents 1 Introduction 1 2 Invoking Shell Scripts 2 2.1 Direct Interpretation....................................... 2 2.2 Indirect Interpretation......................................

More information

About this Chapter. File Manager. Chapter 7. SYSTEM MANAGEMENT

About this Chapter. File Manager. Chapter 7. SYSTEM MANAGEMENT Chapter 7. SYSTEM MANAGEMENT Chapter 7. SYSTEM MANAGEMENT About this Chapter This chapter provides comprehensive instructions on the major features associated with System Management. Included are sections

More information

GE Healthcare Life Sciences. PrimeView 5.31. User Manual

GE Healthcare Life Sciences. PrimeView 5.31. User Manual GE Healthcare Life Sciences PrimeView 5.3 User Manual Table of Contents Table of Contents Introducing PrimeView.... About PrimeView.... About this manual... PrimeView concepts.... Concept definitions....

More information

Robocopy.exe. Robust File Copy Utility Version 1.95. Windows NT 4.0 Resource Kits. Contents

Robocopy.exe. Robust File Copy Utility Version 1.95. Windows NT 4.0 Resource Kits. Contents 1 Robocopy.exe Robust File Copy Utility Version 1.95 Windows NT 4.0 Resource Kits Contents Introduction 2 New Features in Version 1.95 2 Command-line Reference 4 Usage Notes 6 Using Robocopy Within a UNIX

More information

User's Guide. Using RFDBManager. For 433 MHz / 2.4 GHz RF. Version 1.23.01

User's Guide. Using RFDBManager. For 433 MHz / 2.4 GHz RF. Version 1.23.01 User's Guide Using RFDBManager For 433 MHz / 2.4 GHz RF Version 1.23.01 Copyright Notice Copyright 2005 Syntech Information Company Limited. All rights reserved The software contains proprietary information

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

9243054 Issue 1. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

9243054 Issue 1. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9243054 Issue 1 Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation VPN Client User s Guide 9243054 Issue 1 Reproduction, transfer, distribution or storage of part or all of

More information

USB Recorder User Guide

USB Recorder User Guide USB Recorder User Guide Table of Contents 1. Getting Started 1-1... First Login 1-2... Creating a New User 2. Administration 2-1... General Administration 2-2... User Administration 3. Recording and Playing

More information

Exeba -ATS. User Guide. Escan Technologies Corporation

Exeba -ATS. User Guide. Escan Technologies Corporation Escan Technologies Corporation Exeba -ATS User Guide Escan Technologies Corp. 12140 Severn Way Riverside, CA 92503 Phone (909) 270-0043 Fax (909) 270-0920 1 ESCAN TECHNOLOGIES CORPORATION Exeba -ATS User

More information

Outline: Operating Systems

Outline: Operating Systems Outline: Operating Systems What is an OS OS Functions Multitasking Virtual Memory File Systems Window systems PC Operating System Wars: Windows vs. Linux 1 Operating System provides a way to boot (start)

More information

IBM Sterling Control Center

IBM Sterling Control Center IBM Sterling Control Center System Administration Guide Version 5.3 This edition applies to the 5.3 Version of IBM Sterling Control Center and to all subsequent releases and modifications until otherwise

More information

Sage Abra SQL HRMS Reports. User Guide

Sage Abra SQL HRMS Reports. User Guide Sage Abra SQL HRMS Reports User Guide 2010 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks

More information

Backup Tab. User Guide

Backup Tab. User Guide Backup Tab User Guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Create a New Backup... 3 3. Manage backup jobs... 4 Using the Edit menu... 5 Overview... 5 Destination...

More information

The Basics of FTP. Basic Order of Operations: Commands: FTP (File Transfer Protocol) allows a user to transfer files to/from a remote network site.

The Basics of FTP. Basic Order of Operations: Commands: FTP (File Transfer Protocol) allows a user to transfer files to/from a remote network site. The Basics of FTP FTP (File Transfer Protocol) allows a user to transfer files to/from a remote network site. Topics: Basic Order of Operations Commands Example Screen Shots Basic Order of Operations:

More information

In-Class Lab Assignment

In-Class Lab Assignment In-Class Lab Assignment Prepared by Ms. Delores J. Reaves Please bring copy to class!!!!! Introduction to Windows (the Operating System) Understanding File Management F ile management is the process of

More information

Chapter 23 File Management (FM)

Chapter 23 File Management (FM) Chapter 23 File Management (FM) Most Windows tasks involve working with and managing Files and Folders.Windows uses folders to provide a storage system for the files on your computer, just as you use manila

More information

DEVICE DRIVERS AND TERRUPTS SERVICE MECHANISM Lesson-14: Device types, Physical and Virtual device functions

DEVICE DRIVERS AND TERRUPTS SERVICE MECHANISM Lesson-14: Device types, Physical and Virtual device functions DEVICE DRIVERS AND TERRUPTS SERVICE MECHANISM Lesson-14: Device types, Physical and Virtual device functions 1 Device Types For each type of device, there is a set of the generic commands. For example,

More information

Unix the Bare Minimum

Unix the Bare Minimum Unix the Bare Minimum Norman Matloff September 27, 2005 c 2001-2005, N.S. Matloff Contents 1 Purpose 2 2 Shells 2 3 Files and Directories 4 3.1 Creating Directories.......................................

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1

CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1 CM HOST CM CardTransporter Fuel Communication and Management Software 10.10.06 Software version up to 3.1 CM Host Manual For CardMaster Fuel Control www.cardlockvending.com customers call 888-487-5040

More information

Chapter 3 Software Installation

Chapter 3 Software Installation Software Installation Chapter 3 Software Installation This chapter provides information on how to install the CyberSerial PCI s drivers and utilities for the following operating systems: Windows 95/98

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

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

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories Mac OS by bertram lyons senior consultant avpreserve AVPreserve Media Archiving & Data Management Consultants

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

Human Resources Installation Guide

Human Resources Installation Guide Human Resources Installation Guide Installing HR i Index Copyright 2001 Jenzabar, Inc. You may print any part or the whole of this documentation to support installations of Jenzabar software. Where the

More information

CNC Transfer. Operating Manual

CNC Transfer. Operating Manual Rank Brothers Ltd CNC Transfer Operating Manual Manufactured by: Rank Brothers Ltd 56 High Street, Bottisham, Cambridge CB25 9DA, England Tel: +44 (0)1223 811369 Fax: +44 (0)1223 811441 Website: http://www.rankbrothers.co.uk/

More information

UTILITY INSTRUCTION MANUAL BNP-B2196 (ENG)

UTILITY INSTRUCTION MANUAL BNP-B2196 (ENG) UTILITY INSTRUCTION MANUAL BNP-B2196 (ENG) MELDASMAGIC is a registered trademark of Mitsubishi Electric Corporation. Microsoft and Windows are registered trademark of Microsoft Corporation in the USA.

More information

Managing Software and Configurations

Managing Software and Configurations 55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page

More information

TIBCO Fulfillment Provisioning Session Layer for FTP Installation

TIBCO Fulfillment Provisioning Session Layer for FTP Installation TIBCO Fulfillment Provisioning Session Layer for FTP Installation Software Release 3.8.1 August 2015 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Model 288B Charge Plate Graphing Software Operators Guide

Model 288B Charge Plate Graphing Software Operators Guide Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254

More information

Basics of STATA. 1 Data les. 2 Loading data into STATA

Basics of STATA. 1 Data les. 2 Loading data into STATA Basics of STATA This handout is intended as an introduction to STATA. STATA is available on the PCs in the computer lab as well as on the Unix system. Throughout, bold type will refer to STATA commands,

More information

1 Basic commands. 2 Terminology. CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger

1 Basic commands. 2 Terminology. CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger 1 Basic commands This section describes a list of commonly used commands that are available on the EECS UNIX systems. Most commands are executed by

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

Objectives. At the end of this chapter students should be able to:

Objectives. At the end of this chapter students should be able to: NTFS PERMISSIONS AND SECURITY SETTING.1 Introduction to NTFS Permissions.1.1 File Permissions and Folder Permission.2 Assigning NTFS Permissions and Special Permission.2.1 Planning NTFS Permissions.2.2

More information

XFTP 5 User Guide. The Powerful SFTP/FTP File Transfer Program. NetSarang Computer Inc.

XFTP 5 User Guide. The Powerful SFTP/FTP File Transfer Program. NetSarang Computer Inc. XFTP 5 User Guide The Powerful SFTP/FTP File Transfer Program NetSarang Computer Inc. Copyright 2015 NetSarang Computer, Inc. All rights reserved. Xftp Manual This software and various documents have been

More information

Windows PowerShell Essentials

Windows PowerShell Essentials Windows PowerShell Essentials Windows PowerShell Essentials Edition 1.0. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights

More information

USEFUL UNIX COMMANDS

USEFUL UNIX COMMANDS cancel cat file USEFUL UNIX COMMANDS cancel print requested with lp Display the file cat file1 file2 > files Combine file1 and file2 into files cat file1 >> file2 chgrp [options] newgroup files Append

More information

Managed File Transfer with Universal File Mover

Managed File Transfer with Universal File Mover Managed File Transfer with Universal File Mover Roger Lacroix roger.lacroix@capitalware.com http://www.capitalware.com Universal File Mover Overview Universal File Mover (UFM) allows the user to combine

More information

ExpressShipper UK User Guide

ExpressShipper UK User Guide ExpressShipper Quick User Guide ExpressShipper Section 0 Page 1 of 63 Section 1: Structure of the User Guide In this section This section contains the following topics: Topic See Page What is the purpose

More information

When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process.

When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process. When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process. Registration Settings: SERIAL NUMBER: COMPUTER ID: REGISTRATION NUMBER:

More information

User Guide Version 3.0

User Guide Version 3.0 User Guide Version 3.0 Page 2 of 12 Summary Contents 1 INTRODUCTION 3 1.1 WHAT IS FTP? 3 1.2 FTP REQUIRED INFO 3 2 FTP MANAGER 4 2.1 CREATING USERS IN FTP MANAGER 5 2.1.1 Creating a Username in FTP Manager

More information

File Transfer Protocols In Anzio

File Transfer Protocols In Anzio The New File Transfer Protocols in Anzio version 12.6 What s New in Version 12.6 With the release of Anzio Lite and AnzioWin version 12.6 we are introducing a new user interface and support for additional

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

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

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

winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR

winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR winhex Disk Editor, RAM Editor PRESENTED BY: OMAR ZYADAT and LOAI HATTAR Supervised by : Dr. Lo'ai Tawalbeh New York Institute of Technology (NYIT)-Jordan X-Ways Software Technology AG is a stock corporation

More information

Getting started with the Stata

Getting started with the Stata Getting started with the Stata 1. Begin by going to a Columbia Computer Labs. 2. Getting started Your first Stata session. Begin by starting Stata on your computer. Using a PC: 1. Click on start menu 2.

More information

Transfer Files to FreeDOS Guest OS with Shared Folders VMware Workstation

Transfer Files to FreeDOS Guest OS with Shared Folders VMware Workstation Print Date: 21.06.2013 Transfer Files to FreeDOS Guest OS with Shared Folders VMware Workstation Brainboxes Limited, 18 Hurricane Drive, Liverpool International Business Park, Speke, Liverpool, L24 8RL,

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

Winsock RCP/RSH/REXEC for Win32. DENICOMP SYSTEMS Copyright? 2002 Denicomp Systems All rights reserved. INTRODUCTION...1 REQUIREMENTS...

Winsock RCP/RSH/REXEC for Win32. DENICOMP SYSTEMS Copyright? 2002 Denicomp Systems All rights reserved. INTRODUCTION...1 REQUIREMENTS... Copyright? 2002 Denicomp Systems All rights reserved. INTRODUCTION...1 REQUIREMENTS...1 INSTALLATION...1 REMOVING WINSOCK RCP/RSH/REXEC...2 SECURITY...2 RSH/REXEC AND FIREWALLS...3 CONFIGURING WINSOCK

More information