紀錄一下如何在 Linux 上架 RAID-1. Read more 03 Nov 2021 - 2 minute read
Print multiple lines to file from bash. cat << EOF >> file.txt line 1 line 2 EOF Read more 25 Oct 2021 - less than 1 minute read
在 Ubuntu 20.04 的 docker image 上裝 v4.4.140 kernel header 時, 遇到 package dependency 問題. dpkg: dependency problems prevent configuration of linux-headers-4.4.140-0404140-generic: linux-headers-4.4.140... Read more 19 Oct 2021 - less than 1 minute read
在編譯 libs/apps 的時候, 有時候需要 include kernel header. 但 container 和 host 共用 kernel, 沒有固定的 kernel 版本. 之前就遇過只要 host kernel 一更新, container 就找不到 kernel header 的問題, 後來要在 container 中做一個假的 uname binary 騙過 confi... Read more 05 Oct 2021 - less than 1 minute read
GCC 7 之後多了一個新的 warning 選項, -Wimplicit-fallthrough, 檢查 switch 中的每個 case 的最後一個 statement 是否為 break 或 return. 若程式邏輯需要 fall through 的話, 需要加特殊的註解, 來避免 GCC 產生 warning, Read more 02 Oct 2021 - less than 1 minute read