mirror of
https://github.com/A2osX/A2osX.git
synced 2025-02-05 07:32:53 +00:00
Updating MAKE to send some tests to Remy
This commit is contained in:
parent
49d81f333f
commit
ba9a5a5af8
@ -6,8 +6,7 @@ Major updates have occured to the kernel and many of the APIs to support an enha
|
||||
|
||||
## Latest News 2018-11-10
|
||||
|
||||
My loneliness has been cured, new resources have signed onto the project. I welcome Patrick Kloepfer
|
||||
who is helping with product management, recruitment, testing and feedback.
|
||||
My loneliness has been cured, new resources have signed onto the project. I welcome Patrick Kloepfer who is helping with product management, recruitment, testing and feedback.
|
||||
|
||||
## News 2018-09-06
|
||||
|
||||
|
@ -159,6 +159,8 @@ a2osx supports as many physical terminals as you have SSC cards and memory to lo
|
||||
|
||||
A2osX supports multiple internet connected terminals via a TELNETD server process. The TELNETD process supports VT-100 terminals, so you should set your Telnet client (i.e. PuTTY) to use VT-100 emulation. Of course you can use another Apple running A2osX and the TELNET client to connect to an Apple running A2osX and the TELNETD server.
|
||||
|
||||
Please note, if you are using Telnet Client Software such as PuTTY for Windows and see random garbled characters (odd graphics symbols), you may need to change your **Remote Character Set** to something other than **UTF-8**, such as **ISO-8859-1:1998 (Latin-1, West Europe)**.
|
||||
|
||||
## Hardware
|
||||
|
||||
### Hardware Requirements
|
||||
|
Binary file not shown.
@ -1,3 +1,4 @@
|
||||
|
||||
NEW
|
||||
PREFIX
|
||||
AUTO 4,1
|
||||
@ -8,8 +9,11 @@ AUTO 4,1
|
||||
#
|
||||
ECHO "\f\n Admin: List System Users"
|
||||
ECHO
|
||||
ECHO "Got Here ";PAUSE
|
||||
IF [ -D ${ROOT}ETC ]
|
||||
ECHO "Got Here ETC True";PAUSE
|
||||
ELSE
|
||||
ECHO "Got Here ETC False";PAUSE
|
||||
ECHO " Your ETC directory that should be in ${ROOT}"
|
||||
ECHO " is missing. This directory is needed for the"
|
||||
ECHO " operation of your system."
|
||||
@ -28,6 +32,7 @@ ELSE
|
||||
EXIT
|
||||
END
|
||||
FI
|
||||
ECHO "Should Get Here right After ETC is True ";PAUSE
|
||||
IF [ -F ${ROOT}ETC/PASSWD ]
|
||||
ELSE
|
||||
ECHO " Your PASSWD file is missing. It should be located in the"
|
||||
@ -50,10 +55,12 @@ ELSE
|
||||
EXIT
|
||||
END
|
||||
FI
|
||||
ECHO "Got Here ";PAUSE
|
||||
# OK Now we can actually list the users!
|
||||
ECHO " UID GID User Full Name Home Directory"
|
||||
ECHO " ----- ----- -------- ------------------------- -------------------------"
|
||||
SET LINE = 7
|
||||
ECHO "Got Here ";PAUSE
|
||||
FOR F IN `CAT ${ROOT}ETC/PASSWD`
|
||||
SET PWUSER = `CUT -S : -F 1 "${F}"`
|
||||
SET PWUID = `CUT -S : -F 3 "${F}"`
|
||||
|
Loading…
x
Reference in New Issue
Block a user