[Oberon] LinuxA2.
Guy
turgu666 at gmail.com
Fri Jul 24 16:44:16 CEST 2020
Hello Peter,
Both the 32bits and 64bits versions are running well on my own
computer: Ubuntu 20.04
To do so, I've installed the archive using the following script,
accepting the default directory and command name:
[beginning of script]
#!/bin/bash
if [ $# \!= 1 ] ; then
echo usage: $0 archivefile
exit
fi
aosdir=/usr/aos
aoscmd=/usr/bin/aos
echo -n "Installation directory for the UnixA2 system
[default:${aosdir}] :"
read a
if ! [ -z $a ] ; then aosdir=$a ; fi
echo -n "Command to invoke UnixA2 [default:${aoscmd}] :"
read a
if ! [ -z $a ] ; then aoscmd=$a ; fi
if [ -f ${aoscmd} ] ; then
echo "the command \"${aoscmd}\" already exists."
echo -n "would you like to overwite it [y/n]:"
read a
if [ "$a" \!= "y" ] ; then exit 1 ; fi
fi
if ! [ -d ${aosdir} ] ; then
mkdir ${aosdir} || exit 1
else
echo "the directory \"${aosdir}\" already exists."
echo -n "would you like to overwrite the old contents [y/n]"
read a
if [ "$a" \!= "y" ] ; then exit 1 ; fi
rm -rf ${aosdir}/*
fi
cat $1 | gunzip | (cd ${aosdir} && tar xvf -)
chown -R root ${aosdir}
chgrp -R sys ${aosdir}
cat ${aosdir}/system/aos.templ | \
sed -e "s,AOS_HOME,${aosdir}," >${aoscmd}
chmod +x ${aoscmd}
# <EOF>
[End of script]
Cheers!
Guy
On Fri, 2020-07-24 at 05:38 -0700, peter at easthope.ca wrote:
> LinuxA2 Generic 32-bit, rev.9527 works routinely here.
>
> Rev.9799 is available at
> http://www.informatik.uni-bremen.de/~fld/UnixAos/rev.9799/ . When
> started on Debian 10 it traps before the graphical display is open.
>
> Does anyone have rev.9799 working? If so, can you please mention
> the
> host system.
>
> If anyone is interested, I can post the trap. An expert with X11
> might recognize the problem easily. Not me.
>
> Thanks, ... Lyall E.
>
More information about the Oberon
mailing list