• XSS.stack #1 – первый литературный журнал от юзеров форума

Questions and Answers: Anything About Linux

blackhunt

(L2) cache
Пользователь
Регистрация
10.05.2023
Сообщения
334
Решения
8
Реакции
338
This is the topic where you can ask any questions you have about Linux, including Bash scripting, or share your cool experiences and tips you’ve learned along the way. Whether you’re struggling with installation issues, looking for the best tools recommendations, or trying to write the perfect Bash script etc. Anyway, let's start, Best regards.
 
bash > zsh
 
htop is an interactive and practical tool for monitoring system resources on Linux and other Unix-like operating systems. Simply put, htop is an advanced, graphical version of the top command, providing a more visual and real-time display of system resource information.

1728289914248.png


Ubuntu, Debian :
Код:
sudo apt update
sudo apt install htop

Fedora :
Код:
sudo dnf install htop

CentOS and Red Hat Enterprise Linux (RHEL):
Код:
sudo yum install epel-release
sudo yum install htop

Arch Linux and derivatives (Manjaro) :
Код:
sudo pacman -S htop

OpenSUSE :
Код:
sudo zypper install htop


Source GitHub for Other distributions :

Enjoy !
 
Did you know you can easily shorten long commands using alias? For example, instead of typing dnf update && dnf upgrade every time, you can create a shortcut like this:

Код:
alias up="dnf update && dnf upgrade"

1728296037548.png
 
Последнее редактирование:


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх