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

World: r3wp

[Linux] group for linux REBOL users

Terry
24-Nov-2005
[316x4]
Damn Small Linux 2.0 released..  http://www.damnsmalllinux.org/index.html


Damn Small is small enough and smart enough to do the following things:


    * Boot from a business card CD as a live linux distribution (LiveCD)
    * Boot from a USB pen drive

    * Boot from within a host operating system (that's right, it can 
    run *inside* Windows)

    * Run very nicely from an IDE Compact Flash drive via a method we 
    call "frugal install"

    * Transform into a Debian OS with a traditional hard drive install
    * Run light enough to power a 486DX with 16MB of Ram

    * Run fully in RAM with as little as 128MB (you will be amazed at 
    how fast your computer can be!)

    * Modularly grow -- DSL is highly extendable without the need to 
    customize
screen shots  http://www.damnsmalllinux.org/dsl-fb.2.0.jpghttp://www.damnsmalllinux.org/dsl-jwm.2.0.jpg
50mb and includes.. 


XMMS (MP3, CD Music, and MPEG), FTP client, Dillo web browser, links 
web browser, FireFox, spreadsheet, Sylpheed email, spellcheck (US 
English), a word-processor (FLwriter), three editors (Beaver, Vim, 
and Nano [Pico clone]), graphics editing and viewing (Xpaint, and 
xzgv), Xpdf (PDF Viewer), emelFM (file manager), Naim (AIM, ICQ, 
IRC), VNCviwer, Rdesktop, SSH/SCP server and client, DHCP client, 
PPP, PPPoE (ADSL), a web server, calculator, generic and GhostScript 
printer support, NFS, Fluxbox window manager, games, system monitoring 
apps, a host of command line tools, USB support, and pcmcia support, 
some wireless support.
There's 1 mb left .. should talk to them about adding /View
Ammon
24-Nov-2005
[320]
Yes, but does it run REBOL? ;->
Volker
24-Nov-2005
[321x2]
:)
View as big as .net BUT including os?
Henrik
24-Nov-2005
[323]
or remove all the other junk and put just REBOL on top of the kernel...
Terry
24-Nov-2005
[324]
Well, I wouldn't call it 'junk'
Volker
24-Nov-2005
[325]
Agreed. Think open source rebol linked in each of them :)
Henrik
24-Nov-2005
[326]
ok, sorry, not junk :-) but think of what you could do with REBOL 
in the same amount of diskspace
Terry
24-Nov-2005
[327]
Add it to the long awaited Nano-ITX http://www.mini-itx.com/
Alan
24-Nov-2005
[328]
and suse on Vmware and only mandriva could coonect to the net/play 
mp3s and other important stuff PLUS Rebol -  Altme
Pekr
5-Dec-2005
[329]
has anyone any experience, of how to configure 'sendmail, to allow 
sending email from various domains? I run cgi script, I want to send 
email from particular domain (virtual host on my server - I host 
several domains), but it always goes away as one concrete domain. 
I have suspiccion I should somehow turn off email masquarading, but 
dunno how :-)
Gabriele
6-Dec-2005
[330]
if the user sending the email (usually "apache" or "httpd" if you're 
on CGI) is in the trusted users list for sendmail, it will accept 
whatever you put in the From: header. are you calling sendmail directly 
to send the email?
Kaj
11-Dec-2005
[331]
Petr, if at all possible, use Postfix instead of Sendmail. Sendmail 
is horrible
Chris
11-Dec-2005
[332x3]
get-modes %vanila.r [owner-name]
Sorry, composing a question over VNC...
Really slow, which is odd because the target is a 'clean' WinXP install, 
where my old, upgraded-from-WinME XP install was much faster.  Anyway, 
inappropriate for the Linux group, I know.
Graham
27-Jan-2006
[335x2]
Any suggestions on a better 'browse definition for Linux?
Volker is suggesting this:

escape-metachars: func["escape metachars" s][
 replace/all s "'" "''"
 rejoin ["'" s "'"]
]

