最新文章
-
Linux:系統監測相關
vmstat: 安裝: apt-get install procps 指令: vmstat 1 -w 結果: --procs-- -----------------------memory---------------------- ---swap-- -----io---- -sy……
russel053 2021-07-16
0 0 -
Windows:使用 Regsvr32 重新註冊目錄下所有 DLL檔或OCX檔
x64: 註冊目錄下所有 DLL檔: for %1 in (%windir%\SysWOW64\*.dll) do regsvr32.exe /s %1 註冊目錄下所有 OCX檔: for %1 in (%windir%\SysWOW64\*.ocx) do re……
russel053 2021-07-15
0 0 -
LXC:將特權 LXC 轉換為 非特權 LXC 並開機使用 (ZFS Only)
nano lxc.sh 需要修改地方 vol=儲存系統目錄 #!/bin/bash ## ## Warning: do not use this unless you understand and agree with what it does ## ……
russel053 2021-07-08
0 0