r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Linux] group for linux REBOL users

Henrik
15-Nov-2006
[840x2]
Gnome vs. KDE: I gave up on KDE ages ago. It has pretty good underpinnings, 
but the philosophy of cramming every possible feature into the GUI 
just makes it a nightmare to use. I don't know about KDE4, so I won't 
say much about that.

Gnome has a much better interface, but still a far way to go. It's 
exactly the opposite of KDE. I wish the two would go together and 
create a new desktop, based on KDE's underpinnings and Gnome's GUI.
But for serious work I prefer WindowMaker with GNUstep apps.
Kaj
16-Nov-2006
[842]
Well, you know where the best of both worlds is to be had ;-)
CharlesS
18-Nov-2006
[843x3]
how do i set the network server for emstp on linux ?
oops i see
hmm, how do i set it to use local sendmail ?
Ingo
18-Nov-2006
[846]
Well, you don't ... rebol does not support sending email using sendmail, 
but

if you have a version with command-shell support ( call ) you can 
probably create the command line to call sendmail yourself ... I 
don't know how to do this, though.
Anton
19-Nov-2006
[847]
CALL was freed for use in unlicensed Rebol/View some time ago.
Kaj
19-Nov-2006
[848x2]
I think interfacing with sendmail via the command line would be through 
the standard "mail" command, if sendmail is properly configured as 
standard MTA
The alternative would be to make sendmail listen on the local loopback 
network address, so you could use the REBOL send function
Graham
7-Dec-2006
[850x4]
Linux newbie here.
Downloaded vmplayer, and a Fedora 6 core image.  Run the Fedora, 
and then downloaded Rebol core for Linux libc
when I try to run Rebol, nothing happens.  The permissions say it 
is an executable though.
Is this the wrong version for Fedora ?
Alan
7-Dec-2006
[854x3]
Graham, I use Mandriva and dled the debian version and it works
or on a side note,try this new distro    http://www.ulteo.com/main/download.php
it was made by the guy who started the Mandrake distro and then got 
fired when Mandriva took over
Graham
7-Dec-2006
[857x3]
Alan, I'm running this under Windows so need to find a Vmware appliance 
..
Ok, found a Mandriva appliance .. downloading it.
900Mb later .. no go.  The Mandriva Vmware appliance just keeps cycling 
on me. :)
Kaj
7-Dec-2006
[860x3]
Do
ldd rebol
to see what libraries it needs, then see if you have them installed
Graham
7-Dec-2006
[863x2]
Thanks.  It says libstdc++.so.5 not found ... everything else is 
found.
How do I install that?
PeterWood
7-Dec-2006
[865]
This might help - http://blogs.activestate.com/kevinw/2006/02/libstdc5_how_to.html
Graham
7-Dec-2006
[866]
I found another site that said I should do this:

yum install compat-libstdc++-33


which I did .. and after a few things printed to the screen .. it's 
just sitting there :(
PeterWood
7-Dec-2006
[867x2]
...sorry .. no experience of yum ....I'm as new to Linux as you ...I 
installed Ubuntu desktop as a dual-boot on my XP machine.
...silly question ...have you downloaded the library?
Graham
7-Dec-2006
[869x3]
I think the rpm was already present ..and so yum was doing it's thing. 
 1 hour later, it's still parsing the input parameters :(
I managed to get a Suse livePC running .. and Rebol runs.
only problem, the screen res is 640x480 :(
Graham
8-Dec-2006
[872]
Maybe I should use a real Linux rather than a virtualised one :(
Gabriele
8-Dec-2006
[873]
Graham, most of the times if you have a libstdc++.so.<someotherversion> 
 you can just symlink to .5 and REBOL will work.
Kaj
8-Dec-2006
[874]
It's the Law of Linux: different distros and different versions will 
have very different problems, but there will always be one showstopper...
Graham
8-Dec-2006
[875x2]
Syllable will be different??
More newbie questions .. how come i double click on Rebol and the 
desktop comes up.  I click on console, and it all shuts down.  No 
console, and no desktop?
Henrik
8-Dec-2006
[877]
probably because you didn't start it from a shell. since it wasn't 
tied to a shell, it can't go anywhere when you leave the desktop 
and just shuts down.
Maxim
8-Dec-2006
[878x2]
IIRC depending on the desktop manager you use, you can open icons 
with a shell automatically.  and can ask the manager to hide the 
shell until the app bums out.  look into the icon's properties... 
This might also only be an option for .r file associated icons themselves 
(not rebol, but for script with an icon).
I used to do so for python scripts... it was really cool... no one 
saw the shell, until a crash occured, in which case all the prints 
where available for copy/paste.
Graham
8-Dec-2006
[880x2]
Seems to be using Gnome
This is a tad frustrating .. my emr is a single script ( from prerebol 
) and runs under windows.  Under Fedora, it does nothing :(
Henrik
8-Dec-2006
[882]
what happens when you try to run it from shell?
Graham
8-Dec-2006
[883]
I am trying to run it from the view console
Maxim
8-Dec-2006
[884]
I was using kde at the time...
Graham
8-Dec-2006
[885x2]
Just downloaded the lastest sdk ( I think for fedora ).  Try and 
run enface,and get a permission denied message :(
What's the Linux equivalent of the windows environment variables?
Henrik
8-Dec-2006
[887x2]
exports, I believe. type 'export' in a shell and see what happens.
or 'env'
Frank
8-Dec-2006
[889]
rebol way 
 a: " " 
call/output "set" a
probe a