Files
.infineon/_-Review/kasm.md
2024-11-06 12:39:13 -07:00

31 lines
1.1 KiB
Markdown

---
created: 2024-07-17T20:03:32.445Z
type: note
updated: 2024-07-17T20:03:55.305Z
---
# Kasm
```bash Wed Jul 17 2024 12:21:17 GMT-0700 (Mountain Standard Time)
sudo -i
cd /tmp
# https://www.kasmweb.com/community-edition
# https://kasmweb.com/docs/latest/install/single_server_install.html
curl -O https://kasm-static-content.s3.amazonaws.com/kasm_release_1.15.0.06fdc8.tar.gz
curl -O https://kasm-static-content.s3.amazonaws.com/kasm_release_service_images_amd64_1.15.0.06fdc8.tar.gz
curl -O https://kasm-static-content.s3.amazonaws.com/kasm_release_workspace_images_amd64_1.15.0.06fdc8.tar.gz
tar -xf kasm_release_1.15.0.06fdc8.tar.gz
ls -la
# snap install docker
bash kasm_release/install.sh -L 8443 --offline-workspaces /tmp/kasm_release_workspace_images_amd64_1.15.0.06fdc8.tar.gz --offline-service /tmp/kasm_release_service_images_amd64_1.15.0.06fdc8.tar.gz
reboot
```
```bash Wed Jul 17 2024 12:55:02 GMT-0700 (Mountain Standard Time)
systemctl status docker
docker ps -a
docker logs -f --tail 50 kasm_proxy
docker logs -f --tail 50 kasm_guac
docker restart $(docker ps -q)
```