Preparation
Official Installation Page
Swap Memory
$ sudo dd if=/dev/zero bs=1M count=4096 of=/mnt/4GiB.swap$ sudo chmod 600 /mnt/4GiB.swap$ sudo mkswap /mnt/4GiB.swap$ sudo swapon /mnt/4GiB.swap# make swap available on boot$ echo '/mnt/4GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab
Verify swap file exists
Installation
- Standard installation
$ cd /tmp$ curl -O https://kasm-static-content.s3.amazonaws.com/kasm_release_1.11.0.18142e.tar.gz$ read more
SSH Quick Guide
1 minute read
Generate new SSH Key
$ ssh-keygen -t rsa -b 4096 -C "name@email.com" ~/.ssh/id_rsa ~/.ssh/id-rsa.pub # (optional passphrase and name)
Add new key to ssh-agent
$ eval $(ssh-agent -s)($ eval `ssh-agent -s`) Agent pid 12345$ ssh-add ~/.ssh/id_rsa
For Windows, open PowerShell as Administrator
Add-WindowsCapability -Online -Name OpenSSH.Client*
OR
- Open Manage Optional Features
- Add a Feature
- Search for OpenSSH and install
THEN