winpty icon indicating copy to clipboard operation
winpty copied to clipboard

Add installation info in README.md

Open emigenix opened this issue 8 years ago • 5 comments

Please add installation info (and an installation script) in the README.md to explain how to install the files as given under releases wiki.

For Cygwin it should be something like:

cd <path-to-extracted-files>
cp -an ./bin/* /usr/local/bin/.
cp -an ./lib/* /usr/local/lib/.
chmod -R 755 /usr/local/bin/.
chmod -R 755 /usr/local/lib/.

emigenix avatar Aug 20 '16 11:08 emigenix

/usr/local is not used by cygwin packages, and does not even exist in a typical cygwin installation. Installation instructions should target /usr/bin.

mintty avatar Sep 16 '16 10:09 mintty

/usr/local is not used by cygwin packages,

@mintty Exactly. That makes sense for stuff that can be installed with the package manager, everything else should be kept isolated from default location. At least until packages can be easily installed,updated or removed with a manager app.

emigenix avatar Dec 01 '16 08:12 emigenix

To install in cygwin x64, type these commands wget --no-check-certificate https://github.com/rprichard/winpty/releases/download/0.4.2/winpty-0.4.2-cygwin-2.6.1-x64.tar.gz mkdir -p /usr/local tar xzvf winpty-0.4.2-cygwin-2.6.1-x64.tar.gz -C /usr/local/ --strip 1

javacom avatar May 08 '17 13:05 javacom

Why should certificate checking be disabled?

rprichard avatar May 08 '17 21:05 rprichard

Why should certificate checking be disabled?

because user did not install the cygwin package ca-certificates by default and have to specify the --ca-directory=/usr/ssl/certs

javacom avatar May 09 '17 02:05 javacom