那个 Linux 命令是什么?它可以在终端中为您提供包含操作系统的 ASCII 图标图像的紧凑系统摘要?

那个 Linux 命令是什么?它可以在终端中为您提供包含操作系统的 ASCII 图标图像的紧凑系统摘要?

什么 Linux 命令可以为您提供紧凑的小信息摘要,例如操作系统、CPU、RAM、温度等,并且还在终端中包含操作系统的 ASCII 图标图像?

我以前用过它,但现在我无论如何也想不起来它了。

有人吗?Bueller?

答案1

您很可能正在寻找neofetch。要安装它,首先更新您的软件包存储库:

sudo apt update

然后运行:

sudo apt install neofetch

之后你可以运行:

neofetch

以获取您想要的摘要,它应该类似于以下内容(我现在在 Fedora 机器上,但这并没有什么区别):

neofetch 截图

更多选项请参见man neofetch

答案2

一个很好的替代方案neofetch屏幕抓取

您可以克隆 github repo,从现有的 Ubuntu repos 中获取它,或者添加screenfetch ppa

sudo apt update
sudo apt install screenfetch

配置说明在 github 页面上。

答案3

还有另一个绝佳选择:快取这是较旧neofetch。这将生成 ascii 图像和您需要的大多数系统详细信息:

在此处输入图片描述

重要的是,开发商还为 LGBTQ+ 社区的人们提供了一个用色彩表达自己的机会,也为那些支持他们的人提供了机会同样的机会

在此处输入图片描述

我的图像是从我的 Slackware 设置中提取的,但 HyFetch 可以在 Ubuntu 上轻松安装(使用我的老朋友 pipx):

sudo apt-get install pip python3.10-venv
python3 -m pip install --user pipx
python3 -m pipx ensurepath
source ~/.profile 
pipx install hyfetch

在 Jammy Jellyfish 上进行了测试,一切运行非常非常顺利......

答案4

对于这种事情我的处理方式是inxi

$ inxi
CPU: quad core 11th Gen Intel Core i7-1165G7 (-MT MCP-)
speed/min/max: 2598/400/4700 MHz Kernel: 5.19.2-arch1-1 x86_64 Up: 2d 5h 33m
Mem: 9599.6/31799.3 MiB (30.2%) Storage: 953.87 GiB (27.9% used) Procs: 377
Shell: Bash inxi: 3.3.20

没有 ASCII 艺术,但有很多有用的选项。-F例如对于“完整”:

$ inxi -F
System:
  Host: oregano Kernel: 5.19.2-arch1-1 arch: x86_64 bits: 64
    Desktop: Cinnamon v: 5.4.9 Distro: Arch Linux
Machine:
  Type: Laptop System: LENOVO product: 20VX000FUK v: ThinkPad P14s Gen 2i
    serial: <superuser required>
  Mobo: LENOVO model: 20VX000FUK v: SDK0J40697 WIN
    serial: <superuser required> UEFI: LENOVO v: N34ET51W (1.51 )
    date: 06/10/2022
Battery:
  ID-1: BAT0 charge: 42.2 Wh (79.6%) condition: 53.0/51.0 Wh (104.0%)
CPU:
  Info: quad core model: 11th Gen Intel Core i7-1165G7 bits: 64 type: MT MCP
    cache: L2: 5 MiB
  Speed (MHz): avg: 1895 min/max: 400/4700 cores: 1: 908 2: 2800 3: 2800
    4: 2800 5: 902 6: 1008 7: 2800 8: 1143
Graphics:
  Device-1: Intel TigerLake-LP GT2 [Iris Xe Graphics] driver: i915 v: kernel
  Device-2: NVIDIA TU117GLM [Quadro T500 Mobile] driver: nvidia
    v: 515.65.01
  Device-3: Chicony Integrated Camera type: USB driver: uvcvideo
  Display: x11 server: X.Org v: 21.1.4 with: Xwayland v: 22.1.3 driver: X:
    loaded: intel unloaded: modesetting gpu: i915 resolution: 1920x1080~60Hz
  OpenGL: renderer: llvmpipe (LLVM 14.0.6 256 bits) v: 4.5 Mesa 22.1.6
Audio:
  Device-1: Intel Tiger Lake-LP Smart Sound Audio
    driver: sof-audio-pci-intel-tgl
  Sound Server-1: ALSA v: k5.19.2-arch1-1 running: yes
  Sound Server-2: PipeWire v: 0.3.56 running: yes
Network:
  Device-1: Intel Ethernet I219-V driver: e1000e
  IF: enp0s31f6 state: down mac: 84:a9:38:e4:c1:e0
  Device-2: Intel Wi-Fi 6 AX210/AX211/AX411 160MHz driver: iwlwifi
  IF: wlp9s0 state: up mac: 70:cd:0d:57:0a:6c
Drives:
  Local Storage: total: 953.87 GiB used: 265.68 GiB (27.9%)
  ID-1: /dev/nvme0n1 vendor: Samsung model: MZVLB1T0HBLR-000L7
    size: 953.87 GiB
Partition:
  ID-1: / size: 55.38 GiB used: 40.82 GiB (73.7%) fs: ext4
    dev: /dev/nvme0n1p5
  ID-2: /home size: 668.36 GiB used: 224.75 GiB (33.6%) fs: ext4
    dev: /dev/dm-0
Swap:
  ID-1: swap-1 type: partition size: 29.95 GiB used: 110.8 MiB (0.4%)
    dev: /dev/nvme0n1p7
Sensors:
  System Temperatures: cpu: 61.0 C mobo: N/A
  Fan Speeds (RPM): cpu: 65535 fan-1: 2863 fan-2:
Info:
  Processes: 381 Uptime: 2d 5h 34m Memory: 31.05 GiB used: 9.43 GiB (30.4%)
  Shell: Bash inxi: 3.3.20

您可以使用 在 Ubuntu 上安装它sudo apt install inxi

相关内容