Skip to content

Instantly share code, notes, and snippets.

View umaritimus's full-sized avatar

Andy Dorfman umaritimus

  • Los Angeles, Ca USA
View GitHub Profile
@umaritimus
umaritimus / README.md
Created September 23, 2020 02:09 — forked from ibuildthecloud/README.md
k3s on WSL2

Instructions to hack up WSL2 on Windows 10 Build 18917 to run k3s (Kubernetes) and rio

Install WSL2

https://docs.microsoft.com/en-us/windows/wsl/wsl2-install

I already had Ubuntu-18.04 installed in wsl 1. So I just did wsl --set-version Ubuntu-18.04 2

Compile Kernel

Using Ubuntu 18.04 (I'm sure any distro will work), inside WSL2 download https://thirdpartysource.microsoft.com/download/Windows%20Subsystem%20for%20Linux%20v2/May%202019/WSLv2-Linux-Kernel-master.zip and extract to a folder. The latest version of the kernel source is available at (https://github.com/microsoft/WSL2-Linux-Kernel)

@umaritimus
umaritimus / gist:9c38abebf01b42789e61911f70f11b30
Created April 7, 2016 18:07
Execute Jolt transaction from outside PeopleSoft Application server. What kind of Payload does it accept?
String host = "AppServer";
String port = "9000";
String oprid = "PS";
String client = "JoltPing";
String joltPwd = "password";
byte[] data = "who goes there?".getBytes();
try {
JoltSessionAttributes jsa = new JoltSessionAttributes();