9 articles
Friday, Mar 13, 2026
bash实现类似zsh那样的历史命令自动补全,彩色终端的方法,是标准的bash shell,使用任何用户 # 1. 下载 curl -L https://github.com/akinomyoga/ble.sh/releases/download/nightly/ble-nightly.tar.xz | tar xJf - # 2. 安装 bash ble-nightly/ble.sh …
Saturday, May 14, 2022
-bash: dig: command not found solution Because the dig component is not installed in the system, the following is the installation method debian/ubunt...
-bash: dig: command not found的解决方法 因为dig组件没有安装在系统,下面是安装方法 debian/ubuntu系统 apt install dnsutils centos/fedora系统 yum install bind-utils Arch Linux系统 pac...
Monday, Apr 26, 2021
neofetch的主要目的是在屏幕截图中使用, 以向其他用户显示您正在使用的操作系统或Linux发行版, 包括主题,图标,硬件配置等。 该命令在终端显示有关系统的信息,操作系统徽标和其他信息 >Neofetch是用bash 3.2+编写的命令行系统信息工具。 Neofetch以美观和视觉愉悦的方式...
Thursday, Apr 2, 2020
-bash: docker-compose: command not found two solutions First, pip installation apt-get python-pip //debian,ubuntu system pip install --upgrade pip pip...
-bash: docker-compose: command not found的两种解决方法 第一种,pip安装 apt-get python-pip //debian,ubuntu系统 pip install --upgrade pip pip install docker-compose yu...
Thursday, Oct 31, 2019
rsync: connection unexpectedly closed 0 bytes received so far sender rsync error: error in rsync protocol data stream code 12 at /BuildRoot/Library/Ca...
Wednesday, May 15, 2019
真的是醉了,竟然有些发行版的Linux系统镜像没有安装crontab, 执行命令就会出现-bash: crontab: command not found ubuntu问题 安装crontab 即可 sudo apt-get install cron
Tuesday, Jan 22, 2019
删除大量文件时,直接用rm有時候会出现 :-bash: /bin/rm: 参数列表过长的错误。 解決方法如下 1、rm -rf 改为: find . -name "" -print | xargs rm -rf 就行了。 2、rm today -rf 改为: find . -name "nic...