INSTALL
上传用户:tianjinjs
上传日期:2007-01-05
资源大小:309k
文件大小:1k
源码类别:

Modem编程

开发平台:

Unix_Linux

  1. ### This is the INSTALL script for the the stuff in the linux directory. 
  2. ### (2-22-98)
  3. DIR=$PWD
  4. cp -p modemu /usr/bin
  5. cp -p mtelnet /usr/bin
  6. cp -p lrz /usr/bin
  7. cp -p lsz /usr/bin
  8. if [ -d /usr/man/man1 ]; then
  9. cp ../man/lrz.1 ../man/lsz.1 ../man/modemu.1 /usr/man/man1
  10. elif [ -d /usr/local/man/man1 ]; then
  11. cp ../man/lrz.1 ../man/lsz.1 ../man/modemu.1 /usr/local/man/man1
  12. else
  13. MSG="NO"
  14. fi
  15. cd /usr/bin
  16. ln -sf lrz rz
  17. ln -sf lrz rx
  18. ln -sf lrz rb
  19. ln -sf lsz sz
  20. ln -sf lsz sx
  21. ln -sf lsz sb
  22. cd $DIR
  23. if [ ! -L /lib/libncurses.so.4 -a ! -L /usr/lib/libncurses.so.4 ]; then
  24. echo
  25. echo "You need libncurses.so.? to use minicom."
  26. echo "You also need a link to libncurses.so.? called libncurses.so.4."
  27. echo "ln -sf libncurses.so.? libncurses.so.4   <-Create link.)"
  28. fi
  29. echo
  30. echo "The programs (lrz lsz modemu) are in /usr/bin."
  31. if [ "$MSG" = "NO" ]; then
  32. echo "Man pages not installed, no /usr/man/man1 or /usr/local/man/man1 directory."
  33. else
  34. echo "The man pages for the programs are in /usr/man/man1 or /usr/local/man/man1."
  35. fi
  36. echo
  37. echo "Done... I hope there were no problems."
  38. echo