This is an old revision of the document!


UNIX

Flavors

Question:
What flavors of Unix (and Unix-like operating systems) are supported?

Answer:
Currently there are four levels of support for Unix-like OSs.

  1. Operating systems and platforms which are actively used by the developers. These are always expected to work correctly. Currently, only Linux (x86 and x64) and FreeBSD on x86 are in this category.
  2. Platforms which have been ran by developers and an attempt to maintain support is exerted. These platforms are OS X, NetBSD, and OpenBSD on x86. In general a good bug report will result in a quick fix to these systems.
  3. Next there is non-x86 hardware with one of the above OSs. We try to ensure that Synchronet works on these platforms, but a bug report may be ignored for months before it is resolved due to lack of access to the platform. When reporting a bug, it would be good if the reporter is willing to grant remote shell access to their system and have a development toolchain installed.
  4. Lastly there are systems which will never be supported. These generally include systems with 16-bit address buses, lack of an implementation of the pthread API (such as Xenix systems), or ones which are generally painful to work on (such as GNU/Hurd).

Linux Distros

Question:
What distributions of Linux are supported?

Answer:
Should work with any GNU/Linux-x86 or x64 distribution (e.g. RedHat, Debian, Slackware, Ubuntu, Gentoo, etc.).

64-bit

Question:
64-bit?

Answer:
64-bit Linux (x64, x86_64, x86-64) distributions are supported.

Installer

Question:
The installer (e.g. Linux-install from sbbsunix.tgz) segfaults, crashes, or fails to get the file size of sbbs_src.tgz.

Answer:
This installer has known issues and is currently unsupported. Do not use it. This installer (known to us as “sbbsinst”) may be revamped and re-released in the near future.

In the mean-time, follow the steps given in this document to download, build, install, and run Synchronet for Unix.

non-x86

Question:
Are non-x86/x64 (Alpha, SPARC, 68k, PowerPC, etc) processors supported?

Answer:
Not currently. Synchronet assumes a little-endian processor. It *may* work on other little-endian processors (e.g. Alpha), but hasn't been tested.

Download

Question:
Where do I get Synchronet for Unix?

Answer:
See the step-by-step instructions here.

Binaries

Question:
Will there be binary releases?

Answer:
Maybe. Linux is a particularly difficult “platform” to deliver consistently compatible binaries for and unfortunately, it is the most popular Unix-like operating system we currently support.

Mix with Windows

Question:
Can I mix Synchronet for Unix and Synchronet for Win32 or DOS or OS/2 nodes on the same BBS?

Answer:
Yes. As long as all the nodes can access the same live data files (via LAN) you can have as many instances of Synchronet on as many different platforms as you wish.

DOS

Question:
Does Synchronet for Unix support external DOS programs/doors?

Answer:
Currently, only the FreeBSD build has doscmd support “built-in” (and this “support” requires emulators/doscmd to be installed):

For FreeBSD, the path that is entered in the Start-up Directory is mapped as C:\ the current node directory is mapped as D:\ and the Synchronet root directory is mapped as E:\. When a DOS door is executed, a .doscmdrc is created in the node directory. Copying this file and using it to run doscmd in X11 mode while running the setup programs is the simplest way to configure the doors.

Other platforms can use DOSEMU or whatever is available for running DOS programs.

For running external DOS programs on Linux using DOSEMU, see dosemu for details.

Doors

Question:
What external programs/doors does Synchronet for Unix support?

Answer:
External programs can either use standard I/O (e.g. bash, pico, Lord/X, PimpWars) or socket I/O (e.g. Synchronet XSDK doors).

X Windows

Question:
Does Synchronet for Unix require X-Windows?

Answer:
No, Synchronet for Unix is currently a console-based application. However, it does have an X-based character mode console now. The X11 headers (Part of the X11-devel package or something similar) are required for this to work.

GUI

Question:
Are there any plans to make an X-Windows front-end for Synchronet?

Answer:
See gtkmonitor.

Compiler

Question:
Can I use a different compiler (than GCC) to build Synchronet for *nix?

Answer:
Yes, currently Synchronet has successfully been built with GCC, ICC (The Intel C Compiler), and Clang/LLVM. To specify an alternate compiler, add CC=icc CXX=icpc to the gmake command lines where icc is the C compiler name and icpc is the C++ compiler name. If you get errors during the build (not warnings) please submit a bug report. If you are using a commercial compiler other than ICC, we will probably be unable to help you without a copy of the compiler.

SELinux

Question:
I'm using SELinux and nothing works.

Answer:
Yes, you'll need to use chcon on each of the Synchronet shared objects (.so files):

