User Tools

Site Tools


tutorials:starter

Warning: Undefined array key -1 in /sdf/sys/html/twenex/wiki/inc/html.php on line 1458

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tutorials:starter [2021/11/03 01:20]
papa
tutorials:starter [2024/06/02 01:56] (current)
smj [Quick and Dirty Comparisons]
Line 1: Line 1:
 ====== TOPS-20 Starter Guide for UNIX users ====== ====== TOPS-20 Starter Guide for UNIX users ======
  
-//[Adapted from file NEW-USER.HLP.]//+//[Adapted from file %%TOPS20:<HELP>NEW-USER.HLP.11%%.]//
  
 Its important to know these basics before continuing: Its important to know these basics before continuing:
Line 95: Line 95:
 | mail (sending) | SEND | | mail (sending) | SEND |
 | mail (reading) | MM | | mail (reading) | MM |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `ls`              | List directory contents                 | `DIR`                      | List directory contents                                  |
 +| `cd`              | Change directory                        | `CONNECT`                  | Change directory                                         |
 +| `cp`              | Copy files and directories              | `COPY`                     | Copy files                                               |
 +| `mv`              | Move/rename files and directories       | `RENAME`                   | Rename files                                             |
 +| `rm`              | Remove files or directories             | `DELETE`                   | Delete files                                             |
 +| `mkdir`           | Make directories                        | `CREATE DIRECTORY`         | Create a new directory                                   |
 +| `rmdir`           | Remove empty directories                | `DELETE DIRECTORY`         | Delete a directory                                       |
 +| `pwd`             | Print working directory                 | `INFO DIRECTORY`           | Display current directory                                |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `cat`             | Concatenate and display files           | `TYPE`                     | Display contents of a file                               |
 +| `more`            | View file contents one screen at a time | `TYPE` / `MORE`            | Display file contents, paginated                         |
 +| `less`            | View file contents with navigation      | `TYPE` / `MORE`            | Display file contents, paginated                         |
 +| `vi` or `vim`     | Text editor                             | `EDIT` or `TECO`           | Edit a file                                              |
 +| `nano`            | Simple text editor                      | `EDIT` or `TECO`           | Edit a file                                              |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `df`              | Report file system disk space usage     | `INFO DISK-USAGE`          | Show disk usage                                          |
 +| `du`              | Disk usage of files and directories     | `INFO FILE-USAGE`          | Show disk usage of files                                 |
 +| `mount`           | Mount a file system                     | `MOUNT`                    | Mount a file system                                      |
 +| `umount`          | Unmount a file system                   | `DISMOUNT`                 | Unmount a file system                                    |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `ps`              | Report a snapshot of current processes  | `STATUS`                   | Show process status                                      |
 +| `top`             | Display tasks                           | `INFO JOBS`                | Display information about jobs                           |
 +| `kill`            | Terminate a process                     | `KILL`                     | Terminate a process                                      |
 +| `bg`              | Run a job in the background             | `CONTINUE`                 | Continue a stopped job                                   |
 +| `fg`              | Bring a job to the foreground           | `ATTACH`                   | Attach to a job                                          |
 +| `jobs`            | List active jobs                        | `INFO JOBS`                | List active jobs                                         |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `uname`           | Print system information                | `INFO SYSTEM`              | Display system information                               |
 +| `hostname`        | Show or set the system's hostname       | `INFO SYSTEM`              | Display system hostname                                  |
 +| `uptime`          | Show how long the system has been running| `INFO SYSTEM`              | Display system uptime                                    |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `ping`            | Send ICMP ECHO_REQUEST to network hosts | `PING`                     | Send ICMP ECHO_REQUEST to network hosts                  |
 +| `ssh`             | OpenSSH SSH client                      | `EXECUTE` or `RUN`         | Connect to another system (via EXEC)                     |
 +| `ftp`             | File Transfer Protocol client           | `FTPC`                     | FTP client                                               |
 +| `netstat`         | Print network connections, routing tables| `INFO NETWORK`             | Show network status                                      |
 +
 +^ **Linux Command** ^ **Description**                         ^ **TOPS-20 Command**        ^ **Description**                                          ^
 +| `who`             | Show who is logged on                   | `WHO`                      | Show who is logged on                                    |
 +| `passwd`          | Change user password                    | `SET PASSWORD`             | Change user password                                     |
 +| `su`              | Substitute user                         | `LOGIN`                    | Log in as another user                                   |
  
  
Line 163: Line 210:
 **For files:** **For files:**
  
-^ OCTAL ^ PROPERTY +^ OCTAL ^ PERMISSION 
-| 77 | FULL ACCESS +| 77 | Full access 
-| 40 | READ +| 40 | Read 
-| 20 | WRITE/DELETE +| 20 | Write/Delete 
-| 10 | EXECUTE +| 10 | Execute 
-| 04 | APPEND +| 04 | Append 
-| 02 | LIST +| 02 | Find file with wildcard 
-| 00 | NO ACCESS |+| 00 | Find only with complete file name; no other access |
  
  
 **For directories:** **For directories:**
  
-^ OCTAL ^ PROPERTY +^ OCTAL ^ PERMISSION 
-| 77 | FULL ACCESS +| 77 | Full access 
-| 40 | READ +| 40 | Access existing files in directory according to their protection 
-| 10 | CONNECT +| 10 | Connect without password; Undelete files; Delete/Expunge all files; \\ Change file dates, times, accounting information 
-| 04 | BUILD +| 04 | Create files 
-| 00 | NO ACCESS |+| 00 | No access |
  
  
Line 227: Line 274:
 If you wish to not have messages sent to your TERMINAL, type: If you wish to not have messages sent to your TERMINAL, type:
  
-  TERMINAL NO RECEIVE LINKS+  @TERMINAL NO RECEIVE LINKS
      
 ==== 11. Can I access USENET via my TOPS-20 account? ==== ==== 11. Can I access USENET via my TOPS-20 account? ====
tutorials/starter.1635902412.txt.gz · Last modified: 2021/11/03 01:20 by papa