月份: 2021 年 8 月
LXC:Proxmox VE 7.0 安裝 OpenWRT for LXC 版本
首先編輯
nano /usr/share/perl5/PVE/LXC/Setup.pm
拉到最后面加入
return if !$self->{plugin}; # unmanaged
進入 PVE GUI LXC 模板中新增下載任務:
R21……
Linux:dmidecode 查看系統資源列表
安裝 dmidecode:
apt install dmidecode
pkg install dmidecode
yum install dmidecode
dmidecode
dmidecode -t processor
dmidecode -t memory
dmidecod……
MariaDB:將資料庫重新命名或匯出匯入資料庫
遷移Table:
mysql -u root -p password olddb -sNe 'show tables' | while read table; \
do mysql -u root -p password -sNe "rename table olddb.$tab……
MariaDB:新增使用者並給予對應資料庫
新增使用者:
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
將使用者對應至所屬資料庫:
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localho……
Linux:qperf
安裝qperf:
apt install qperf
server端測試:
qperf
客戶端:
qperf IP tcp_bw tcp_lat conf
即可看到結果