158 articles
Tuesday, Aug 24, 2021
修改 /etc/sysctl.conf 文件 添加以下内容 net.ipv6.conf.all.disableipv6=1 net.ipv6.conf.default.disableipv6=1 net.ipv6.conf.lo.disableipv6=1 执行 sysctl -p 使设置生效 懒人...
Thursday, Aug 19, 2021
Restrictions on logged-in users Edit the configuration file of the SSH service vim /etc/ssh/sshdconfig Modify the content of this line to prohibit Roo...
Wednesday, Aug 18, 2021
WindTerm 完全免费用于商业和非商业用途,没有限制。 所有发布的源代码(第三方目录除外)均在 Apache-2.0 许可条款下提供。 下载 Linux 二进制文件、MacOS 二进制文件和Windows 二进制文件: https://github.com/kingToolbox/WindT...
Friday, May 14, 2021
查看下当前debian系统版本 lsbrelease -a 更新: apt-get update && apt-get upgrade 备份旧的镜像地址文件: cp /etc/apt/sources.list /etc/apt/sources.list.orig 修改/etc/apt/sources...
Wednesday, May 12, 2021
Kernel driver not installed rc=-1908 Make sure the kernel module has been loaded successfully. where: suplibOsInit what: 3 VERRVMDRIVERNOTINSTALLED -1...
Wednesday, Apr 28, 2021
Solution for mac os youtube-dl zsh: no matches found: Just add single quotes to the target URL parameter. For example, the following demo is the corre...
Monday, Apr 26, 2021
neofetch的主要目的是在屏幕截图中使用, 以向其他用户显示您正在使用的操作系统或Linux发行版, 包括主题,图标,硬件配置等。 该命令在终端显示有关系统的信息,操作系统徽标和其他信息 >Neofetch是用bash 3.2+编写的命令行系统信息工具。 Neofetch以美观和视觉愉悦的方式...
Tuesday, Apr 20, 2021
Mac 系统youtube-dl zsh: no matches found:的解决方法 给目标URL参数加上单引号即可。。。比如下面的演示才是正确的, youtube-dl 'https://www.domain.com/watch?v=XNHGpzAdNI' 搞定~
Wednesday, Apr 14, 2021
ncdu工具可以直觀磁盘使用情况 查看文件目录树的大小,包括Linux和macOS等类Unix系统上所有目录树的内容和单个文件的大小。 它有助于空間存儲監控。换句话说,我们可以列出在硬盘驱动器上占用大量空间的目录和文件 下面是ncdu工具的安裝 Debian / Ubuntu Linux或基於Deb...
Monday, Apr 5, 2021
Linux系统怎样添加web运行账户? 为了系统相对安全一点,运行web的程序都需要一些特殊的低权限账户来运行 下面是添加的方法 groupadd www useradd -g www -M -s /sbin/nologin www 添加www用户到www组并且不创建用户目录,不可...