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

World: r3wp

[Linux] group for linux REBOL users

Volker
21-Apr-2006
[642]
seems the 2 in that line sets the level. http://www.linuxfibel.de/booten.htm
(german).
Graham
21-Apr-2006
[643x2]
http://www.novell.com/documentation/suse91/suselinux-adminguide/html/ch13s05.html
yes, looks like. initdefault
Oldes
28-Apr-2006
[645x2]
Guess what software Osama Bin Laden uses on his laptop?

http://shelleytherepublican.com/2006/04/linux-european-threat-to-our-computers.html
:-)
JaimeVargas
28-Apr-2006
[647]
I can believe this kind of thinking, funny though ;-)
Anton
3-May-2006
[648]
What's a good linux to install on a Pentium II 300MHz  64MB RAM  
3Gig disk ?  It's for my flatmate to browse the web.
yeksoon
3-May-2006
[649]
some guy tested Linux distros on old machine ...
http://www.linux.com/print.pl?sid=06/02/13/1854251

the choice of WM will be the key factor, I think.
Anton
3-May-2006
[650]
This is good, thankyou.
Kaj
3-May-2006
[651]
www.vectorlinux.com
Anton
3-May-2006
[652]
I've decided to try Slackware first, so I'm downloading that.
Anton
4-May-2006
[653x4]
Ok, I've installed Slackware (all the files, apps etc.) onto a Linux 
ext2 partition, marked as Bootable.  But when I reboot, BIOS says 
"Missing operating system" (boot order is CD, C, floppy)
Bit confused by that.
I chose not to install LILO, because the instructions made it sound 
like it wasn't necessary. Is that necessary ?
I think it is.
Henrik
4-May-2006
[657]
yes, either LILO or GRUB
Anton
4-May-2006
[658x2]
thanks, looking into installing lilo now.
Looks like there's no way to install lilo if you skip it in setup. 
Unclear and misleading comments in the setup notes.

I have reinstalled successfully from scratch. It seems to me I made 
two errors the first time around: I had skipped installing both the 
linux kernel and lilo bootmanager.
Anton
5-May-2006
[660]
Woohoo ! Slackware box is up and browsing to rebol.net ! :-) That 
was pretty easy.
Ray
1-Jun-2006
[661]
ok...i am a total newbie here.  i am trying to get rebol .r scripts 
to run on a Mandrake linux box, but i just cannot get them to run. 
 they basically only work as text documents.  am i missing something? 
 i installed rebol view, which as i understand it installs core also. 
 i want to be able to doulble-click the .r file and have it run. 
 it works in windows.  thanks in advance.
Henrik
2-Jun-2006
[662x3]
the wonderful world of linux... what I had to do was to make scripts 
as shellscripts with the shebang line at the top with the path to 
the rebol executable. there is a mention of this in the Rebol/Core 
manual here: http://rebol.com/docs/core23/rebolcore-2.html

This should work across the various desktops.
looks like rebol/view ubuntu version runs fine on ubuntu dapper
it's definitely more stable than some of the gnome apps... :-)
Kaj
2-Jun-2006
[665x3]
Unfortunately, the shebang is the wrong way around in the REBOL manual. 
The best form to use is
#! /usr/bin/env rebol
This should be the most system independent
Ray
2-Jun-2006
[668x8]
ok...so now i am in the midst of another issue
i tried to install rebol last night and it did not appear to work. 
 i left for the day and was going to deal with it today
now the HD is full
it was not full yesterday, but it is now
we are trying to figure out where all the space went to now
we recently had to re-install mandrake and it appears that this is 
the same thign that happened the last time i installed rebol
i had installed it then left on vacation
my co-workers apparently had an issue lst time and had to reformat 
and install
Henrik
2-Jun-2006
[676]
there could be a number of things wrong... a likely issue is a logfile 
that has gone way too big.
Ray
2-Jun-2006
[677]
wher eis the logfile?
Henrik
2-Jun-2006
[678]
usually /var/log, but that depends on what is logged, which distribution 
you use and what program is logging :-)
Kaj
2-Jun-2006
[679x2]
If REBOL/View doesn't run after installation, you probably have to 
install version 6 of the Athena Widgets library
I wouldn't know of anything in /View that would fill up your disk, 
though. Could indeed be some system logging
Tomc
2-Jun-2006
[681x3]
you can use du  -s   to track down where the space is being used
[[tomc-:-aught] ~]$ sudo du -s /*
5752    /bin
69262   /boot
8       /cs
436     /dev
20404   /etc
14077532        /home
4       /initrd
333364  /lib
389064  /local
16      /lost+found
...
Anton
5-Jun-2006
[684x2]
Slackware - connected ethernet cable to internet after fully booting 
and starting window system. How can I start the network ?
Don't worry. That's easy to figure out.
Robert
19-Jun-2006
[686x5]
I love all those distro an RPM madness to just get an update to one 
package on RH... mabe someone can help. I'm running a rather old 
RH 7.2 (but it works good) and now need to update the Perl package. 
I downloaded the RRM of it and of course it has zillions of dependencies.
And it needs a new glibc version. But there is a circular dependency. 
I can't update glibc, as it conflicts with glibc-common of a lower 
version. Updating glibc-common doesn't work because it's required 
by the current glibc.
How can I do this update? And I need several GLIBCs, as it's a central 
component, that need to be installed in parallel, right? How to do 
this?
I once asked this in Feb, but I can't upgrade my system at the moment. 
So, I somehow need to get this installed.
Debian is so easy about this: apt-get update, apt-get upgrade and 
you are done.
Gabriele
19-Jun-2006
[691]
robert, when you have circular dependencies the only way is to install 
both pkgs with the same command (i.e. rpm -i pgk1.rpm pkg2.rpm)