chcon -t texrel_shlib_t /sbbs/exec/*.so

Disk Space

Question:
How much disk space do I need?

Answer:
A fresh install (as of Mar-2020) from source code, requires about 500MBytes of space. Much of the space consumed is in the form of intermediate build files which may be removed after the build is complete if space is a concern.

Terminal Type

Question:
What does the error Unknown terminal: pc3 displayed by some native external programs (e.g. pico) indicate?

Answer:
The error indicates that the value of your TERM environment variable (in the example case, pc3) is not a valid terminal type/capabilities name for your system.

The default value of the ExternalTermANSI key in your sbbs.ini file is pc3, and Synchronet uses the value of this key to set the TERM environment variable for child processes (external programs). If your *nix installation has a terminal type/capability with this name, then this terminal type might work for you (and your users) but there is a better option: to use the Synchronet ansi-bbs terminal capabilities set (created by Deuce). The configuration/installation instructions for the Synchronet ansi-bbs terminal capabilities set are covered in termcap.

tempnam warning

Question:
Why do I get the GCC compilation warning:

the use of `tempnam' is dangerous, better use `mkstemp'

?

Answer:
This is not an error but a harmless warning. You can safely ignore it.

To elaborate, SBBSecho uses tempnam for a specific purpose, which mkstemp does not do. Additionally mkstemp is not available in all the C libraries for all the platforms for which Synchronet is built. The dangers of tempnam do not apply to SBBSecho's use of the function.

SDL errors

Question:
How do I work around SDL_main errors (e.g. No protocol specified followed by a segmentation fault) that prevent Synchronet applications (e.g. SCFG, EchoCFG, umonitor, etc.) built with SDL 1.2 from running?

$ /sbbs/exec/scfg
No protocol specified
No protocol specified
No protocol specified
Segmentation fault (core dumped)

Answer:
Double check that you can run X applications (e.g. xterm, xeyes) and if you cannot, you may need to grant X access to other user accounts with a command like:

xhost +SI:localuser:<username>

executed before switching to another user account (e.g. with su or sudo).

Work-arounds:

  1. Clean re-build all of Synchronet without SDL support (include WITHOUT_SDL=1 on the make command-lines or in your localdefs.mk file)
  2. Set the SDL_VIDEODRIVER environment variable to the value of dummy (e.g. EXPORT SDL_VIDEODRIVER=dummy) before executing the program

Recycle

Question:
Why do my servers/services fail to recycle when I set the node-recycle flag (e.g. saving changes in SCFG) or when touching recycle semfiles?

Answer:
Servers will not recycle while they are in-use.

$ node rerun

Synchronet Node Display/Control Utility v1.34

Node  1: User #1 reading messages via telnet (M) [R]
Node  2: Waiting for connection [R]
Node  3: Waiting for connection [R]
Node  4: Waiting for connection [R]
Node  5: Waiting for connection [R]
Node  6: Waiting for connection [R]
Node  7: Waiting for connection [R]
Node  8: Waiting for connection [R]

Question:
What do the following warning-level log messages indicate?

Disabling Terminal Server recycle support
Disabling FTP Server recycle support
Disabling Web Server recycle support
Disabling Mail Server recycle support
Disabling Services recycle support

Answer:
Recycle support can be disabled manually be setting the NO_RECYCLE Options flag in one or more server sections of your sbbs.ini file.
The log warning messages above (“Disabling ... recycle support”) indicate that the BBS automatically set the NO_RECYCLE option flag because it was:

  1. Configured to bind-to/listen-on TCP ports < 1024 (the so-called “reserved” ports)
  2. and the BBS was configured to change the current user-id in the UNIX section of sbbs.ini
  3. and the BBS could not dynamically set the bind capabilities using the Linux “Capabilities” syscall interface.

The solution is to remove the User and Group settings from the UNIX section of sbbs.ini and then follow the instructions here for running the BBS on Linux as a non-root user (if you haven't already).

Maximum Open Files

Question:
Why am I seeing ERROR 24 (Too many open files) failures in my error log?

Answer:
You need to increase your maximum number of open files.

To determine your open file limit, when logged in as the user Synchronet runs as, use the commands below. The hard limit is the systemwide limit, and the soft limit is one that a user can raise (up to the hard limit).

Soft limit: ulimit -Sn
Hard limit: ulimit -Hn

To alleviate the ERROR 24 problem on Linux, edit /etc/security/limits.conf to add the lines below.

To raise the soft limit up to the hard limit for your Synchronet user, it is recommended to add this line:

yourBBSuser     soft     nofile     unlimited

If you are still receiving ERROR 24, try raising both limits for all users by adding these lines instead:

*               hard     nofile     unlimited
*               soft     nofile     unlimited

See Also

faq/nix.1651940943.txt · Last modified: 2022/05/07 09:29 by Andre
Back to top
CC Attribution 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0