README 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. This is the README for PuTTY, a free Windows and Unix Telnet and SSH
  2. client.
  3. PuTTY is built using CMake <https://cmake.org/>. To compile in the
  4. simplest way (on any of Linux, Windows or Mac), run these commands in
  5. the source directory:
  6. cmake .
  7. cmake --build .
  8. Then, to install in the simplest way on Linux or Mac:
  9. cmake --build . --target install
  10. On Unix, pterm would like to be setuid or setgid, as appropriate, to
  11. permit it to write records of user logins to /var/run/utmp and
  12. /var/log/wtmp. (Of course it will not use this privilege for
  13. anything else, and in particular it will drop all privileges before
  14. starting up complex subsystems like GTK.) The cmake install step
  15. doesn't attempt to add these privileges, so if you want user login
  16. recording to work, you should manually ch{own,grp} and chmod the
  17. pterm binary yourself after installation. If you don't do this,
  18. pterm will still work, but not update the user login databases.
  19. Documentation (in various formats including Windows Help and Unix
  20. `man' pages) is built from the Halibut (`.but') files in the `doc'
  21. subdirectory. If you aren't using one of our source snapshots,
  22. you'll need to do this yourself. Halibut can be found at
  23. <https://www.chiark.greenend.org.uk/~sgtatham/halibut/>.
  24. The PuTTY home web site is
  25. https://www.chiark.greenend.org.uk/~sgtatham/putty/
  26. If you want to send bug reports or feature requests, please read the
  27. Feedback section of the web site before doing so. Sending one-line
  28. reports saying `it doesn't work' will waste your time as much as
  29. ours.
  30. See the file LICENCE for the licence conditions.