Hi Katt:
> Hi,
> Is anyone using Rebol with a Linux system? If so, can
> you guide me into installing it?
> --
> Katt
Option one: put it in your user bin:
cd && cp rebol0??.tar.gz bin && cd bin && tar xvfz \
rebol0??.tar.gz
Option two: putit in system bin (usr/ or usr/local/)
su
cp rebol0??.tar.gz /tmp && tar xvfz /tmp/rebol0??.tar.gz \
&& cp /tmp/rebol /usr/bin
You may also want to add to /etc/profile :
export REBOL_HOME=$HOME
This will make each user's default location for user.r to be
their home directory. They can override this with their own
.cshrc, .bashrc, .login, .profile, etc..
That's about it.
-jeff