World: r3wp
[Linux] group for linux REBOL users
older newer | first last |
François 10-Jul-2005 [136] | I found a critical bug: when rebol is configured to work as cgi engine with SELinux (Security Enhanced Linux), it generates a Segmentation Fault. I uses Fedora Core 3 with SELinux to secure the httpd daemon. For now, if you want to use rebol as a cgi engine, you must disable SELinux. See RAMBO Ticket #-376 |
Robert 15-Jul-2005 [137x3] | I'm currently trying to filter IP addresses that try to log into my SSH server. For this I use a tool "swatch" and "iptables" to filter them. |
But it looks like this isn't working really good. | |
Can anyone give me a tip how to filter/drop IP addresses for a specific time-range if there are illegal login attempts? IMO this would be a really cool admin tool for Linux. | |
Christian 18-Jul-2005 [140x2] | Does anyone have an idea when REBOL/View 1.3 for Linux will arrive? |
RT used to have interesting definitions of "soon" in the past ;-) [Like we all do ...] | |
Henrik 28-Jul-2005 [142] | has anyone figured out how to run a script as a daemon that can be started at boot? |
Anton 28-Jul-2005 [143] | There seems to be a related discussion in this group around the 8-Jun-2005. |
Henrik 28-Jul-2005 [144] | I see it, but it's related to background jobs, not at startup. I found some general documentation on init.d, but it's very convoluted and unclear.... |
Gabriele 28-Jul-2005 [145] | it depends on your distro |
BrianW 28-Jul-2005 [146] | and distro startup documentation is frequently convoluted and unclear. Good luck! ;-) |
Volker 28-Jul-2005 [147x2] | Dont know that eally well myself. what i firued out: usually (debian, suse) startup-scripts are in /etc/init.d. on debian there is a /etc/init.d/skeleton as base for own script. then there are the runlevels in /etc/rc?d/. links there go to /etc/init.d/ an tell the system what to start/stop. the numbers in the filenames are the priority, lowest run first. Usually there is a gui-tool like yast or ksysv which scans /etc/init.d/ for scripts and makes the appropriate links. tricky things are to write the startup-script, to figure out which runlevel to use and how the os figures out what to stop. although if you dont need that runlevel smartness, because you call it on boot and let it be killed by shutdown, you can just use a normal bash-script. |
(runlevels tell which servers etc to run. so there is one with everything off for maintenance, one for console-use, console with network, console+network+gui-login, these with and without network, maybe some others) | |
Ammon 28-Jul-2005 [149] | Is there any reason that this group is private and not published to the web? I know that there is a lot of good information in this group and everyone should have access to it. |
Henrik 28-Jul-2005 [150] | I think there would be plenty of material for creating help docs about rebol driven daemons and services for either windows or linux servers, right? I'm going to run into this problem very soon and it would be nice to allow conform installation of rebol daemons this way. Has anyone worked on providing debian packages of rebol? |
shadwolf 10-Aug-2005 [151x7] | well in fact the problem is that rebol have been désigned more to be a cgi engine than a real service / deamon capable system. It depends too if your REBOL application have been wrapped (REBOX,GREBOX, SDK/ENCAP,PAYLOAD) . With a wrapped version it's easier to run ... I made for windows a Dyndns client in REBOL witch runs automatically on startup using register base HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run. For linux /etc/rc*d files works like bash script. |
Actually I'm playing with festival on linux ;) REBOL festival Client with visual interface to feed the festival software running in server mode only take 10 lines I love REBOL :))). So now on linux I can make my Computer speech me the Carl's blog content while I'm in the mean time reading the French forum new posts ;) | |
Festival is a software made in Scheme ( a Lisp clone) that allow voice synthésis (debian pakage are available on bedian.org website and can be acceded using Synapse GUI debian DLand Install software). | |
To run my solution I simply make a bash that tests if festival is yet running or not and then runs it (I'm using 1.2.1 REbol version for linux ...) and then runs my GUI software ;) | |
I'm working on a text to speech processor that could use MBROLA as engine ASCII TEXT would be converted to PHO mbrola phonetic describtion file. Of course using rebol/view 1.3 :) | |
I think parse would do a trully great job for this kind of rebol software | |
ARG REBOL/VIEW 1.3.1 doesn't freely support run function ... | |
Pekr 10-Aug-2005 [158x2] | Was it 'run? What about 'call? |
'run is supposed to start associated app to particular file suffix, isn't it? Dunno how associations are supposed to work in Linux? | |
shadwolf 10-Aug-2005 [160x2] | perk you are right it's call lol |
As I don't use it often I always forget the name of this function | |
Henrik 10-Aug-2005 [162x2] | auch! I hope that's not on purpose |
OSX supports call, as far as I can see | |
BrianW 10-Aug-2005 [164] | I use 'call pretty frequently to shell scripting on my Linux partition |
shadwolf 10-Aug-2005 [165x4] | yes ;) But I allways fool my self betwin call and run functions |
call is mutch fophisticate than run :) | |
sophiticated | |
Any one wants to help me coding the first rebol TTS sofware using MBROLA voice synthiser ? | |
François 10-Aug-2005 [169] | Hi, all: anyone has succeeded to run the beta version of View 1.3 on Fedora Core 4? I have the following error: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory |
Henrik 10-Aug-2005 [170] | there is a stdc++ notice on the builds page. did you read it? |
Volker 10-Aug-2005 [171] | http://kb.bitdefender.com/KB220-en--Installation-errors-on-Fedora-Core-4.html |
François 10-Aug-2005 [172x2] | Nope, i have been directkly to the build... |
solved by doing: ln -s /usr/lib/libstdc++.so.6.0.5 /usr/lib/libstdc++.so.5 | |
shadwolf 10-Aug-2005 [174x3] | why the build use libstdc++ v5 and not libstdc++ v 6 ? |
for TTS project in rebol see RebTTS | |
group | |
François 10-Aug-2005 [177x2] | This is weird... rebol (1.2 and 1.3) can not connect to the internet with Fedora Core 4, but i have no problem with Debian 3.1... I think i will get rid off Fedora Core and keep Debian!! |
Now it works... | |
Volker 10-Aug-2005 [179x2] | why v5 - usually its easier to add an old library which the distro once had than to install a new one which the distro not has yet. |
thats what my link was about. bitdefender had the same problem, and: SOLUTION: Fedora Core 4 has gcc 4.0 that provides libstdc++.so.6 while BitDefender requires another version of this library, libstdc++.so.5. In order to satisfy this dependency, the compat-libstdc++-33-3.2.3-47.fc4.i386 package must be installed. (you can find it on the distribution CDs) | |
Jonathan 10-Aug-2005 [181] | Hi everyone, I have a problem running the new view beta on suse 9.3. I have libstdc++ 5, I can run rebol scripts (that need 1.3), but I can't start the desktop (I double-click the rebol icon, it just flashes -starts and stops immediatky-). I'm new to Linux so this might be a known issue. I tried moving the VM to various places but same result at every try. Maybe someone can help ? |
[unknown: 10] 10-Aug-2005 [182] | No problems with slackware 10.x |
shadwolf 10-Aug-2005 [183] | Francois a very good linux distribution is ubuntu ;) |
François 10-Aug-2005 [184x2] | Jonathan, try to launch rebol from the console rather than by double-clicking on the icon. Also, make sure you launch rebol from a place you have write access. For example, i installed rebol within /opt/rebol-cmd/bin but I do not have write access on this folder. So, from my home folder, i launch rebol like this: /opt/rebol-cmd/bin/rebview |
Shad, Ubuntu is debian based... So why have a copy when you can have the real thing ;-) | |
older newer | first last |