#linux
Read more stories on Hashnode
Articles with this tag
緣由 滑 hacker news 時被 Out-of-memory victim selection with BPF 砸到,忽然有點好奇 OOM Killer Source Code。 Source...
Manual pthread_cancel(3) - Linux manual page 根據 linux manual 所寫,pthread_cancel 基本上可以在一些可中斷的地方(POSIX 給了一個清單,大概是 IO 操作的時候)中斷 thread。 這時就好奇了:C++ 的...
前言 感謝 Arch Linux安裝教學,KDE Plasma桌面+中文輸入法 ,本篇的安裝步驟大部分來自於這他,尤其是硬碟分割。 在網路上找到不少教學都是有包含 GUI...
在 Linux 系統下,我們可以透過 fcntl 來提供跨 Process 的 Read/Write Filelock,但是卻有一個小小的坑需要注意,那就是在同一個 Process 內,不可以跨 Thread 使用這個 Lock。 舉個例子,假設我們有一個 Process A,會定期地更新...
Linux Group Write Permission · Group Write Permission Python open/Golang open 開新檔案時,並不是直接按照 user 給的權限。 例如: package main import ( "os" ) func main()...
diff will calculate the difference of two files or folders and output with specific format. patch parse that specific format and apply difference to...