Skip to content

Instantly share code, notes, and snippets.

View lekoOwO's full-sized avatar
⚠️
undefined

leko lekoOwO

⚠️
undefined
View GitHub Profile
@lekoOwO
lekoOwO / pve_xtermjs_for_ubuntu_vm.txt
Created August 7, 2021 20:25 — forked from edisonlee55/pve_xtermjs_for_ubuntu_vm.txt
Proxmox VE xterm.js (Serial Terminal) for Ubuntu VM
1. Add a virtual serial port to the VM using PVE Web GUI and restart the VM
2. Enable and start the virtual serial port on VM, change tty number as needed (Reference: https://askubuntu.com/a/621209/838946)
$ sudo systemctl enable serial-getty@ttyS0.service
$ sudo systemctl start serial-getty@ttyS0.service
3. Done! You can now select xterm.js in the PVE Web GUI
@lekoOwO
lekoOwO / rem_proxmox_popup.sh
Created November 23, 2019 09:33 — forked from tavinus/rem_proxmox_popup.sh
Remove PROXMOX 5.x / 6.x subscription message popup
#!/bin/sh
#######################################################
#
# Edits the proxmox Subscription file to make it
# think that it has a Subscription.
#
# Will disable the annoying login message about
# missing subscription.
#
@lekoOwO
lekoOwO / SimpleHTTPServerWithUpload.py
Created June 28, 2018 08:28 — forked from touilleMan/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""