yiplee's Blog

开发笔记

Linux 基本配置

Posted at — Apr 9, 2020

让 Bash 支持方向键匹配历史记录

在 home 目录的 .inputrc 文件添加键位绑定,然后重启 terminal session 即可

# Key bindings, up/down arrow searches through history
"\e[A": history-search-backward
"\e[B": history-search-forward
"\eOA": history-search-backward
"\eOB": history-search-forward

安装 autojump

1. 安装 ```autojump``` 包,在 unbuntu 上执行 ```sudo apt install autojump```,其他发行版使用对应的包管理器安装即可。

2. 在 ```.bashrc``` 或 ```.zshrc``` 加载脚本

```shell
# autojump
. /usr/share/autojump/autojump.sh
  1. 重启 terminal session 即可。

Systemd 模版

自定义 *.service 文件放在 /usr/lib/systemd/system 下面

[Unit]
Description=xxx service
After=network.target

[Service]
Type=simple
User=nobody
Restart=always
StartLimitIntervalSec=10
StartLimitBurst=10
RestartSec=1s
ExecStart= /path/bin --debug

[Install]
WantedBy=multi-user.target

查看端口占用情况

ss -lntu | grep 8080ss