From Newsgroup: alt.bbs.synchronet
Hi.
I'm running Ubuntu Server 20.
I'm installing the Synchronet BBS following the Non-CVS instructions.
I following all commands from
$ wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
$ wget ftp://vert.synchro.net/Synchronet/sbbs_run.tgz
$ tar -xzf sbbs_src.tgz
$ tar -xzf sbbs_run.tgz
to.....
$ echo RELEASE=1 > src/build/localdefs.mk
But after write this command I receive this error message :
sudo echo RELEASE=1 > src/build/localdefs.mk
bash: src/build/localdefs.mk: No such file or directory
I think I can't skip this passage because all of these are importants......
I've continue installing other library but I get stuck when I've write the command /etc/init.d/sbbs start and the error is /etc/init.d/sbbs start Unsupported init type
What can I do....because seems that localdefs.mk is missing
Thank you so much for your answers.
From Newsgroup: alt.bbs.synchronet
Hi.
I'm running Ubuntu Server 20.
I'm installing the Synchronet BBS following the Non-CVS instructions.
I following all commands from
$ wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
$ wget ftp://vert.synchro.net/Synchronet/sbbs_run.tgz
$ tar -xzf sbbs_src.tgz
$ tar -xzf sbbs_run.tgz
to.....
$ echo RELEASE=1 > src/build/localdefs.mk
But after write this command I receive this error message :
sudo echo RELEASE=1 > src/build/localdefs.mk
bash: src/build/localdefs.mk: No such file or directory
I think I can't skip this passage because all of these are importants......
I've continue installing other library but I get stuck when I've write the command /etc/init.d/sbbs start and the error is /etc/init.d/sbbs start
Unsupported init type
Hi.
I'm running Ubuntu Server 20.
I'm installing the Synchronet BBS following the Non-CVS instructions.
I following all commands from
$ wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
$ wget ftp://vert.synchro.net/Synchronet/sbbs_run.tgz
$ tar -xzf sbbs_src.tgz
$ tar -xzf sbbs_run.tgz
to.....
$ echo RELEASE=1 > src/build/localdefs.mk
But after write this command I receive this error message :
sudo echo RELEASE=1 > src/build/localdefs.mk
bash: src/build/localdefs.mk: No such file or directory
I think I can't skip this passage because all of these are importants......
I've continue installing other library but I get stuck when I've write the command /etc/init.d/sbbs start and the error is /etc/init.d/sbbs start
Unsupported init type
What can I do....because seems that localdefs.mk is missing
Thank you so much for your answers.
Best Regards
Still stuck......
sudo apt-get update
sudo wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
tar -xzf sbbs_src.tgz
tar -xzf sbbs_run.tg
sudo apt-get update
sudo wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
tar -xzf sbbs_src.tgz
tar -xzf sbbs_run.tg
ummm... why do you get only sbbs_src.tgz but try to also open sbbs_run.tg which is missing the 'z' in the name?
From Newsgroup: alt.bbs.synchronet
On Wednesday, 20 May 2020 14:18:56 UTC, Bruno Pontecorvo wrote:
Hi.
I'm running Ubuntu Server 20.
I'm installing the Synchronet BBS following the Non-CVS instructions.
I following all commands from
$ wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
$ wget ftp://vert.synchro.net/Synchronet/sbbs_run.tgz
$ tar -xzf sbbs_src.tgz
$ tar -xzf sbbs_run.tgz
to.....
$ echo RELEASE=1 > src/build/localdefs.mk
But after write this command I receive this error message :
sudo echo RELEASE=1 > src/build/localdefs.mk
bash: src/build/localdefs.mk: No such file or directory
I think I can't skip this passage because all of these are importants......
I've continue installing other library but I get stuck when I've write the command /etc/init.d/sbbs start and the error is /etc/init.d/sbbs start Unsupported init type
What can I do....because seems that localdefs.mk is missing
Thank you so much for your answers.
Best Regards
Still stuck......
sudo apt-get update
sudo wget ftp://vert.synchro.net/Synchronet/sbbs_src.tgz
tar -xzf sbbs_src.tgz
tar -xzf sbbs_run.tg
echo RELEASE=1 > src/build/localdefs.mk
cd src/sbbs3
SBBSCTRL=/sbbs/ctrl /sbbs/exec/jsexec update.js
ERROR bash: /sbbs/exec/jsexec: No such file or directory
What are mistakes that I've done?!?!?
In my experience, .tgz files (or .tar.gz files) need 2 steps to extract them.
In my experience, .tgz files (or .tar.gz files) need 2 steps to extract them. Typically these days I'll see a .tar.gz file, which is archived by tar and then zipped by gzip. When you unzip it, you then have a .tar file you have to extract (or, "un-tar"). I know .tgz is a shortened version of .tgz. I'd assume in this case .tg is what you might get when you un-gzip a .tgz, though I've never seen the .tg filename extension before.
Actually, you can unzip them in 1 pass:
tar xzf file.tar.gz - the "z" in the command means unzip it first.
If it was compressed with bzip2, then you use tar xjf ...
On 05-23-20 11:30, Nightfox wrote to Rampage <=-
In my experience, .tgz files (or .tar.gz files) need 2 steps to extract them. Typically these days I'll see a .tar.gz file, which is archived
by tar and then zipped by gzip. When you unzip it, you then have a
.tar file you have to extract (or, "un-tar"). I know .tgz is a
shortened version of .tgz. I'd assume in this case .tg is what you
might get when you un-gzip a .tgz, though I've never seen the .tg
filename extension before.
On 05-24-20 10:23, alterego wrote to Nightfox <=-
Actually, you can unzip them in 1 pass:
tar xzf file.tar.gz - the "z" in the command means unzip it first.
If it was compressed with bzip2, then you use tar xjf ...
Correct, though I had an odd one last week, where a bzipped tar wouldn't extract with -xjf, but it did extract when done in two steps.
Can do it in one step...
tar -zxf <filename.tgz>
On 05-24-20 21:01, alterego wrote to Tony Langdon <=-
Ahh, ok, I've used bzip2 forever, and I dont think I've ever needed a 2 step process... I'll keep it in mind if it comes up...
On 05-24-20 11:33, The Lizard Master wrote to Tony Langdon <=-
Can do it in one step...
tar -zxf <filename.tgz>
LOL thanks! I didn't know what that meant, I just used that flag
because I saw it somewhere.
Sysop: | MCMLXXIX |
---|---|
Location: | Prospect, CT |
Users: | 333 |
Nodes: | 10 (0 / 10) |
Uptime: | 35:51:30 |
Calls: | 576 |
Messages: | 236643 |