linux有用命令

Posted zhouli_csdn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux有用命令相关的知识,希望对你有一定的参考价值。

查看 package 的详细信息

dpkg -s $package

计算字符串的 MD5 和 SHA1

# DO NOT USE COMMAND BELOW:
md5sum <<< "$yourString"
sha1sum <<< "$yourString"
sha256sum <<< "string"

#PLEASE use the command:
echo -n $yourString | md5sum
echo -n $yourString | sha1sum


文/svatyvabin(简书作者)
原文链接:http://www.jianshu.com/p/bf1beb2720f8
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

bc 终端计算器的十六进制

在 bc 内输入

ibase=16
obase=16
# 注意,16 进制数需要大写

使用 supervisor 自启动程序

使用 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


文/svatyvabin(简书作者)
原文链接:http://www.jianshu.com/p/bf1beb2720f8
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

自动安装所需要的依赖库

当使用 apt-get install 或者 dpkg -i 安装程序提示需要 Dependency(依赖)时候,可以尝试使用下面的命令自动安装所需依赖:

sudo apt-get install -f

以上是关于linux有用命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux 新手非常有用的命令

markdown Linux - 有用的Linux命令

十大最有用的Linux命令

2018-1-16 Linux学习笔记[重要]

Linux如何快速跳转到文档开头或者末尾

对中级 Linux 用户非常有用的 20 个命令