dpkg -s
$package
# do not use command below:
md5sum <<< "$yourstring"
sha1sum <<< "$yourstring"
sha256sum <<< "string"
#please use the command:
echo -n $yourstring | md5sum
echo -n $yourstring | sha1sum
在 bc 內輸入
ibase=16
obase=16
# 注意,16 進製數需要大寫
使用 pip 安裝 supervisor:
sudo pip install supervisor
初始化:
su
echo_supervisord_conf > /etc/supervisord.conf
在/etc/supervisord.conf
檔案末尾新增配置:
[program:shadowsocks]
command = ss-server -c /home/weibin/test.json
user = weibin
autostart = true
autoresart = true
stderr_logfile = /home/weibin/log/supervisor/ss.stderr.log
stdout_logfile = /home/weibin/log/supervisor/ss.stdout.log
執行:
# 指定配置檔案
supervisord -c /etc/supervisord.conf
# 使用預設的路徑
supervisord
# $cwd/supervisord.conf
# $cwd/etc/supervisord.conf
# /etc/supervisord.conf
其他命令:
# 更新配置
supervisorctl update
# 控制所有程序
supervisorctl start all
supervisorctl stop all
supervisorctl restart all
開機自啟動:
vim /etc/rc.local
# 在 exit 前一行新增
supervisord -c /etc/supervisord.conf
當使用 apt-get install 或者 dpkg -i 安裝程式提示需要 dependency(依賴)時候,可以嘗試使用下面的命令自動安裝所需依賴:
sudo apt-get install -f
linux shell 有用命令
url 命令大全 url url 包製作 url cpio,dump,restore,rpm 將 etc下的所有普通檔案都備份到 opt etc.cpio,使用以下命令 find etc type f cpio ocvb opt etc.cpio 將系統上所有資料備份到磁帶機內,使用以下命令 fin...
有用的linux 命令
原文 sudo 就會用 sudo 的形式執行上一條命令。所以上一條命令就變成了 nohup 命令在你用ssh連線到伺服器,並在上面保持執行ssh登出前任務的時候十分有用。想一下如果你需要在特定的時間執行相同的命令,這種情況該怎麼辦呢?命令 at 就能妥善解決這一情況。以下是 at 使用示例。at 1...
有用的 Linux 命令
無論是對於初學者,還是對付我們的日常應用,以下所羅列的 linux 命令,都是最重要的,也是最有用的。1.arch 顯示處理器的架構型別 2.cat 檢視檔案的內容,如 cat lorem.txt 3.cd 更改工作目錄,如 cd bin 4.cksum 檢視 crc 校驗和及檔案的位元組數,如 c...