This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems installing cygwin-XFree86 on a Dell WIN2K box


"Dr. Lawrence Ward Spradley" <lws@HiWAAY.net> writes:

> I also looked through the Xinstall.sh script to try to assess why it
> was stopping. It appears to need a program called extract, which I
> think is part of the XFree86 download.

Yes it is. It worked for me by having extract in the same directory as
the various X files, Xbin.tgz, Xdoc.tgz, etc.

For example, I downloaded the X files into the /tmp directory,
including extract.exe ; it installed very easily. If the extract.exe
you downloaded is compressed (it looks like "extract.exe.gz") then
you'll need to decompress it with the gunzip command. Provided you've
installed the gzip package, this can be done with "gunzip
extract.exe.gz".

> The script also contains comments about linking extract to gnu-tar.

# Link extract to gnu-tar so it can also be used as a regular tar
case "$OsName" in
CYGWIN*)
	rm -f gnu-tar
	ln -s extract.exe gnu-tar
	;;
*)
	rm -f gnu-tar
	ln extract gnu-tar
	;;
esac

This is simply providing a link between exact and gnu-tar - making
gnu-tar a synonym for extract (that is, when you run "gnu-tar" it does
the same thing as running extract - they're the same programs [ note
this is entitled "gnu-tar" ].

Is extract.exe in the same directory as the Xinstall.sh?

Elizabeth

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]