-
Notifications
You must be signed in to change notification settings - Fork 15
/
INSTALL
162 lines (120 loc) · 4.39 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
Installing Formosa BBS Community Edition (FBCE)
__________________________________________________________________
Table of Contents
Preface
1. General Installation Considerations
2. Source Installation on Unix systems
Ubuntu/Linux Pre-install packages
Linux installation notes
Non-Linux OS installation notes
3. Binary Installation on Unix systems
Gentoo/Linux installation notes
Debian GNU/Linux installation notes
Ubuntu/Linux installation notes
CentOS installation notes
FreeBSD installation notes
Mac OS X installation notes
Solaris installation notes
4. Problems?
Read the FAQ
Bug reports
5. Runtime Configuration
The configuration file
How to change configuration settings
6. Installation FAQ
__________________________________________________________________
Preface
These installation instructions were generated from the HTML version
of the FBCE Manual so formatting and linking have been altered.
See the online and updated version at: <URL><TBD>
__________________________________________________________________
Chapter 1. General Installation Considerations
Source getting:
http://github.com/pigfoot/formosa/tree/master
Binary getting:
__________________________________________________________________
Chapter 2. Source Installation on Unix systems
The initial FBCE setup and configuration process is controlled by the
use of the command line options of the configure script. You could get
a list of all available options along with short explanations running
./configure --help. Our manual documents the different options
separately. You will find the core options in the appendix, while the
different extension specific options are descibed on the reference
pages.
When FBCE is configured, you are ready to build the module and/or
executables. The command make should take care of this. If it fails
and you can't figure out why, see the Problems section.
Prerequisite software for compiling:
* GNU Compiler Collection: version 3.4.6+
(http://gcc.gnu.org/)
* Perl: version 5.8+
(http://www.perl.org/)
* GNU Make: version 3.8+
(http://www.gnu.org/software/make/)
* GNU M4: version 1.4+
(http://www.gnu.org/software/m4/)
* GNU Autoconf: version 2.59+
(http://www.gnu.org/software/autoconf/)
* GNU Automake: version 1.10+
(http://www.gnu.org/software/automake/)
Supported platforms:
* Gentoo/Linux 2.6+
* Debian GNU/Linux 2.6+
* Ubuntu/Linux 2.6+
* CentOS 5+
* FreeBSD 7+
* Mac OS X
* Solaris 10+
Ubuntu/Linux Pre-install packages
1. apt-get install make
2. apt-get install m4
3. apt-get install automake
4. apt-get install autoconf
5. apt-get install perl
6. apt-get install git-core
7. apt-get install gcc
8. apt-get install libc6-dev
9. apt-get install ncurses-dev
Linux installation notes
1. git clone git://github.com/pigfoot/formosa.git
2. cd formosa
3. ./autogen.sh
4. ./configure --prefix=$homebbs --enable-feature=
5. make
6. make install
Non-Linux OS installation notes
1. git clone git://github.com/pigfoot/formosa.git
2. cd formosa
3. ./autogen.sh
4. ./configure --prefix=$homebbs --enable-feature=
5. gmake
6. gmake install
__________________________________________________________________
Chapter 3. Binary Installation on Unix systems
Gentoo/Linux installation notes
1. gunzip fbce-gentoo-x86-x_x_x.tar.gz
2. tar -xvf fbce-gentoo-x86-x_x_x.tar
__________________________________________________________________
Chapter 4. Problems?
Read the FAQ
Some problems are more common than others. The most common ones are
listed in the FBCE FAQ, part of this manual.
__________________________________________________________________
Bug reports
* Use bug-tracking system
If you think you have found a bug in FBCE, please report it. The FBCE
developers probably don't know about it, and unless you report it,
chances are it won't be fixed. You can report bugs using the
bug-tracking system at <URL><TBD>. The bug system is also suitable
to submit feature requests.
* Use mailing-list
Please mailto:formosabbs@googlegroups.com?subject=[FBCE BUG]
* Use BBS
Please telnet://bbs.CDPA.cc FormosaBBS board.
__________________________________________________________________
Chapter 5. Runtime Configuration
The configuration file
__________________________________________________________________
How to change configuration settings
__________________________________________________________________
Chapter 6. Installation FAQ