AltME groups: search
Help · search scripts · search articles · search mailing listresults summary
world | hits |
r4wp | 5907 |
r3wp | 58701 |
total: | 64608 |
results window for this page: [start: 6401 end: 6500]
world-name: r3wp
Group: Linux ... [web-public] group for linux REBOL users | ||
Henrik: 31-Dec-2004 | It is missing important apps like CVS and SSH for instance, and I'm not a typical Linux user who can spend hours to find and download the GNU sources for an app, configure the build, and compile it. <--- don't know how Mandrake handles packages other than it's RPM, but Debian handles these things in seconds with a single CLI command, and it surely isn't necessary to hunt down sources manually. :-) I always regarded Debian as a bit harder to start with but many times easier to maintain once it runs. | |
Alan: 31-Dec-2004 | well Mandrake was the first distro that i ever got a install with out having a book in hand so am more than happy with it-so far :^) | |
BrianW: 1-Jan-2005 | I'm more of a Fedora person when it comes to easy distros | |
Gregg: 2-Jan-2005 | I set it up here under VMWare for basic use (not a *nix guy :-) and it worked; SUSE was also OK; but RedHat solved a couple issues the others had under VMWare, which is really just a versioning/support issue in that environment. I had to find an old RedHat at that. | |
yeksoon: 20-Jan-2005 | just found out that mod_gzip, mod_gunzip, mod_bunzip2 (any of this) is not a default module with RHEL . I would have thought that this will be a useful module for any server to have. | |
Kaj: 19-Mar-2005 | Just installed Ubuntu Linux for the first time. REBOL/View's font rendering is correct on it. I hope that will still be the case with the new version that will be released in a month | |
Henrik: 19-Mar-2005 | I'm sitting on a debian and Ubuntu box here. Fonts are a tad larger in Ubuntu than in debian. debian runs XFree86 and Ubuntu, I believe uses X.org. | |
Henrik: 19-Mar-2005 | I do get an error with Core where it stops responding after loading in a terminal. No prompt or error appears. This doesn't happen with View. | |
Kaj: 19-Mar-2005 | I installed Warty. Is the font size in /View a problem on Hoary? | |
Henrik: 19-Mar-2005 | ok, it's a bit funny, because some fonts are bigger, such as in the chat area, but headlines are smaller. | |
Henrik: 19-Mar-2005 | I'm a bit surprised at how far ahead Hoary is compared to debian unstable | |
Henrik: 19-Mar-2005 | my debian runs gnome 2.8.2 from experimental, but ubuntu runs 2.10 and it's a lot more stable. | |
Kaj: 19-Mar-2005 | I had a number of problems with Warty, but it's just the first release, and it still compares favorably with the alternatives | |
Henrik: 19-Mar-2005 | hoary is pretty good. I had a single problem detecting two network cards in my laptop when I first tried it, but I got it running. | |
Kaj: 20-Mar-2005 | No, Warty doesn't have it yet. Yes, there are nice improvements in Hoary, but I couldn't use the preview yet. I did add a number of repositories and applications, so I got halfway towards Hoary after all | |
Volker: 20-Mar-2005 | Maybe its related, on suse 9.0 i change in xf86config FontPath "/usr/X11R6/lib/X11/fonts/75dpi:unscaled" to FontPath "/usr/X11R6/lib/X11/fonts/75dpi:scaled" Else /view finds only a few matching font-sizes. | |
Kaj: 31-Mar-2005 | Yes, that's a good one. An annoying thing, though, is that it doesn't seem capable of changing the refresh rate from a flicker | |
Robert: 4-Jun-2005 | Ok, here is a thing I want to use /Core for, which IMO is useful to a lot of people: Locking out IPs after multiple failed sshd login attempts | |
Robert: 4-Jun-2005 | I'm not a Linux guru. There are some solutions using a tool named SWATCH but it's not that easy. | |
Robert: 4-Jun-2005 | So what's needed: 1. We need a way to continually parse the SSHD log-file, something like tial 2. We extract the IP address and add it to some firewall, to block it for some time 3. We need to remove the IP from the firewall Anyone interested in such a project? | |
Robert: 4-Jun-2005 | Yes, I read this. swatch is working but getting everything tied together is as always with Unix akward. I just want a simple Rebol solution :-)) | |
Robert: 4-Jun-2005 | iptables: Is this a tool that I need to start or is it a system tool to alter internal things uses by the kernel anway? | |
Volker: 4-Jun-2005 | has a partner /etc/hosts.allow . IIRC .deny has priority. | |
Robert: 4-Jun-2005 | What happens if the same IP tries again? The request is blocked immediatly? Why might using a firewall or iptables be better? | |
Robert: 4-Jun-2005 | But, if filterting would work correct, it should be DROPed anyway. So, if I add a DROP rule for an IP address, I shouldn't get any more packets. | |
Ammon: 4-Jun-2005 | Robert, with IPTables the rules are parsed in order so if a rule will allow the packet before it gets to your deny rule then the packet is allowed. (IIUC) | |
Volker: 5-Jun-2005 | there is a tailor.r in my folder on developer. it polls the tail of a file and calls a callback which each new line. uses /skip on file. may be a base for a daemon | |
Oldes: 8-Jun-2005 | Does anybody know hot to run rebol script as a background job? | |
Oldes: 8-Jun-2005 | I added forever loop at the tail of the script so it's working now (as a server) but rebol stops when I exit the shell:( | |
Henrik: 8-Jun-2005 | background jobs are normally stopped in the shell they are run from, if that shell exits. I'm not sure what it takes to make a program run as a background job, though... | |
Oldes: 8-Jun-2005 | I would like to start a server | |
Henrik: 8-Jun-2005 | have you tried using a shebang line at the top of the script and run the script directly as an executable script, rather than through the rebol executable? | |
Henrik: 8-Jun-2005 | http://www.jguru.com/faq/view.jsp?EID=472493<--- something about using SysV init here. putting the script in /etc/init.d would make it a daemon | |
Volker: 8-Jun-2005 | had tested in an xterm. thought closing that acts like a logout. | |
Tomc: 8-Jun-2005 | with REBOL/Core 2.5.6.10.1 on solaris I just use a trailing & | |
Oldes: 8-Jun-2005 | I start a job and than use disown -h | |
Oldes: 9-Jun-2005 | I would like to make a IRC client from it as I have in rebol/plugin: http://oldes.multimedia.cz/rss/builds/irc-plugin/ | |
shadwolf: 9-Jun-2005 | I would like to make a IRC client from it as I have in rebol/plugin: | |
shadwolf: 9-Jun-2005 | kini is far from javaIRC client for example but It can be a good start | |
eFishAnt: 4-Jul-2005 | 4th of July (a good time for me to do project work) but wanted to say thanks for the Statue of Liberty you gave us many years back. | |
eFishAnt: 4-Jul-2005 | we shoot fireworks for a day, rather than shooting each other. | |
DideC: 4-Jul-2005 | Does anybody know (use!) Virtuozzo ? It's a virtualisation server application. I wonder if buying an hosting on this kind is a good solution to host Rebol CGI apps. | |
eFishAnt: 4-Jul-2005 | Josh is now in Bejing then to Yinchuan China, for 6 weeks on a mission trip, teaching English as second language, so I am without my best French interpreter. | |
François: 10-Jul-2005 | 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 | 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. | |
Robert: 15-Jul-2005 | 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. | |
Henrik: 28-Jul-2005 | has anyone figured out how to run a script as a daemon that can be started at boot? | |
Anton: 28-Jul-2005 | There seems to be a related discussion in this group around the 8-Jun-2005. | |
Volker: 28-Jul-2005 | 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. | |
Ammon: 28-Jul-2005 | 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. | |
shadwolf: 10-Aug-2005 | 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. | |
shadwolf: 10-Aug-2005 | 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). | |
shadwolf: 10-Aug-2005 | 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 ;) | |
shadwolf: 10-Aug-2005 | 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 :) | |
shadwolf: 10-Aug-2005 | I think parse would do a trully great job for this kind of rebol software | |
Henrik: 10-Aug-2005 | there is a stdc++ notice on the builds page. did you read it? | |
Volker: 10-Aug-2005 | 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. | |
Jonathan: 10-Aug-2005 | 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 ? | |
shadwolf: 10-Aug-2005 | Francois a very good linux distribution is ubuntu ;) | |
François: 10-Aug-2005 | 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 | |
François: 10-Aug-2005 | Shad, Ubuntu is debian based... So why have a copy when you can have the real thing ;-) | |
shadwolf: 12-Aug-2005 | Francois not a copy a different package ... | |
Ashley: 15-Aug-2005 | Any chance of a world master moving this group under the "Operating Systems" divider? | |
Pekr: 12-Sep-2005 | thanks a lot ... | |
Volker: 12-Sep-2005 | about special settings (user.r) i would write a short script dumping system/options and system/script. running from cgi. That should show the pathes. | |
Volker: 12-Sep-2005 | i guess user.r is at users home, not sure where that is with their cgi-settings. on a new rebol >> get-env "HOME" == "/home/volker" works too. | |
Volker: 12-Sep-2005 | where are sub-script? rebol makes a cd to the current script. So you can use relative addresses from there. just make a subdir %lib/ where the script is. | |
Volker: 12-Sep-2005 | when i upload things, i use a builder-script which takes my local installation and replaces some things, like the shebang. then i copy that result to the server. you could make a config-script, exe: %/usr/local/bin/rebol data: %/svr/www/my-dir/ .. let them adjust that and run the builder. Also it makes sense to not hard-wire most pathes, but put them in a config too and load them at runtime. but does not work with the shebang, it must be hardcoded in the script. | |
Pekr: 12-Sep-2005 | thanks a lot! :-) | |
Volker: 6-Oct-2005 | what is a good client for bittorrent? i want to help seeding a bit, but not to have lots of btdownloadcurses open. | |
Volker: 6-Oct-2005 | cpu-cycles would be a problem here i guess. but will look, thanks. | |
Pekr: 6-Oct-2005 | but that was reported some xyz versions before. They do regular updates, it is really a nice app, having auto-updates for itself and its plug-ins, simply a joy to use - that is how apps should work - install just once and then have it up-to-date for ages ... | |
Alan: 6-Oct-2005 | I tried playing the presentation on Mandrake and all I got was the vid/no sound ? Which player are you guys using that will play a mp4 ? | |
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public] | ||
Dockimbel: 20-Feb-2007 | Some news: I'm currently finishing a new RSP API documentation, that will match the upcoming RSP version with brand new code for session support. In this next release, I'll focus on stability / reliability rather than providing new big features. I should be able to release it in a month from now with proper documentation. | |
Maxim: 20-Feb-2007 | but doc, I think many users would like you to pass by a little more often... its just nice to know that an author is actively supporting his stuff... | |
Dockimbel: 20-Feb-2007 | Terry: REBOL already supports SSL, it just a matter of knowing which flag to set to switch to server-side SSL. Btw, if anyone can get the info from Carl, that would be great ! (Pekr, you're kind of good at extracting info from ppl ;-)) | |
Maxim: 20-Feb-2007 | and put a few pints in the letter ;-) | |
Dockimbel: 20-Feb-2007 | Pekr: There's a lot of competing templating solutions, and AFAIK, XML+XSL is the most used one. You can also look at Enhydra XMLC here : http://www.enhydra.org/tech/xmlc/index.html(It's done with JSP, but the concept can be easily ported to any other language). | |
Maxim: 20-Feb-2007 | the only thing it needs is someone to adapt it for cgi use... I have too little CGI practice and no real need, atm... so its hard to put time on this... but its a rebol script, so its easy to adapt. all it would need is to check if its been started as cgi and call a different startup, which only prints out one file. for static pages (which CAN include dynamic conent like sql queries) then its a very good solution which already supports site magamenent and ftp xfer. | |
Maxim: 20-Feb-2007 | I can send you a .zip though? is your email address here valid? | |
Graham: 22-Feb-2007 | I want to set up a cheyenne web server that is secure.. ie. protected by ssl. | |
Graham: 22-Feb-2007 | can I use http://sourceforge.net/projects/sslexplorerto set up a ssl vpn so that the remote user logins via the vpn, and then accesses the intranet's web server? | |
Maxim: 22-Feb-2007 | btw remark is now online... wondering if everyone sees the announce group... sometimes I think only a minority actually see/read it. | |
Henrik: 22-Feb-2007 | that is probably true. however I may change the architecture a bit since the parser is limited to two levels and is not recursive. the pages are generated from a limited list. all I really wanted to do was to make it easy to combine blogger.r, makedoc documents, dir listings and customized html output in a pipeline. it does most of that now, but the parser is only about 80% elegant. :-) | |
Maxim: 22-Feb-2007 | easier to edit, since I don't have to track the damned end tag all the time... this being said, normal html is still valid within the files... so its a 1/2 way between html and rebol code. | |
Maxim: 23-Feb-2007 | i'd rather say apache is just a slave in this setup | |
Maxim: 23-Feb-2007 | it just acts as a signal converter | |
Terry: 24-Feb-2007 | Ok here's a riddle.. When is a slave a master? | |
Gregg: 24-Feb-2007 | When he's a middle manager? | |
Dockimbel: 25-Feb-2007 | It's a command-line tool acting as a SSL daemon frontend for any server requiring SSL decryption. | |
Graham: 25-Feb-2007 | I had a go .. but couldn't get it to work. | |
Dockimbel: 26-Feb-2007 | Didn't tried that, but there's a client mode in stunnel. | |
Graham: 26-Feb-2007 | Ok. Definitely will try it .. why do they have a how to that's so difficult ?? | |
Dockimbel: 26-Feb-2007 | They did a good job with stunnel's installer, fast and easy to use. | |
Dockimbel: 26-Feb-2007 | Anyway, I'm going to make a Mantis lightweight clone soon, when the new Cheyenne version will be ready. | |
Dockimbel: 26-Feb-2007 | That would make a good test application for the new RSP session engine. | |
Graham: 26-Feb-2007 | I want to write a little application that manages hylafax incoming faxes | |
Dockimbel: 26-Feb-2007 | Specifications are written, I should be able to implement it this week. Then I'll need at least a week to test and tune. | |
Graham: 27-Feb-2007 | noob question .. think i've asked it before .. where should one startup uniserve on a linux system? (suse10) ? | |
Graham: 27-Feb-2007 | Just wondering if Apache can be run as a service from YaST, what would it take to run Cheyenne like that? |
6401 / 64608 | 1 | 2 | 3 | 4 | 5 | ... | 63 | 64 | [65] | 66 | 67 | ... | 643 | 644 | 645 | 646 | 647 |