home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / lo21123.zip / README < prev   
Text File  |  1996-11-23  |  4KB  |  97 lines

  1.  
  2. =============================================================================
  3.                LoraBBS Professional Edition - Version 2.99.25
  4. =============================================================================
  5.  
  6.                          Preliminary Documentation
  7.                               Version 2.99.25
  8.  
  9.         Coyright (c) 1996 by Marco Maccaferri. All rights reserved.
  10.  
  11.  
  12. =============================================================================
  13.                                 Installation
  14. =============================================================================
  15.  
  16. Lora will ship with a ready-to-run configuration that allows you to plug in
  17. your modem and start you BBS system in a matter of minutes, with minimal
  18. configuration changes (someone may call this Plug-and-Play).
  19.  
  20. To install Lora, simply unpack the original distribution package on an
  21. empty directory and type install. You must use an empty directory, even if
  22. you are upgrading from Lora 2.4x, since the data files are all changed but
  23. someone may have the same name, if you install the new program over a
  24. previous installation you may overwrite some files and you will not be able
  25. to import your existing configuration to the new version.
  26.  
  27. If this is a new installation, you need to change some default values to
  28. your needs, before starting your BBS. You should change the 'Global / Site
  29. informations' dialog and, if necessary, the 'Modem / Hardware' and 'Modem /
  30. Command Strings' dialogs. The default configuration is designed to run on
  31. the COM2 serial port at a speed of 19200 bps and with the simple ATZ
  32. initialisation command. Change this values to reflect your hardware
  33. requirements.
  34.  
  35. If you are upgrading from a previous beta release, you must run the
  36. upd25.exe program before starting Lora. If you don't find this program in
  37. the distribution file, then it is not required (it isn't a bug, just no
  38. data files upgrade are required).
  39.  
  40. You can start exploring your new BBS by issuing the 'System / Local login'
  41. command. As a new user you are assigned the levels defined with the 'BBS /
  42. New users' dialog. If these levels are too low for you (as a sysop you may
  43. want to have an higher access level), just log off and go to the 'Manager /
  44. User editor' dialog. Your name should be the first displayed on screen.
  45. Change the 'Security' dialog and the 'Limits' field to reflect your needs.
  46.  
  47.  
  48. -----------------------------------------------------------------------------
  49.                            Notes for Linux users
  50. -----------------------------------------------------------------------------
  51.  
  52. The installation program will be extracted with not execution permission.
  53. You should manually change that with the following command:
  54.  
  55. chmod a+x INSTALL
  56.  
  57. After the installation program unpacks all the required files, you should
  58. manually change the execution permissions for the executable files, in
  59. order to run the program.
  60.  
  61. The following commands should be issued from the command line:
  62.  
  63. chmod a+x lc
  64. chmod a+x lora
  65. chmod a+x lfile
  66. chmod a+x lmsg
  67. chmod a+x luser
  68. chmod a+x comm.dll
  69. chmod a+x bbs.dll
  70. chmod a+x lora_api.dll
  71. chmod a+x msgbase.dll
  72.  
  73. As you have noticed there are some .dll files. These files are shared
  74. libraries (other systems calls these files Dynamic Link Libraries, so the
  75. extension of .dll). In order for Lora to find these libraries you should
  76. add the directory that contains these files to the LD_LIBRARY_PATH
  77. environment variabile.
  78.  
  79. My suggestion is to create a symbolic link in the /sbin (or /usr/bin)
  80. directory for the executable files (lora, lc, lmsg, luser and lfile) and a
  81. symbolic link in the /lib (or /usr/lib) directory for the .dll files
  82. (comm.dll, lora_api.dll, msgbase.dll and bbs.dll). For example:
  83.  
  84. ln -s lc /usr/bin/lc
  85. ln -s lora /usr/bin/lora
  86. ln -s lfile /usr/bin/lfile
  87. ln -s lmsg /usr/bin/lmsg
  88. ln -s luser /usr/bin/luser
  89. ln -s comm.dll /usr/lib/comm.dll
  90. ln -s bbs.dll /usr/lib/bbs.dll
  91. ln -s lora_api.dll /usr/lib/lora_api.dll
  92. ln -s msgbase.dll /usr/lib/msgbase.dll
  93.  
  94. Of course you must be logged as root or have enough privileges to do this
  95. kind of operations.
  96.  
  97.