Linux系统的一些增强工具

问题引出:一些方便 Linux 使用的工具。。。

💿安装

sudo apt install mc ncdu htop exa duf proxychains -y

mc : 文件管理

-

ncdu : 文件夹大小 du 增强版

-

htop : 进程监视 top 增强版

-

exa : 列举文件 ls 增强版

-

duf : 列举分区 df 增强版

-

proxychains : 简易代理工具

# 改代理设置,最下面一行
sudo nano /etc/proxychains.conf

-


oh-my-zsh : 终端强化神器

  • 安装
# sh 一键安装
sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  • 拓展
# 自动补全
proxychains git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

# 语法高亮
proxychains git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

# 添加到 ~/.zshrc
nano ~/.zshrc

-

  • 主题

我使用的是 passion: https://github.com/ChesterYue/ohmyzsh-theme-passion

-

更多主题在: https://github.com/ohmyzsh/ohmyzsh/wiki/External-themes

  • 应用设置 !!!!
source ~/.zshrc

KDE : 桌面环境

# 简约版
sudo apt install kde-plasma-desktop
# 完整版
# sudo apt install kubuntu-desktop

-

clash —— 代理工具

  • 下载配置文件
# 链接要从相关网站中获取
wget -O config.yaml ".............."
  • 直接运行 ( 不推荐 )
./clash /d .
  • mmdb 文件下载失败时使用 wget 下载 mmdb 文件
wget ****.mmdb
  • 写系统服务文件 clash.service ( 推荐 )
[Unit]
Description=clash
Documentation=https://............
After=network.target
Wants=network.target

[Service]
WorkingDirectory=/root/app/clash
ExecStart=/root/app/clash/clash -d /root/app/clash
Restart=on-abnormal
RestartSec=5s
KillMode=mixed

StandardOutput=null
StandardError=syslog

[Install]
WantedBy=multi-user.target
  • 复制到指定目录
cp ./clash.service /etc/systemd/system/clash.service
systemctl daemon-reload
# 运行
systemctl start clash
# 开机自启
systemctl enable clash

⚡⚡⚡ OVER ⚡⚡⚡