From mboxrd@z Thu Jan 1 00:00:00 1970 From: DJ Delorie To: gnu-win32@cygnus.com Subject: Re: Installation problems Date: Wed, 23 Dec 1998 20:10:00 -0000 Message-id: <36815343.F5E8EC74@delorie.com> References: <8256f9cf.36813b20.cygnus.gnu-win32@aol.com> X-SW-Source: 1998-12/msg00589.html Cjfogg@aol.com wrote: > I am very new to programming and have gotten a little confused with Cygwin- > b20. I hate to ask a simple question, but I have downloaded user-man.tar.bz2, > stored it in Wordpad, and haven't the first clue how to read it. I have tried > to 'cd' to it but keep getting the reply; What you need to do is save that file to disk when you download it, not read it. Right mouse on the link and choose "save as" to save it to file. You'll also need have installed full.exe (save that to a file, then run it - it will install the cygwin development environment). Two of the programs full.exe installs are "bunzip2.exe" and "tar.exe". You'd do something like this: bunzip2 user-man.tar.bz2 tar xvf user-man.tar You might want to do "tar tvf user-man.tar" before the xfv one, to see what directories it's going to create, so that you'll untar it in the right spot. What this does is uncompress the tar file (a compressed tar file is like a zip file - it contains many little files within it) and unpack it so that you end up with the correct directory structure with all the files in it. - For help on using this list (especially unsubscribing), send a message to "gnu-win32-request@cygnus.com" with one line of text: "help".