Skip to content

Instantly share code, notes, and snippets.

View kstieger's full-sized avatar
🏠
Working from home

Kurt Stieger kstieger

🏠
Working from home
View GitHub Profile
[ 85.458228] Netfilter messages via NETLINK v0.30.
[ 85.469325] Unable to handle kernel NULL pointer dereference at virtual address 000001a1
[ 85.470067] pgd = ffffffc0ea957000
[ 85.470369] [000001a1] *pgd=0000000000000000, *pud=0000000000000000
[ 85.470947] Internal error: Oops: 96000005 [#1] SMP
[ 85.471383] Modules linked in: nfnetlink 8021q at24 ip_tables x_tables ipv6 autofs4
[ 85.472139] CPU: 0 PID: 736 Comm: iptables Not tainted 4.4.194-1-rk3399-rockchip-g9af8592731dc #1
[ 85.472920] Hardware name: Radxa ROCK Pi 4C+ (DT)
[ 85.473334] task: ffffffc0e0a70000 task.stack: ffffffc0ec4f4000
[ 85.473867] PC is at netlink_unicast+0x68/0x200
@kstieger
kstieger / mkiso.go
Created March 2, 2020 19:44
Create iso file in pure go
package main
import (
"flag"
"fmt"
diskfs "github.com/diskfs/go-diskfs"
"github.com/diskfs/go-diskfs/disk"
"github.com/diskfs/go-diskfs/filesystem"
"github.com/diskfs/go-diskfs/filesystem/iso9660"
"log"
@kstieger
kstieger / myiso.go
Last active November 13, 2019 14:23
package main
import (
"log"
"os"
diskfs "github.com/diskfs/go-diskfs"
"github.com/diskfs/go-diskfs/disk"
"github.com/diskfs/go-diskfs/filesystem"