ติดตั้ง Visual Studio Code บน Ubuntu 18.04

ติดตั้งด้วย Snap

sudo snap install --classic code

Once installed, the Snap daemon will take care of automatically updating VS Code in the background. You will get an in-product update notification whenever a new update is available.

เรียกใช้ vscode

code .
code . &

ดูต่อที่ Visual Studio Code | Phaisarn.com

ติดตั้ง SSH Server บน Ubuntu 18.04

การติดตั้ง openssh

$ sudo apt install openssh-server

การตรวจสอบสถานะ ssh

ตรวจสอบสถานะ ssh ด้วยคำสั่ง service หรือ systemctl

$ service ssh status
● ssh.service - OpenBSD Secure Shell server
     Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enabled)
     Active: active (running) since Mon 2023-03-27 14:23:15 +07; 2min 15s ago
       Docs: man:sshd(8)
             man:sshd_config(5)
   Main PID: 2518 (sshd)
      Tasks: 1 (limit: 9444)
     Memory: 2.7M
     CGroup: /system.slice/ssh.service
             └─2518 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups
Continue reading