secondly I have been on wiki.synchro.net/install:nix and just having
a bit of troule following it
For the RPI it would be best to follow these instructions http://wiki.synchro.net/howto:raspbian_install
drwxr-xr-x 23 root root 740 Oct 6 09:18 run
lrwxrwxrwx 1 root root 18 Oct 7 10:58 sbbs -> /home/pi/sbbs/
For me it seemed to work better installing sbbs to /sbbs as RELEASE=1 rather than SYSLINK=1
basically the commands are:be)
sudo apt-get update && sudo apt-get -y dist-upgrade
sudo apt-get -y install cvs zip libnspr4-dev libncurses5-dev
sudo mkdir /sbbs
sudo chown -R pi: /sbbs // assuming you are running as user pi (it will
cd /sbbs
wget http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/install/GNUmakefil
e make install RELEASE=1
export SBBSCTRL=/sbbs/ctrl
cd /sbbs/exec
./scfg // edit your Synchronet BBS system settings
After the build completes you may want to check /sbbs/exec and make
sure all of the executables were installed correctly
cd /sbbs/exec
ls -lh // look at the ownership and timestamps
you run it as sudo /sbbs/exec/sbbs
I would suggest for the first executions you run it in it own terminal
in the foreground so you can immediately see the console output, once
you are comfortable it is running correctly you can either run it sudo /sbbs/exec/sbbs & or edit the /sbbs/ctrl/sbbs.ini and set
DAEMONIZE=TRUE
hope this helps
you run it as sudo /sbbs/exec/sbbs
I would suggest for the first executions you run it in it own terminal
in the foreground so you can immediately see the console output, once
you are comfortable it is running correctly you can either run it sudo /sbbs/exec/sbbs & or edit the /sbbs/ctrl/sbbs.ini and set
DAEMONIZE=TRUE
hope this helps
drwxr-xr-x 23 root root 740 Oct 6 09:18 run
lrwxrwxrwx 1 root root 18 Oct 7 10:58 sbbs -> /home/pi/sbbs/
What directory are you in? Lacking the relevant context to know if
this is right. The output of 'pwd' alongside this directory listing
would have been helpful.
lrwxrwxrwx 20 pi pi 4096 18 Oct 7 10:58 sbbs
On 10-08-18 09:45, Sneaky wrote to Digital Man <=-
if I go to terminal emulation
ls
I have desktop downloads sbbs
cd /
ls
I have bin dev home lost+found root sbbs sys usr
That looks right. '/' is what's called the "root directory", so the symlink is in the right place. /root is known as either /root or
root's home directory.
Hi Mortifis
Okay I had a go install sbbs on rasberry pi rasbian with your steps you have given me
and after installing it went into scfg and edit a few thing then fired up the console
and seemed to be loaded okay but it's not binding to ports 843, 22, etc maybe same in
rasbian setting not sure.
I have it online now 3rdchoicecore.ddns.net:1022 that part seems to be working fine
but I don't how what I have done if I go to terminal and try to fire up scfg I now have a error that came up in the scfg window (main configuration file /sbbs/exec/main.cnf missing)
to which means I cannot ad message group, I have done same wrong or there is same thing I should have done
but any way thank you for these step worked great for me.
Hi Mortifis
you run it as sudo /sbbs/exec/sbbs
I would suggest for the first executions you run it in it own terminal in the foreground so you can immediately see the console output, once you are comfortable it is running correctly you can either run it sudo /sbbs/exec/sbbs & or edit the /sbbs/ctrl/sbbs.ini and set DAEMONIZE=TRUE
hope this helps
Okay I had a go install sbbs on rasberry pi rasbian with your steps you have given me
and after installing it went into scfg and edit a few thing then fired up the console
and seemed to be loaded okay but it's not binding to ports 843, 22, etc maybe same in
rasbian setting not sure.
I have it online now 3rdchoicecore.ddns.net:1022 that part seems to be working fine
but I don't how what I have done if I go to terminal and try to fire up scfg I now have a error that came up in the scfg window (main configuration file /sbbs/exec/main.cnf missing)
On 10-08-18 23:23, Sneaky wrote to Tony Langdon <=-
Digital man said I did it right, still learning unix and I got same
step
from mortifis and I have install the sbbs on my rasberry pi which it cool,
a few thing to work on though
lrwxrwxrwx 20 pi pi 4096 18 Oct 7 10:58 sbbs
it look a bit like this now
On 10-08-18 23:26, Sneaky wrote to Tony Langdon <=-
Cool thank you for this good to see I got it right.
Okay I had a go install sbbs on rasberry pi rasbian with your steps you have given me
and after installing it went into scfg and edit a few thing then fired up the console
and seemed to be loaded okay but it's not binding to ports 843, 22, etc maybe same in
rasbian setting not sure.
Port 22 is likely conflicting with the SSH server in Raspbian.
I have it online now 3rdchoicecore.ddns.net:1022 that part seems to be working fine
but I don't how what I have done if I go to terminal and try to fire up scfg I now have a error that came up in the scfg window (main configuration file /sbbs/exec/main.cnf missing)
That means you don't have the SBBSCTRL environment variable set. http://wiki.synchro.net/config:env
and seemed to be loaded okay but it's not binding to ports 843, 22, etc maybe same in
rasbian setting not sure.
Likely because ports 22 (ssh) and 843 (FlashPolicy) are already bound
... if you want to use ssh with the sbbs run sudo raspi-config and
disable ssh that should free it up for the board, personally I leave it for use on the raspberrypi so I can ssh into it from anywhere
I have it online now 3rdchoicecore.ddns.net:1022 that part seems to be
working fine
but I don't how what I have done if I go to terminal and try to fire up scfg I now have a error that came up in the scfg window (main configuration file /sbbs/exec/main.cnf missing)
everytime you open a terminal you need to export SBBSCTRL=/sbbs/ctrl
(or whereever your ctrl directory is located) ... I believe you can permanently set it in your .profile or just write a little script to
run scfg #!/bin/bash
export SBBSCTRL=/sbbs/ctrl
/sbbs/exec/scfg
to which means I cannot ad message group, I have done same wrong or there is same thing I should have done
once SBBSCTRL is export main.cnf will be located correctly
but any way thank you for these step worked great for me.
Oh course the steps worked great for you, they are instructions from Digitalman :)
Hi Mortifis
and seemed to be loaded okay but it's not binding to ports 843, 22, etc
maybe same in
rasbian setting not sure.
Likely because ports 22 (ssh) and 843 (FlashPolicy) are already bound
... if you want to use ssh with the sbbs run sudo raspi-config and
disable ssh that should free it up for the board, personally I leave it
for use on the raspberrypi so I can ssh into it from anywhere
okay that's cool, I just leave it as is.
doneOn 10-08-18 23:23, Sneaky wrote to Tony Langdon <=-
Digital man said I did it right, still learning unix and I got same step
from mortifis and I have install the sbbs on my rasberry pi which it cool,
a few thing to work on though
A later post did have the required information for us to determine you had
it right, but it wasn't in the one I replied to, because in that post, youleft
no clue as to what directory you were sitting in when you typed the command.
lrwxrwxrwx 20 pi pi 4096 18 Oct 7 10:58 sbbs
it look a bit like this now
Again, no information about what directory you're in. Only know it's right from other information (in other messages). :)
Cool thank you for this good to see I got it right.
Now enjoy. :)
from mortifis and I have install the sbbs on my rasberry pi which it cool,
a few thing to work on though
A later post did have the required information for us to determine you
had done it right, but it wasn't in the one I replied to, because in
that post, you left no clue as to what directory you were sitting in
when you typed the command.
lrwxrwxrwx 20 pi pi 4096 18 Oct 7 10:58 sbbs
it look a bit like this now
Again, no information about what directory you're in. Only know it's right from other information (in other messages). :)
disable ssh that should free it up for the board, personally I leave it
for use on the raspberrypi so I can ssh into it from anywhere
okay that's cool, I just leave it as is.
Actually, there are adventages to moving your ssh port to something
else. You'll find a lot of people trying to get into your system if you don't firewall it off. Change your /etc/ssh/sshd_config to change the
port from 22 to something else that only you know, like 27 for example. Then you can run your bbs on port 22 for ssh, nobody will have to worry about knowing ssh is on a different port and if anyone hacks the
password for ssh, they furthest they're going to get it to you bbs, not your OS.
Don't forget you may have to configure iptables or firewalld and open
the port on your router if you still want to connect from the internet
on your new ssh port.
On 10-08-18 20:43, Mortifis wrote to Tony Langdon <=-
I always read the thread before replying :-P
On 10-09-18 19:54, Sneaky wrote to Tony Langdon <=-
@TZ: 02d0
Hi Tony Langdon
-
Cool thank you for this good to see I got it right.
Now enjoy. :)
Yes I will now enjoy it
Thank You
On 10-09-18 19:57, Sneaky wrote to Tony Langdon <=-
Okay I am sorry I didn't give you more info on it and not saying we I
was sitting in in my last message, probably didn't now myself at the
time and thought about that from you last message, i am sitting in /
to were I have sbbs installed from ternamal I think is pi (desktop Document) then
cd / Run Etc Sbbs) root dir that the way I see it but you might see it another way so again sorry
Okay I had a go install sbbs on rasberry pi rasbian with your steps
you have given me and after installing it went into scfg and edit a few
thing then fired up the console and seemed to be loaded okay but it's
not binding to ports 843, 22, etc maybe same in rasbian setting not
sure.
Port 22 is likely conflicting with the SSH server in Raspbian.
FWIW: we always move the OS' ssh port to another... for one thing, it knocks out a lot of scanners trying to get OS level access... we have, however, been leaving sbbs' ssh on 22... whether that's a good idea or not remains to be seen... speaking only of my new setup, i think i still have
Hi Mortifis
I noticed you dropped in to 1st and 3rd Choice core thank you however
in 3rd choice core I think you posted a message to me, but I didn't get
working fine
but I don't how what I have done if I go to terminal and try to fire up scfg I now have a error that came up in the scfg window (main configuration file /sbbs/exec/main.cnf missing)
everytime you open a terminal you need to export SBBSCTRL=/sbbs/ctrl (or whereever your ctrl directory is located) ... I believe you can permanently set it in your .profile or just write a little script to run scfg #!/bin/bash
export SBBSCTRL=/sbbs/ctrl
/sbbs/exec/scfg
okay got you, yep that did the trick, thanks
to which means I cannot ad message group, I have done same wrong or there is same thing I should have done
once SBBSCTRL is export main.cnf will be located correctly
Yep it did.
but any way thank you for these step worked great for me.
Oh course the steps worked great for you, they are instructions from Digitalman :)
Okay cool, thank you and Digitalman and wiki,for helping me.
may I ask you what did sbbs use for inporting and exporting networks message windows it binkit
looked on wiki pages no how to in window bit unsure in unix
also how do you edit the mail server per settings etc
Thank you
FWIW: we always move the OS' ssh port to another... for one thing, it
knocks out a lot of scanners trying to get OS level access... we
have, however, been leaving sbbs' ssh on 22... whether that's a good
idea or not remains to be seen... speaking only of my new setup, i
think i still have
I do the same. The only real problem I have encountered by leaving
SBBS listening on 22 is that all nodes occasionally get tied up with
"new users" (bots landing in new user setup after trying accounts that don't exist). On top of inactivity timeouts I have a small script that runs in this case to boot them off faster, seems to do the job.
may I ask you what did sbbs use for inporting and exporting networks message windows it binkit
looked on wiki pages no how to in window bit unsure in unix
for qwk (ie: dove-net) sbbs uses gnet-ftp and it is triggered in timed
events or by running touch /sbbs/data/qnet/vert.now (to make a qwk calloutto vert)
also triggered by timed events and semephores.
documentation on synchronet wiki; http://wiki.synchro.net/util:sbbsecho
also how do you edit the mail server per settings etc
Mail Server Setting are easily configured in sbbs.ini under [Mail]
which is well commented :)
have looked at it much yet but I think
gtkmonitor has an interface for mail setting as well
Thank you
You're welcome ... though I may caution, my 'advice' is not always completely accurate and is often not the easiest way to accomplish a
task lol
Hi Mortifis
Okay per the gtkmonitor how do I get that to work and yes I looked at wiki about it see what it looks like, and to execute it is /exec/gtkmonitor - and gtkmonitor settigs in/ctrl/gtmonitor
but either of these files are in these are in the direcorty I either have to edit or services.ini or sbbs.ini or install the files from same were not sure which.
Ian S 1st Choice Core Sbbs Nz Windows 10
In my case, at least, I had to build gtkmonitor gtkuseredit gtkchat and gtkuserlist individually in their respective source directories (ie: src/sbbs3/gtkmonitor make RELEASE=1 ) and copy the binaries to the /sbbs/exec directory. I am sure their are easier ways but that is how I did it.
Hi Mortifis
In my case, at least, I had to build gtkmonitor gtkuseredit gtkchat and gtkuserlist individually in their respective source directories (ie: src/sbbs3/gtkmonitor make RELEASE=1 ) and copy the binaries to the /sbbs/exec directory. I am sure their are easier ways but that is how I did it.
Okay I found those dirs, and chance could you pass you step on to me
or is it samething like this
cd /sbbs/src/sbbs3/gtkmonitor
make RELEASE=1
then cd to each dir etc gtkuseredit gtkchat and gtkuserlist
in each and do the same ie make RELEASE=1
if so, will I now what files to copy to /sbbs/exec and as well as /ctrl /text
and in 1 message you had to down load a file but at this point cannot remember the
name of it as you could compile gtkmonitor.c I think
Thank you for your help
Ian S 1st Choice Core sbbs Nz
ftp://outwestbbs.com/raspberry.pi.re/RASPBERR/00index.html
I have text instructions on the desktop everything is preinstalled.
Thank you for this image, its going to take a while to download
but I have plenty of time so that cool, and I will read the text instruction. and after I have either of them up and running I get back to you about it.
were you unable to get Synchronet BBS compiled and running on you RPI?
I thought the only remaining issue was setting up binkit and FTN?
had a few minutes and was easily able to get gtkmonitor, gtkuseredit, gtkuserlist,
compiled and running with the proper enviroment
setings and a desktop icon for quick launch,
if you'd like I can send
you the 'get your hands dirty in Linux' info.
Hi Mortifisgtkmonitor, gtkuseredit, gtkuserlist,
yes I tried to compile these exciept gtkchat but still having problems with enviroment
a little box came up and say (sbbctrl not set) even it I run
export SBBSCTRL=/sbbs/ctrl first then sudo exec/gtkmonitor
compiled and running with the proper enviroment
setings and a desktop icon for quick launch,
how did you do that, maybe that will fix my enviroment
if you'd like I can send
you the 'get your hands dirty in Linux' info.
Ian S 1st Choice Core Sbbs Nz
gtkmonitor, gtkuseredit, gtkuserlist,
compiled and running with the proper enviroment
setings and a desktop icon for quick launch,
how did you do that, maybe that will fix my enviroment
for a desktop item
cd ~/Desktop
create a file called gtk-monitor.desktop (I use pico so pico gtk-monitor.desktop)
add these lines
[Desktop Entry]
Name="SBBS Monitor"
Exec="/sbbs/exec/gtkmonitor"
Icon="/path/to/some/128pxX128px.png"
Comment="If I'm here i show in properties tab or something" X-GNOME-FullName="Synchronet BBS Monitor"
Terminal=false
X-MultipleArgs=false
Type=Application
StartupNotify=true
save and exit...the desktop item should appear now but you aren't ready
to fully launch it yet...
now
cd ~
pico .profile
add these two lines
export SBBSCTRL=/sbbs/ctrl
export SBBSEXEC=/sbbs/exec
save and exit
just for good measure add the same to lines at the end of .bashrc
make sure .bash_profile looks like this
if [ -f ~/.profile ]; then
. ~/.profile
fi
now make sure the desktop enviroment includes those console settings
pico .xsessionrc
if [ -f ~/.profile ]; then
. ~/.profile
fi
if all goes as plan you should now be able to launch gtk-monitor from
the desktop and menu items should have the ctrl setting set. As for
binkit FTN, someone else would be better equipped to help :)
now create
Hi Denn
I have an Image that you can burn to an SD card for the PI that has raspian installed as well as Synchronet 3.17 and Mystic.
you can Dload it at -> ftp://outwestbbs.com/raspberry.pi.re/RASPBERR/00index.html
I have text instructions on the desktop everything is preinstalled.
Thank you for this image, its going to take a while to download
but I have plenty of time so that cool, and I will read the text instruction. and after I have either of them up and running I get back to you about it.
were you unable to get Synchronet BBS compiled and running on you RPI?
I thought the only remaining issue was setting up binkit and FTN? I've
had a few minutes and was easily able to get gtkmonitor, gtkuseredit, gtkuserlist, gtkchat compiled and running with the proper enviroment setings and a desktop icon for quick launch,
if you'd like I can send
you the 'get your hands dirty in Linux' info.
were you unable to get Synchronet BBS compiled and running on you
RPI?
will with your help, yes I did, get it compiled but have same issues, so thought
I would download this image to see if I might have not done it properly
I did follow the instructions may have done same wrong or not and was good for denn, to offer this image to compare, it will be me if its not right couple of issues when downloading a qwk pkt I cannot hang up or quick H
I did follow the instructions may have done same wrong or not and was good for denn, to offer this image to compare, it will be me if its not right couple of issues when downloading a qwk pkt I cannot hang up or quick H
On this Image you can just burn it to your SD card Synchronet is already compiled and ready to run.
all you need to do is configure your settings.
On this Image you can just burn it to your SD card Synchronet is already compiled and ready to run.
What does it mean to "burn" something to an SD card? You can burn data to an optical disc, but I haven't heard of burning data to an SD card..
"Burn" has also been used in relation to EPROMs, which may be, superficially, a closer comparison in this case.
I think I've heard "burn" regarding EPROMs, but I thought the term "flash" wis more common in that case (as in flashing a BIOS on your motherboard,
My point was mostly that people use "burn" in this context for an assortment of reasons. It's not correct, but it's common enough that I wouldn't bother getting hung up on it.
On 10-17-18 10:01, Nightfox wrote to Denn <=-
What does it mean to "burn" something to an SD card? You can burn data
to an optical disc, but I haven't heard of burning data to an SD card..
On 10-17-18 12:35, Nightfox wrote to echicken <=-
@TZ: 41a4
Re: Re: Rasberry Pi unix help
By: echicken to Nightfox on Wed Oct 17 2018 02:40 pm
"Burn" has also been used in relation to EPROMs, which may be, superficially, a closer comparison in this case.
I think I've heard "burn" regarding EPROMs, but I thought the term
"flash" wis more common in that case (as in flashing a BIOS on your motherboard, etc.).
Yes I have burn the image on my SD thank you and confiqured me settingI did follow the instructions may have done same wrong or not and
to have sbbs running now. it solved my post/reply issue but not the qwknet issue hanging up after download finished goes to 0 then just add number and carries on, have to abort then hang up via the main menu , 1 out of 2 not bad I suppose.
On this Image you can just burn it to your SD card Synchronet is
already compiled and ready to run.
What does it mean to "burn" something to an SD card? You can burn data to an optical disc, but I haven't heard of burning data to an SD card..
and carries on, have to abort then hang up via the main menu , 1 out of 2 not bad I suppose.
I will load it on my PI 2 this weekend and see if I can figure it out.
I will load it on my PI 2 this weekend and see if I can figure it
out.
Okay cool, as far as posting in message group per post/reply it did
work in dove-net echo but I did add fsxnet network but post didn't work (user unknown) checked scfg setting between both all looked might have missed
Okay cool, as far as posting in message group per post/reply it did
work in dove-net echo but I did add fsxnet network but post didn't work (user unknown) checked scfg setting between both all looked might have missed
Oh, If it works with Dove-net thats all I have set up have not tried
fxnet or or any other network, to me user unknown might indicate the hosting network needs login info from your BBS.
Sysop: | sneaky |
---|---|
Location: | Ashburton,NZ |
Users: | 31 |
Nodes: | 8 (0 / 8) |
Uptime: | 254:53:30 |
Calls: | 2,091 |
Calls today: | 2 |
Files: | 11,141 |
Messages: | 949,101 |