Python Regex Examples
Comprehensive guide on the purpose of the most commonly used metacharacters, ranges, and Python built-in functions to search, replace, and split the strings.
Read MoreComprehensive guide on the purpose of the most commonly used metacharacters, ranges, and Python built-in functions to search, replace, and split the strings.
Read MoreGuide on the methods and techniques that you can use to add days to a given date using various SQL databases such as MySQL, PostgreSQL, SQL Server, and Oracle.
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 connect DS3231 with ESP32, you have to use the I2C protocol. The SDA and SCL pins of RTC modules are connected to GPIO 21 and 22 of the ESP32 respectively.
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 MoreHashcat is a pre-install Kali Linux password cracking tool that permits ethical hackers to crack the password and also helps in recovering forgotten user passwords. It can crack even complex passwords in very little time.
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 control ESP32 from an Android phone via Bluetooth, first install the Bluetooth Serial Android application and pair your ESP32 from the phone settings.
Read MoreTo start docker on Linux, the systemctl start command is used with sudo. By default, the docker services start on boot.
Read MoreA service can be masked using the systemctl mask command with the service name. A masked service is permanently disabled.
Read MoreThere are three methods to list serial ports on Linux, through /sys/class directory, using dmesg command, or using Cutecom GUI application.
Read More