紀錄如何看 Singularity image labels. Read more 08 Nov 2023 - less than 1 minute read
Linux 用久了, 看到純文字檔案的 line ending 是用 ‘\r\n’, 就覺得很礙眼. 如果要一次改整個資料夾的純文字檔, 用 dos2unix Read more 15 Sep 2023 - less than 1 minute read
把裝有 Ubuntu 20.04筆電的 wi-fi 網卡升級到 AX210 後, 藍芽耳機切換到 A2DP codec 後就沒有聲音了 QQ. Google 了一下可能是 Ubuntu default 使用的 Pulseaudio 已經無法支援 AX210 的 BT driver. 只好參考網路的建議, 把 {ulseaudio 改成 Pipewire 試試看. Read more 14 Aug 2023 - less than 1 minute read
在 debug kernel 的時候, 要追 function call stack 最簡單的方式就是呼叫 dump_stack(). 在 user space 寫 C function 時, gcc 也提供了一個類似的 API. Read more 29 May 2023 - less than 1 minute read
因為 kerenl 的 tasklet 可以 access 任意的記憶體位置, 要如何在茫茫 tasklets 中找到是誰修改了某個變數在 debug 上非常重要. 還好 Linux kernel 提供了 HW breakpoint 的方式, 讓我們可以在要 monitor 的位置上註冊一個 trap. 當 kernel 對該位置讀寫時觸發 trap 來做進一步 debug, 比方說 dum... Read more 27 Mar 2023 - less than 1 minute read