putty - Free telnet and ssh for win32 and unix ChangeLog

HOWTO


# PuTTY 0.58
# ==========
# Prerequisites:
# gtk+

cd
test -f installed/putty-0.58.tar.gz && mv installed/putty-0.58.tar.gz .
test ! -f putty-0.58.tar.gz &&
wget http://the.earth.li/~sgtatham/putty/latest/putty-0.58.tar.gz

# Verify tarball w/ md5sum:
echo "ffb78a7db7e4802896189b2112714a9f  putty-0.58.tar.gz" | md5sum -c

# Verify tarball w/ sha1sum:
# (this one came from my gpg-verified tarball)
echo "25504ca4fe4e3b1a8d96d9c50be5eb6cd370f018  putty-0.58.tar.gz" | \
sha1sum -c

# Verify tarball w/ gpg:
( gpg --list-keys 08B0A90B > /dev/null 2>&1 || gpg --recv-keys 08B0A90B ) &&
wget -nc http://the.earth.li/~sgtatham/putty/latest/putty-0.58.tar.gz.DSA &&
gpg --verify putty-0.58.tar.gz.DSA putty-0.58.tar.gz &&
rm putty-0.58.tar.gz.DSA

cd /usr/local/src
find -type d -maxdepth 1 -name "putty-*" -exec rm -r {} \;
tar xzvf ~/putty-0.58.tar.gz
cd putty-0.58
chown -R root:root .
cd unix
make -f Makefile.gtk
make -f Makefile.gtk install INSTALL_PROGRAM="install -s"
cd
mkdir -p -m 0700 installed
rm -f installed/putty-*.tar.*
mv putty-0.58.tar.gz installed/

# If you ever want to uninstall putty, run this:
( cd /usr/local/bin ; rm -f plink pscp psftp pterm putty puttygen puttytel )
( cd /usr/local/man/man1 ; rm -f plink.1 pterm.1 putty.1 puttygen.1 \
  puttytel.1 )
find /usr/local/src -type d -maxdepth 1 -name "putty-*" -exec rm -r {} \;
rm -f ~/installed/putty-*.tar.*
# and there may be "dotfiles" in your home directory too

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2005-04-06 11:02am
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]