"tar" is a program to extract files from an "archive" (sort of like a .zip file). The tar archive file contains files in specific directories.
You need to 'be in' the root directory (that is, Cygwin's directory which is named "/") so that when tar needs to recreate some of the directories which it contains, they're created in the correct places relative to the other Cygwin directories that already are on your system.
(For example, some netpbm distributions will need to create the directory /usr/local/bin/netpbm. /usr/local/bin usually already exists, so just the subdirectory netpbm will need to be created. If you tried to run tar while you were in your home directory, it would create /home/Ozark/usr/local/bin/netpbm, which is not what you want.)
However, you can put the tar archive file anywhere (so long as you remember to move it someplace more appropriate after you've finished the installation). If you want to type just the name of the file and not have to type the name of the directory that it is in, then the tar archive file has to be in Cygwin's root directory (/), too.
The error message
tar (child): netpbm-10.18-cygwin-1.3-bin.tar.gz: Cannot open: No such file or directory
is saying that the tar archive file is not in your current default directory, which is the root directory (/).That means either you should move the tar archive file to / or you should type the name of the directory where you put the tar archive file. If you put it in your home directory, for example, then you could use the command
Code: Select all
tar xzf ~/netpbm-10.27-cygwin-1.3-bin.tar.gz
(Recall that ~ is shorthand for your home directory)