月份: 2021 年 7 月
thumbnail

Linux:系統監測相關

vmstat: 安裝: apt-get install procps 指令: vmstat 1 -w 結果: --procs-- -----------------------memory---------------------- ---swap-- -----io---- -sy……
thumbnail

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……
thumbnail

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 ## ……