Skip to content

Instantly share code, notes, and snippets.

Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz
CPU Family: 0x6
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz
CPU Family: 0x6
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz
CPU Family: 0x6
This file has been truncated, but you can view the full file.
SteamVR System Report created Wed Oct 17 21:26:52 2018
<Report>
SteamVR Version: 1539100633
SteamVR Date: 2018-10-09
Steam: Public
Steam Branch:
Steam AppID: 250820
Tracking: lighthouse
OS: Linux version 4.14.65-gentoo (root@main) (gcc version 7.3.0 (Gentoo 7.3.0-r3 p1.4)) #1 SMP Mon Sep 17 12:21:48 EDT 2018
This file has been truncated, but you can view the full file.
SteamVR System Report created Wed Oct 03 20:03:56 2018
<Report>
SteamVR Version: 1538437695
SteamVR Date: 2018-10-01
Steam: Public
Steam Branch:
Steam AppID: 250820
Tracking: lighthouse
OS: Linux version 4.14.65-gentoo (root@main) (gcc version 7.3.0 (Gentoo 7.3.0-r3 p1.4)) #1 SMP Mon Sep 17 12:21:48 EDT 2018
firewall {
all-ping enable
broadcast-ping disable
ipv6-receive-redirects disable
ipv6-src-route disable
ip-src-route disable
log-martians enable
name Internet {
default-action drop
description "Incoming Connections"
@ryao
ryao / enter-container.sh
Last active February 3, 2016 04:57
A script to simplify entering a "chroot"-style container in the Gentoo install process
#!/bin/sh
HOSTNAME=
BIND=
SHELL=bash
while getopts "b:h:s:" opt; do
case $opt in
b)
BIND="${BIND} ${OPTARG}"
@ryao
ryao / lx-add-module-symbols
Created March 3, 2015 16:22
GDB command for loading kernel module symbols from sudo -i chroot /guest/gentoo /usr/bin/gdb /usr/src/linux/vmlinux
define lx-add-module-symbols
set $current = modules.next
set $offset = ((int)&((struct module *)0).list)
while($current.next != modules.next)
eval "python from subprocess import check_output; info = check_output(\"modinfo -k %s -n %s\", shell=True).strip().decode(\"ascii\"); gdb.execute('add-symbol-file ' + info + ' %p' )\n", \
init_uts_ns.name.release, \
((struct module *) (((void *) ($current)) - $offset ) )->name ,\
((struct module *) (((void *) ($current)) - $offset ) )->module_core
set $current = $current.next