月份: 2020 年 2 月
thumbnail

Linux:nohup 指令使用

nohup 指令使用 nohup rm -rf / & nohup rm -rf / > rm.log 2>&1 & 顯示作業隊列: jobs -l 終止程序: kill -9 pid
thumbnail

Linux:ddrescue 安裝與使用

安裝 ddrescue: apt install gddrescue 使用指令: ddrescue -f -r 1 -n -v /dev/zero /dev/sdc sdc.log
thumbnail

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

Linux:查看目錄佔用容量大小-du

使用 du 指令 -s, --summarize 只顯示總計 -h, --human-readable 以 K, M, G 為計量單位 -c, --total 增列一行 "總計" du -shc /*