README
上传用户:lukesailor
上传日期:2007-01-04
资源大小:27k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. This is a small, simple, linux-specific FTP server.  Read the man page
  2. (for instance using 'groff -mandoc -Tascii ftpd.8 | less' for details
  3. about the server itself.
  4. To install, you need to do three things:
  5. 1.  Compile it.  Simply a matter of saying 'make' and 'make install'.
  6. If something fails, you may have a too-old version of libc and/or the
  7. kernel, or I may have done something wrong.  If you think it's my
  8. fault, please send me the output from 'make'.
  9. If you get "Undefined symbol _setfsuid referenced from text segment"
  10. see fakesfuid.h.  If you get "Undefined symbol _vsnprintf referenced
  11. from text segment" you really, really need to upgrade to a later
  12. version of libc.
  13. 2.  Edit /etc/inetd.conf, to run this ftpd instead of whatever you run
  14. now.
  15. 3.  Set up a cron job to run mkusers every night.  Normally, to show
  16. who is the owner of a file, /bin/ls reads one line at a time from
  17. /etc/passwd until it finds the appropriate line.  mkusers builds
  18. alternative user and groups databases, where one can look up user and
  19. group names much more quickly.
  20. If you do not run mkusers, the ls in ftpd will show only numeric user
  21. and group IDs.
  22. You may also want to do more stuff:
  23. 4.  Direct syslog stuff into a suitable file.  The daemon facility is
  24. used, but it's a simple hack to change it to e.g. local3.
  25. 5.  The man page explains how to set up virtual servers.
  26. 6.  Subscribe to the ftpd-announce list, to receive announcements
  27. about new versions.  Only serious changes will be announced: security
  28. problems and major bugs, not much else.  Send a message to
  29. ftpd-announce-request@troll.no
  30. containing the single word
  31. subscribe
  32. in order to subscribe.  To unsubscribe, send a message containing the
  33. single word
  34. unsubscribe
  35. to the same address.
  36. That's all, I hope.
  37. Arnt Gulbrandsen <agulbra@troll.no>