From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bay103-dav15.bay103.hotmail.com ([65.54.174.87] helo=hotmail.com) by speech.braille.uwo.ca with esmtp (Exim 3.36 #1 (Debian)) id 1DdZhT-0000fT-00 for ; Wed, 01 Jun 2005 16:20:27 -0400 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 1 Jun 2005 13:19:46 -0700 Message-ID: Received: from 65.54.174.201 by BAY103-DAV15.phx.gbl with DAV; Wed, 01 Jun 2005 20:19:46 +0000 X-Originating-IP: [65.54.174.201] X-Originating-Email: [mikster4@msn.com] X-Sender: mikster4@msn.com From: "Michael Whapples" To: "mike coulombe" , "Speakup is a screen review system for Linux." References: <0IHF00HKG7QACW91@vms044.mailsrvcs.net> Date: Wed, 1 Jun 2005 21:19:26 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-OriginalArrivalTime: 01 Jun 2005 20:19:46.0569 (UTC) FILETIME=[411AEF90:01C566E7] Subject: Re: commands X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Speakup is a screen review system for Linux." List-Id: "Speakup is a screen review system for Linux." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2005 20:21:02 -0000 You would be best to read some information about linux. If you are used to dos commands, also you may wish to try the dos to linux howto, you can find it at www.linux.org. Something that gives a quick overview of how linux specifies drives is the speaking install howto with slackware. This is not enough to teach you all about linux, but gives some information of how linux refers to hardware. I will give a quick example of how drives are referred to below. On my computer windows is installed on the first partition of the first drive on the IDE bus, c: in windows and /dev/hda1in linux. Linux is on the second partition of my first drive on the IDE bus, windows does not recognise it, linux /dev/hda2. Swap partition for linux is on the third partition of the same drive, windows does not see this, linux /dev/hda3. In linux you need to mount a drive in a folder to access it. Linux automatically mounts the linux partition as /. To access my windows partition, I need to mount that, so I have a folder called /winpart/ (anything will do), then to mount it I type mount /dev/hda1 /winpart/ now to access the drive I need to just access the folder /winpart/ as any other folder. For convenience, I have linux automatically mount my windows partition on start up, then I just need to access /winpart/ to access the partition. Hope this helps. Michael