Increase Font Size in Emacs on Linux
Practical guide on the methods to increase the font size in Emacs on Linux using the key combinations, adjusting the current buffer, and a permanent solution.
Read MorePractical guide on the methods to increase the font size in Emacs on Linux using the key combinations, adjusting the current buffer, and a permanent solution.
Read MoreTutorial on how to configure multiple NetworkManager connection profiles for the same network interface on Linux and how to switch between them when needed.
Read MoreHow to enable or disable the WiFi network devices from the command line on modern Linux distributions using the NetworkManager to manage the network devices.
Read MorePractical tutorial on how to implement an effective health check in the backend section of the HAProxy configuration file and how it works along with examples.
Read MoreTutorial on how to connect to your WiFi network from the command line on modern Linux distributions using the NetworkManager to manage the network devices.
Read MoreThe post How to Assign Multiple IPs to a Single Network Interface in Linux first appeared on Tecmint: Linux Howtos, Tutorials & Guides .The concept of creating or configuring multiple IP addresses on a single network interface is called IP aliasing, wh…
Read MoreThe post The Power of Linux “History Command” in Bash Shell first appeared on Tecmint: Linux Howtos, Tutorials & Guides .We frequently use the history command in our daily routine jobs to check the history of commands or to get information about comman…
Read MoreThe service and systemctl are two command line utilities used to manage system services and belong to two different init systems, SysV, and systemd respectively.
Read MoreTo restart a service, use the systemctl command with the restart option and the service name. To list all the services use the ls /lib/system/system command.
Read MoreTo restart the network on Linux using the systemctl command, use sudo systemctl restart NetworkManager.
Read MoreTo set the mount point on Linux, first create a mount point and then use the mount command with the -t cifs option.
Read MoreTo mount a Windows NTFS partition on Linux, first identify it using the parted command, create a mount point and then mount the partition using the mount command.
Read MoreThe systemctl reboot command restarts the system in an organized way, since it is part of the system and is more aware of system services.
Read MoreTo view logs of a unit or service after a recent boot use systemctl status unit-name command. To view detailed logs of a unit or service use the journalctl -u unit-name command.
Read MoreThe fdisk, cfdisk, sfdisk, lasblk, blkid, and df are the built-in Linux commands to check the disk partitions.
Read MoreTo switch the boot target on Linux, the systemctl command is used with the set-default option and target file.
Read MoreThe systemctl is a command line utility used to manage system services, while the systemctl status command is used to view the status of a unit.
Read MoreTo show failed units on Linux, the systemctl list-units –state=failed command is used. To fix the failed unit, use systemctl reset-failed command.
Read MoreThe systemctl enable is used to set the service enabled on boot, while the systemctl disable does the opposite.
Read MoreTo start docker on Linux, the systemctl start command is used with sudo. By default, the docker services start on boot.
Read More