是的,FreeBSD 支援 System V-style IPC。這包括共享記憶體,訊息跟 信號。你需要在你的核心設定檔內加入下列幾行以啟動它們。
options SYSVSHM
options "SHMMAXPGS=64" # 256Kb of sharable memory
options SYSVSEM # enable for semaphores
options SYSVMSG # enable for messaging
重新編譯並安裝。
注意: 如果你要執行 GIMP 你可能需要增加 SHMMAXPKGS 到某些荒 謬的數目像是 4096(16M!),256Kb 對 X11R6 共享記憶體來說已經充分足 夠了。