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
@julianlam
julianlam / tp-link-ac600-ac1300-drivers-linux.md
Last active July 13, 2024 14:32
Installing drivers for the TP-Link T2U/T3U Plus (AC600 or AC1300) Wireless Adapter #blog
@mergwyn
mergwyn / zfsbench
Last active June 7, 2024 07:39
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 \