| by Arround The Web

systemd vs. init: Decoding the Linux boot process

Explore the intricacies of the Linux boot process through a detailed comparison of systemd and init. This article sheds light on their functionalities, differences in handling system startup, and the overall impact on system management, helping you gra…

Share Button
Read More
| by Arround The Web

How to Remove All Docker Images

To remove all the Docker images, the user can either use the “docker rmi -f $(sudo docker images -aq)” command or the “docker image prune -a” command.

Share Button
Read More
| by Arround The Web

LibreOffice Alternatives for Linux

LibreOffice is awesome but if you are still looking for some other office, here are some options.

Share Button
Read More
| by Arround The Web

How to Download and Install RHEL 9.3 for Free

Red Hat Enterprise Linux (RHEL) 9.3 is a major release of the enterprise Linux operating system from Red Hat, which was released on November 8, 2023 and comes with a number of new features and enhancements. Learn how to install RHEL 9.3 for free.
The p…

Share Button
Read More
| by Arround The Web

Nano or Vim: Which is the better text editor for Linux?

Compare Nano and Vim, two prominent Linux text editors, in this concise guide. Learn about their features, user-friendliness, and customization capabilities to determine which editor best suits your programming and text editing needs in the Linux envir…

Share Button
Read More
| by Arround The Web

Managing Docker Volumes Using Docker Compose

To manage the volume using Docker Compose, utilize the “volumes” key also specify the volume type, volume source, and target path.

Share Button
Read More
| by Arround The Web

How to Configure Network IP Connections Using ‘nmcli’ in Linux

In this tutorial, we’ll demonstrate how to configure your network connections using nmcli. This saves you time, boosts your confidence, and allows integration into scripts.
The post How to Configure Network IP Connections Using ‘nmcli’ in Linux a…

Share Button
Read More
| by Arround The Web

Yum vs. Dnf: Choosing the right package manager for Linux

This article offers a comprehensive comparison between yum and dnf, two key package managers in the Linux ecosystem. Delve into their functionalities, performance aspects, and unique features to determine which package installer aligns best with your L…

Share Button
Read More
| by Arround The Web

Python String Join() Method

The “string.join()” method of Python is utilized to join/concatenate any given sequences or iterable elements into a string with a custom separator value.

Share Button
Read More
| by Arround The Web

Python String format_map() Method

The “string.format_map()” method retrieves the formatted string by mapping the specified dictionary key value with the particular string.

Share Button
Read More
| by Arround The Web

How to Find the IP Address of a Docker Container?

To find the IP address of container, use “docker inspect cont-name”, “docker network inspect network-name” command, or read the “/etc/hosts” file of container.

Share Button
Read More
| by Arround The Web

Python String find() Method

In Python, the inbuilt “string.find()” method retrieves the first instances of the provided substring in the specified string.

Share Button
Read More
| by Arround The Web

Python String Concatenation Examples

The “+” operator, “%” operator, “join()” method, “format()” method, “format_map()” method, and other methods are used to concatenate strings in Python.

Share Button
Read More
| by Arround The Web

Docker exec -it

The “docker exec -it” is used to access the container shell interactively. The “docker exec” command also supports different options to behave differently.

Share Button
Read More
| by Arround The Web

Python String capitalize() Method

The “string.capitalize()” method is utilized in Python to capitalize the first letter of the string and to convert all other characters to lowercase letters.

Share Button
Read More
| by Arround The Web

Python Platform Module

The “platform” module in Python retrieves information such as system processor name, machine type, platform information, and others.

Share Button
Read More
| by Arround The Web

Python os.getcwd() Method | Explained With Examples

The “os.getcwd()” method of the “os” module is utilized to retrieve the current/present working directory path or location where the Python script is executed.

Share Button
Read More
| by Arround The Web

Python OS Remove

In Python, the “os.remove()” method is utilized to remove/delete the particular file or multiple files placed at the specified path.

Share Button
Read More
| by Arround The Web

Deploy Apache Kafka using Docker Compose

To deploy Kafka, configure Kafka and zookeeper service in “docker-compose.yml” file. After that, start Apache Kafka using the “docker-compose up” command.

Share Button
Read More
| by Arround The Web

Shotwell updated to 0.32.3 with Some Fixes

Shotwell photo viewer and organizer released new 0.32.3 version a day ago with minor updates. The release came with some bug-fixes and minor changes, they include: Fix asking twice on closing viewer with modified image Do not try to reload photo on shutdown Do not abort if new thumbnail size does not exist Open fullscreen […]

Share Button
Read More