Browse Source

Upload files to ''

Support files for putty and vi
master
Ken Unix 10 months ago
parent
commit
73b201e775
2 changed files with 37 additions and 0 deletions
  1. +16
    -0
      putty.notes
  2. +21
    -0
      vi.notes

+ 16
- 0
putty.notes View File

@@ -0,0 +1,16 @@
12-17-2023 KenUnix

If putty is not installed under Arch do: sudo pacman -S putty

Under most other Linux's do: sudo apt-get install putty

File putty.defs contains the setup for running putty under Linux port 2323.

Put putty.defs into ~/.putty/sessions/telnet2323
This will give you a pre-configured vt-100 setup with 20 points font.

Then when firing up putty load telnet2323. Then click open
after a few seconds you should get a Unix login screen.

When done right click on the window and click close.


+ 21
- 0
vi.notes View File

@@ -0,0 +1,21 @@
12-17-2023 KenUnix Old School

In vi under Unix use the following most common keys:

a = Ad text
dd = Delete current line. Example to delete 3 lines you would enter 3dd
i = Insert text at cursor position
j = Join lines at the cursor
p = paste yanked lines at current line position
q = Quit vi
q! = Quit vi without saving
r = Read file , append
s = Substitute text. Example :s/old/new/ for current line
or :s 1,$ /old/new/ for entire file
u = Undo the lest operation
w = Write file
x = Erase character under cursor
yy = Yank line
: = Issue command. Example :w to write file
esc= Go to command mode


Loading…
Cancel
Save