Linuxhandbook.com

lshw Command in Linux: Get Hardware Details

Web1. Show network information. To display the network information, you'd have to use the -C to specify the class and the network as shown: sudo lshw -C network. As …

Actived: 9 days ago

URL: https://linuxhandbook.com/lshw-command/

How to Use Fsck Command in Linux (to Repair File System)

WebThe fsck command follows a pattern similar to most Linux commands. fsck [options] [filesystem] If you do not specify a filesystem, the system will analyze your fstab file ( …

Category:  Health Go Health

How to Check CPU Usage in Linux Command Line

Webtop command. This is probably the most common way and the most known by any Linux administrator. This simple command can provide not only CPU but also …

Category:  Health Go Health

30 Free Linux Server Monitoring Tools & Services

WebBest described by the developer on GitHub, Cabot is a free, open-source, self-hosted infrastructure monitoring platform that provides some of the best features of …

Category:  Health Go Health

Use Systemctl Status Command to Check Service Status

WebAnd same goes for checking the status of the service. Here, you'd have to use the status flag with the systemctl command as shown: systemctl status <service …

Category:  Health Go Health

What is BusyBox in Linux

WebPull the official docker image: docker pull busybox. Run a container from the image and enter the BusyBox shell: docker run -it --rm busybox. Every Linux command …

Category:  Health Go Health

Schedule Jobs in Linux With 'at' Command

WebThe at command in Linux can be used to schedule jobs that do not run on a regular schedule. At can be compared with the concept of Crontab in Linux, which is a …

Category:  Health Go Health

Load balancing with HAProxy, Nginx and Keepalived in Linux

WebUse the cd command to go to the directory and backup the file before edit. cd /etc/haproxy/. mv haproxy.cfg haproxy.cfg_bac. Create a new haproxy.cfg file and open …

Category:  Health Go Health

How to Create Symbolic Links in Linux [Complete Guide]

WebTo create a symbolic link to target file from link name, you can use the ln command with -s option like this: ln -s target_file link_name. The -s option is important …

Category:  Health Go Health

Linux File Permissions and Ownership Explained with Examples

Webchgrp <new_user_group> <filename>. In our example so far, if you want to change the user owner and group to root, you can use the chown command like this: …

Category:  Health Go Health

6 Different Ways to List Disks in Linux Command Line

Web2. fdisk. fdisk is another common option among sysops. It currently lists the different partitions (which is related to hard drives as a hard drive can be divided into …

Category:  Health Go Health

ls Command in Linux: 17 Useful Examples Explained

WebThe ls command is one of the first commands we learn when discovering the shell. And after that, whatever is your skill level, it will remain one of the most often used. Despite that …

Category:  Health Go Health

Monitoring Docker Containers With Grafana Using Dockprom

Webstefanprodan/dockprom. Docker hosts and containers monitoring with Prometheus, Grafana, cAdvisor, NodeExporter and AlertManager - …

Category:  Health Go Health

Disk Management Commands

WebYour Linux system may have multiple disks (HDD or SSD). These disks may be divided into partitions. The partitions are generally called devices in Linux. The commands mentioned …

Category:  Health Go Health

Useful Examples of the Docker ps Command

WebOne of the first Docker commands you use is the docker ps command. It shows the running containers: docker ps. Actually, running this command gives you a list …

Category:  Health Go Health

How to Clear Systemd Journal Logs in Linux

WebClearing systemd journal logs. First, check the space taken by journal logs with the du command: du -sh /var/log/journal/. You can also use the journalctl command …

Category:  Health Go Health

Upgrading Proxmox version

Webapt update. 6.) Update the system to Debian Bookworm and Proxmox VE 8.0: apt dist-upgrade. The time for this command to complete depends on the processing power of …

Category:  Health Go Health