DEV Community

ダニエリ for WoMakersCode

Posted on

4 1

[Tutorial Linux] Terminal: Verificando informações do sistema

O comando:

$ uname -a
Enter fullscreen mode Exit fullscreen mode

retorna informações referentes ao sistema.

  • $ indica que você deve usar o usuário comum para fazer essa operação.

  • -a do inglês, all, para retornar todas as informações.

No meu caso, temos o seguinte retorno:

Linux linux 5.4.0-42-generic #46~18.04.1-Ubuntu SMP Fri Jul 10 07:21:24 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Enter fullscreen mode Exit fullscreen mode

nome do Kernel

O primeiro item é o nome do Kernel do sistema. Para que seja mostrado na tela apenas ele, digite:

$ uname -s
Enter fullscreen mode Exit fullscreen mode

Ou

$ uname
Enter fullscreen mode Exit fullscreen mode

Sem qualquer argumento.

nome da máquina

O segundo item é o nome da máquina, dado no momento da instalação. Para que seja mostrado na tela apenas ele, digite:

$ uname -n
Enter fullscreen mode Exit fullscreen mode

versão kernel release

O terceiro item é a versão de lançamento do Kernel. Para que seja mostrado na tela apenas ele, digite:

$ uname -r
Enter fullscreen mode Exit fullscreen mode

versão atual kernel

O quarto item é a versão atual do Kernel. Para que seja mostrado na tela apenas ele, digite:

$ uname -v
Enter fullscreen mode Exit fullscreen mode

arquitetura

O quinto item é a arquitetura de hardware da máquina. Para que seja mostrado apenas ela na tela, digite:

$ uname -m
Enter fullscreen mode Exit fullscreen mode

tipo de processador

O sexto item é o tipo de processador. Para que seja mostrado apenas ele na tela, digite:

$ uname -p
Enter fullscreen mode Exit fullscreen mode

plataforma de hardware

O sétimo item é a plataforma de hardware. Para que seja mostrado apenas ela na tela, digite:

$ uname -i
Enter fullscreen mode Exit fullscreen mode

sistema operacional

O oitavo e último item é nome do sistema operacional da instalado. Para que seja mostrado apenas ele na tela, digite:

$ uname -o
Enter fullscreen mode Exit fullscreen mode

Do your career a big favor. Join DEV. (The website you're on right now)

It takes one minute, it's free, and is worth it for your career.

Get started

Community matters

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay