分類: 其他
Linux:MSR 開啟
MSR(Model-specific Register)
apt install msr-tools
啟用 MSR 模組:
modprobe msr
設定開機自啟用:
nano /etc/profile
wrmsr 0x1a0 0x850088
開機自動啟動 m……
Linux:screen 切換畫面方式
screen -ls 列出所有畫面
screen -r + 代號 : 重新連接某畫面
Ctrl + a 與 d 卸離退出本畫面
Ctrl + a 後,再按下 n 可切換到下一個畫面 (n:next)
Ctrl + a 後……
Linux: 顯示系統名稱資料
使用以下指令:
hostnamectl
會顯示例如以下結果:
Static hostname: ubuntu
Icon name: computer-vm
Chassis: vm
Machine ID: ……
Linux:wttr.in 在終端機中查看天氣
curl wttr.in?lang=zh-tw
curl wttr.in/taipei?lang=zh-tw
網樂通:Debian 7 來源
SOURCES:
deb [arch=sh4] http://nextvod.becoder.org/ wheezy main contrib non-free
deb http://ftp.yzu.edu.tw/Linux/debian-sh4-for-nextvod/ wheezy all……
Instantbox:開箱即用的Web臨時Linux系統
安裝 Docker:
apt install docker.io
or
apt install docker-ce
填寫設定資料:
mkdir instantbox && cd $_
bash <(curl -sSL https://raw.githubu……
Simple Torrent:BT離線下載工具
Github:https://github.com/boypt/simple-torrent
一鍵安裝:
bash <(wget -qO- https://raw.githubusercontent.com/boypt/simple-torrent/master/scripts/……
Linux:nohup 指令使用
nohup 指令使用
nohup rm -rf / &
nohup rm -rf / > rm.log 2>&1 &
顯示作業隊列:
jobs -l
終止程序:
kill -9 pid
Linux:ddrescue 安裝與使用
安裝 ddrescue:
apt install gddrescue
使用指令:
ddrescue -f -r 1 -n -v /dev/zero /dev/sdc sdc.log
Wordpress:DB 內網站網址批次修改
UPDATE wp_posts
SET post_content = REPLACE(post_content, 'www.abc.com', 'www.xyz.com')
WHERE post_content LIKE '%www.abc.com%';
UPDATE wp_posts……
Linux:查看目錄佔用容量大小-du
使用 du 指令
-s, --summarize 只顯示總計
-h, --human-readable 以 K, M, G 為計量單位
-c, --total 增列一行 "總計"
du -shc /*
Windows: AD 重新取得DC授權_PS語法
Client 端先登入本機 Administrator 帳戶
再以系統管理員權限開啟 Windows PowerShell
PS語法
Reset-ComputerMachinePassword -Server {domain controller} -C……
Windows10:系統狀態列時間新增秒數欄位
Win10 開啟命令提示字元並執行以下指令:
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v "ShowSecondsInSystemClock" /t reg_……
phpMyAdmin:需要設定一組加密密碼 (blowfish_secret)修正方法
cd /usr/share/phpmyadmin/
cp config.sample.inc.php config.inc.php
nano config.inc.php
在以下地方新增32碼以上任意密碼:
$cfg['blowfish_secret'] = 'a……
phpMyAdmin:$cfg ['TempDir'](/usr/share/phpmyadmin/tmp)無法存取修正方式
mkdir /usr/share/phpmyadmin/tmp
chmod 777 /usr/share/phpmyadmin/tmp/
smokeping 安裝與 smokeping_prober 服務建立
安裝 smokeping:
apt install smokeping
建立 smokeping_prober >> smokeping_prober
Nginx 反向代理 conf:
server {
listen 80;
server_name……
ipmitool:伺服器自動化控制風扇轉速
首先安裝ipmitool:
apt install ipmitool
啟用ipmi 系統模塊:
modprobe ipmi_si
modprobe ipmi_devintf
echo ipmi_si >> /etc/modprobe
echo ipmi_de……
Linux:lsof 使用
列出所有程序:
lsof
產生類似以下內容:
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
php-fpm7. 13889 root mem REG 8,2 539176 39……
Linux: Rename 使用
安裝 Rename:
apt install rename
Rename語法:
rename [ -v ] [ -n ] [ -f ] perlexpr [ files ]
-n 是把模擬的結果印在螢幕上,不實際改檔名
-v 是改檔名同……
查看並持續監測 Pi CPU 溫度
Script:
nano temp.sh
#!/bin/bash
cpu=$(</sys/class/thermal/thermal_zone0/temp)
echo "$(date) @ $(hostname)"
echo "----------------------------……