/[LeafOK_CVS]/lbbs/README.md
ViewVC logotype

Annotation of /lbbs/README.md

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.10 - (hide annotations)
Mon Jun 16 05:35:14 2025 UTC (9 months ago) by sysadm
Branch: MAIN
Changes since 1.9: +1 -0 lines
Content type: text/markdown
Update README

1 sysadm 1.7 # LBBS - Classical terminal server of LeafOK BBS
2 sysadm 1.1
3     Copyright (C) 2004-2025 by Leaflet
4    
5     Email : leaflet@leafok.com
6    
7 sysadm 1.10 Demo site : bbs.fenglin.info (Telnet 2323 / SSH2 2322)
8 sysadm 1.1
9     Introduction
10     =================
11     This software (named as LBBS) aims to providing a telnet-based interface for a pure web-based BBS (named as LeafOK BBS).
12    
13     LeafOK BBS is a powerful BBS system, not only providing almost every function that a standard BBS should have, but also giving many features other BBS hasn't complemented yet.
14    
15     As an open source project, LeafOK BBS use MySQL as its major data depository, and PHP as its developing language. With MySQL and PHP, LeafOK BBS becomes a platform-independent system. It can works stably on many popular Web Servers such as Apache and IIS.
16    
17     However, as a pure web-based BBS, its shortage is inevitable. For LeafOK BBS uses Browser/Server as its architecture, it will cause more data traffic between Users and Server than telnet-based BBS, and its response is a little slower than telnet-based BBS.
18    
19     In order to conquer these shortage, a new project was launched. LBBS is a telnet-based BBS which is full compatible with LeafOK BBS. It also uses MySQL as its data repository, and keep coherence with the data structure of LeafOK BBS. LBBS is designed to be a system running on Linux, with GNU C as its developing language.
20    
21     Thank you for using this software. If you meet any bugs or have any suggestion, please tell me.
22    
23    
24     System Requirement
25     ==================
26     Operation System: Linux
27    
28     Software:
29     1) GNU C Compiler
30     2) PHP ( Version >= 8.2 )
31     3) MySQL database ( Version >= 8.4 )
32    
33    
34     Quick Installation
35     ==================
36     To install LBBS quickly, please do the following steps:
37    
38 sysadm 1.9 0) Prerequisite
39    
40     Follow README.md under https://github.com/leafok88/leafok_bbs to initialize the database structure shared by both web version and telnet version. It is highly recommended to finish the configuration steps of web version first and make sure those features could work properly.
41    
42 sysadm 1.1 1) Extract the source files from a tarball or export from GitHub
43    
44     Run the following command to set up the autoconf/automake environment,
45    
46     sh ./autogen.sh
47    
48     and fix any error if exists.
49    
50     2) Compile source files
51    
52     ./configure --prefix=/usr/local/lbbs
53    
54     make
55    
56 sysadm 1.2 3) Create user and group
57 sysadm 1.1
58 sysadm 1.2 sudo useradd bbs
59 sysadm 1.1
60 sysadm 1.2 4) Install binary files and data files
61 sysadm 1.1
62 sysadm 1.2 sudo make install
63 sysadm 1.1
64 sysadm 1.2 5) Modify following configuration files
65 sysadm 1.1
66     Default configuration files is saved as *.default, you should rename them first.
67    
68     /usr/local/lbbs/conf/bbsd.conf
69    
70     /usr/local/lbbs/utils/conf/db_conn.inc.php
71    
72 sysadm 1.8 6) Generate menu configuration file with section data by running the script
73 sysadm 1.6
74     sudo -u bbs php /usr/local/lbbs/utils/bin/gen_section_menu.php
75    
76 sysadm 1.8 7) Create or copy SSH2 RSA certificate into /usr/local/lbbs/conf
77    
78     ssh-keygen -t rsa -C "Your Server Name" -f ssh_host_rsa_key
79    
80     8) Startup
81 sysadm 1.1
82 sysadm 1.3 sudo /usr/local/lbbs/bin/bbsd
83 sysadm 1.1
84 sysadm 1.8 9) Set up systemd
85 sysadm 1.4
86 sysadm 1.5 Create your own /usr/lib/systemd/system/lbbs.service from the sample at conf/lbbs.service.default, and make any change if necessary. Please note that the startup argument "-f" with bbsd should be used in systemd notify mode.
87 sysadm 1.4
88     Run the following bash command to startup the service:
89    
90 sysadm 1.6 sudo systemctl daemon-reload
91 sysadm 1.4
92 sysadm 1.6 sudo systemctl start lbbs
93 sysadm 1.4

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1