browse: func[url]compose/deep[

call rejoin ["screen -X screen -- " (view-root/bin/browser.sh) " 
" escape-metachars url]
]
Robert
25-Feb-2006
[337]
Trying to update my rebol installation on my red-hat 7.2 box. (Yes, 
it's old I know but it works without any problems). The new rebol 
stuff require a different glib_c version. How do I update this on 
my RH box?
Geomol
25-Feb-2006
[338x2]
Robert, you may find the right glibc rpm here: http://rpmfind.net/linux/RPM/index.html

Be sure to read about the different ones, so you get the right one.

You should be able to have more than one version of glibc installed 
at the same time (so everything will work). There are programs with 
GUIs in RedHat Linux to install rpms, or you can use the rpm command 
from the command line.

It's been a while, since I used Linux, and it can be a hazzle to 
update sometimes.
Oh, it's spelled "hassle".
Sunanda
25-Feb-2006
[340]
hazzle would a good portmanteau word combing hassle and hazzard :-)
Robert
25-Feb-2006
[341x3]
Geomol, thanks a lot.
Hm... ok got the RPMs but how to install several glibc parallel?
There exists no how-to for installing two version of glibc. I can't 
believe this. Haven't the Linux guys though about installing several 
different versions? Sounds like the MS-DLL-hell problem to me. Not 
a bit better than...
Volker
25-Feb-2006
[344x3]
Except linux has version-numbers in the filenames and ms has not 
:)
ldd /usr/local/bin/rebol 
        libm.so.6 => /lib/libm.so.6 (0x40024000)
        libc.so.6 => /lib/libc.so.6 (0x40047000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
I hope that redhat has libc.so.5 or something. then there should 
be no clash. do not know what the rpm changes though. where is it?
Robert
25-Feb-2006
[347x3]
That's what I get:
[[root-:-km1428] root]# ldd /usr/local/bin/rebol
        libm.so.6 => /lib/i686/libm.so.6 (0x4001e000)
        libc.so.6 => /lib/i686/libc.so.6 (0x40041000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
And:
[[root-:-km1428] root]# ldd /usr/local/bin/rebcmd

/usr/local/bin/rebcmd: /lib/i686/libc.so.6: version `GLIBC_2.3' not 
found (required by /usr/local/bin/rebcmd)
        libm.so.6 => /lib/i686/libm.so.6 (0x4001e000)
        libdl.so.2 => /lib/libdl.so.2 (0x40041000)
        libc.so.6 => /lib/i686/libc.so.6 (0x40045000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
I used http://rpmfind.net/linux/RPM/to search for it.
Gabriele
25-Feb-2006
[350]
Robert, actually Linux not only has not solved the DLL problem, they 
are even worse in some respects. In particular, you'd need to compile 
and distribute a different version of REBOL for each linux distro, 
not because the code is any different, but because it needs to link 
to different version of libs and so on (with different include files...); 
there is no way to ensure compatibitly.
Volker
25-Feb-2006
[351x3]
Well, its not designed for binaries.. Interface os thru a wrapper, 
distribute the wrapper and rebol.o, problem solved..
The nice thing is, linux survives api-changes, windows not.
(because you can use different versions of the same library with 
different programs)
Robert
25-Feb-2006
[354x2]
The best system I know, that handles all this is VMS (IIRC).
Anyway, what can I do now?
Gabriele
26-Feb-2006
[356x2]
Volker: what you say is good for developers, but you can't ask normal 
users to recompile everything.
using different version of the same lib just because they have a 
different name is something you can do in any os. a newer version 
of a library should *always* be compatible with older software, so 
that you never need to have two versions.
Volker
26-Feb-2006
[358x2]
i dont ask normal users, i ask the distro-makers. :)
staying always compatible is hard.
Robert
26-Feb-2006
[360]
Well, all good. What can I do now? Still not solved.
Volker
26-Feb-2006
[361x4]
If the rpm is for your redhat and has a 2.3, install it? after lots 
of backups maybe, i guess if the lib fails all fails. or unzip it 
and put the library somewhere else and use LD_LIBRARY_PATH. Do you 
have a link to the package?
But its nasty, i agree to dll-hell.
although if you want to run some things on nt4.0, you are similar 
lost.
hmm, how old is 7.2?
Rebolek
26-Feb-2006
[365]
Hiow can I change my view-root under Linux?