diff --git a/.Docs/News.md b/.Docs/News.md index 184136d5..04c769a7 100644 --- a/.Docs/News.md +++ b/.Docs/News.md @@ -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 diff --git a/.Docs/User Guide.md b/.Docs/User Guide.md index 7e7cd777..3481a58e 100644 --- a/.Docs/User Guide.md +++ b/.Docs/User Guide.md @@ -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 diff --git a/.Floppies/A2OSX.MAKE.po b/.Floppies/A2OSX.MAKE.po index 86e3ed5e..fad167ad 100644 Binary files a/.Floppies/A2OSX.MAKE.po and b/.Floppies/A2OSX.MAKE.po differ diff --git a/ADMIN/LISTUSERS.txt b/ADMIN/LISTUSERS.txt index 44aae356..cfb520b1 100644 --- a/ADMIN/LISTUSERS.txt +++ b/ADMIN/LISTUSERS.txt @@ -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}"`