Skip to content

Instantly share code, notes, and snippets.

@wooyey
wooyey / asus-c2500.md
Created March 10, 2023 10:44
ASUS USB-C2500 on Linux

Issue with half duplex on ASUS USB-C2500

Problem well(?) known with Realtek chip - ASUS card uses cdc_ether driver instead of r8152.

Was figthing with but at the end use blacklist /etc/modprobe.d/blacklist-asus-2500.conf:

blacklist cdc_ncm
blacklist cdc_ether
blacklist r8153_ecm
blacklist cdc_wdm
@b23prodtm
b23prodtm / WSL 2 GNOME Desktop.md
Last active October 15, 2025 22:38
Set up a GNOME desktop environment on WSL 2

WSL 2 GNOME Desktop

NOTE: If you want the ultimate Linux desktop experience, I highly recommend installing Linux as your main OS. I no longer use Windows (except in a VM) so I will not be maintaining this guide anymore.

Think Xfce looks dated? Want a conventional Ubuntu experience? This tutorial will guide you through installing Ubuntu's default desktop environment, GNOME.

GNOME is one of the more complex — and that means more difficult to run — desktop environments, so for years people couldn't figure [o

@julianlam
julianlam / tp-link-ac600-ac1300-drivers-linux.md
Last active November 8, 2025 16:44
Installing drivers for the TP-Link T2U/T3U Plus (AC600 or AC1300) Wireless Adapter #blog
@mergwyn
mergwyn / zfsbench
Last active September 26, 2025 18:25
ZFS benchmarking using fio
#!/usr/bin/env bash
set -o errexit
echo $(date):Random read
fio --filename=test --sync=1 --rw=randread --bs=4k --numjobs=1 \
--iodepth=4 --group_reporting --name=test --filesize=10G --runtime=300 && rm test
echo $(date):Random write
fio --filename=test --sync=1 --rw=randwrite --bs=4k --numjobs=1 \