新取 是一个跨平台的简单 shell 脚本,它扫描您的系统信息并将其显示在终端中,并在输出旁边显示一个 ASCII 图像或任何所需的图像。 显示的一些信息包括:
- 操作系统
- 内核版本
- 外壳类型
- 安装的软件包数量
- 系统正常运行时间
- 屏幕分辨率
- CPU信息
- GPU细节
- 主题详情
- 内存大小
Neofetch 支持 Linux、Unix、iOS 和 Windows 操作系统。 让我们看看如何在各种 Linux 发行版中安装 Neofetch,例如 Ubuntu、Debian 和 Arch Linux。
如何在 Ubuntu 中安装 Neofetch
Neofetch 可在 Ubuntu 默认存储库. 首先更新您的系统。
$ sudo apt update
现在使用 apt 命令安装 neofetch:
$ sudo apt install neofetch
这个安装了 Neofetch 7.0.0 版本 在我的 Ubuntu 20.04 系统上。
要从 PPA 安装 Neofetch,它仍然可用于 Ubuntu 18.04/20.04 和 Mint 19,首先添加第三方 Neofetch 存储库,如下所示:
add-apt-repository ppa:dawidd0811/neofetch
输出
CLI script to show your system's info and display an image using w3m. More info: https://launchpad.net/~dawidd0811/+archive/ubuntu/neofetch Press [ENTER] to continue or ctrl-c to cancel adding it gpg: keyring `/tmp/tmpipjmo2cm/secring.gpg' created gpg: keyring `/tmp/tmpipjmo2cm/pubring.gpg' created gpg: requesting key 4221BA96 from hkp server keyserver.ubuntu.com gpg: /tmp/tmpipjmo2cm/trustdb.gpg: trustdb created gpg: key 4221BA96: public key "Launchpad PPA for dawidd6" imported gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) OK
更新来源列表
apt-get update
最后,安装neofetch
apt-get install neofetch
要显示系统信息,请运行 neofetch 命令
neofetch
输出
如何在 Debian 中安装 Neofetch
要在 Debian 9 中安装 Neofetch,首先添加第三方 Neofetch 存储库,如图所示
echo "deb https://dl.bintray.com/dawidd6/neofetch jessie main" | sudo tee -a /etc/apt/sources.list
接下来,使用如下所示的命令附加 Neofetch 密钥
curl -L "https://bintray.com/user/downloadSubjectPublicKey?username=bintray" -o Release-neofetch.key && sudo apt-key add Release-neofetch.key && rm Release-neofetch.key
通过使用以下命令更新系统来更新源列表
apt-get update
最后,安装 Neofetch
apt-get install neofetch
要启动 Neofetch,请运行
neofetch
输出
如何在 Arch Linux 中安装 Neofetch
要在 Arch Linux 中安装 Neofetch,您可以使用 yaourt 或 packer 或 pacman 包管理器来安装 Neofetch。
使用 pacman,输入:
pacman -S neofetch
使用 Yaourt,运行:
yaourt -S neofetch-git
或者
yaourt -S neofetch
此命令将克隆 neofetch git 存储库并使用以下命令构建包 mkepkg
使用打包程序运行
packer -S neofetch
或者
packer -S neofetch-git
启动 neofetch 运行
neofetch
输出
如果您希望捕获 neofetch 输出的屏幕截图并将其保存到您的首选位置,请使用 阴囊 工具。
在 Ubuntu、Mint 和 Debian 中,您可以通过运行来安装它
apt -get install scrot
在 Arch Linux 中,这可以通过运行来实现
pacman -S scrot
在下面的示例中,输出的屏幕截图已保存在 /home/pictures 路径中
neofetch --scrot /home/pictures
- 如何在 Ubuntu 18.04 上安装和使用 YouTube-DL
- LF – 功能丰富的 Linux 终端管理器
- Termtosvg – 在 Linux 中记录终端会话的工具
Neofetch 是一个简单的工具,您可以使用它以简单方便的方式显示系统的基本信息。 来试试吧!