Skip to content

Instantly share code, notes, and snippets.

View colossus06's full-sized avatar
๐ŸŒŽ

Gulcan Topcu colossus06

๐ŸŒŽ
View GitHub Profile
@colossus06
colossus06 / Kubernetes-fresh-install-on-wsl-cgroupv2 for quantum dev environment.txt
Last active February 25, 2025 23:58
Kubernetes-fresh-install-on-wsl-cgroupv2 for quantum dev environment
#install Ubuntu-24.04
wsl --list --verbose
wsl --install -d Ubuntu-24.04
wsl #and set the user and psw
sudo apt update && sudo apt upgrade -y
# on vs code
#F1 and Remote-SSH: Connect to Host
#install the rest
@guoyoujin
guoyoujin / install cfssl
Last active February 19, 2025 19:06
linux install cfssl
source:
https://pkg.cfssl.org/
install:
$ curl -s -L -o /bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64
$ curl -s -L -o /bin/cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64
$ curl -s -L -o /bin/cfssl-certinfo https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64
$ chmod +x /bin/cfssl*