• clash 启动
#.clash -d .
sudo /home/lizhenyun/clash/clash -d /home/lizhenyun/clash/
  • deb包安装
sudo dpkg -i xxx
  • 授权
chmod 777 xxx
  • 卸载无用依赖
sudo apt autoremove
  • 修复
sudo apt --fix-broken install
  • 打开dns服务
systemctl start systemd-resolved
systemctl enable systemd-resolved
  • 关闭dns服务
systemctl stop systemd-resolved
systemctl disable systemd-resolved
  • 查看包版本
dpkg -l | grep libc6
  • 输出系统信息
uname -a
  • 内核管理
#查看当前内核
uname -a

#查看已安装内核
dpkg --get-selections | grep linux

#移除内核
sudo apt-get remove xxx

#更新系统引导grub
sudo update-grub  #根据情况选择grub/grub2
  • 安装 .run包
sudo chmod 775 ****.run
./****.run
  • 创建(软)连接
#软连接 从A跳转到B
ln -s B A

#硬链接
ln B A
 posted on 2022-02-21 23:41  快乐的大李  阅读(68)  评论(0编辑  收藏  举报