How to Find Files with Extension in Linux

As a Linux user, you might need to locate files with specific extensions for various reasons, such as managing configurations, troubleshooting, or scripting. For example, finding .ini files can help you manage settings for multiple applications. You can do it using the find command. In … Read more

How to Mount Windows Share in Linux

In the Windows operating system, there is a feature called file sharing. On one computer, you can set up windows-shared folder that will be accessible to all computers on the local network. This is done using the SMB protocol, which has several versions. In Linux, … Read more

How to Open Looking Glass in GNOME

Most browsers come equipped with developer tools that enable the inspection of page elements and execution of JavaScript code live on the page itself. Interestingly, parts of the GNOME desktop environment are also written in JavaScript, including the GNOME Shell and its extensions. Thus, there … Read more

How to Restart Service in Linux

You can use the restart command to restart Systemd services. This command stops the service and then starts it back. Or it just starts the service if it is not running. For example, you can restart the Nginx web server using this command: If everything … Read more

How to Copy Hidden Files in Linux

Sometimes, you might need to copy hidden files or folders from one location to another. In Linux, hidden files are characterized by a period (.) as the first character of their name. A common example would be copying a user’s home directory or a directory … Read more

How to Find Folder by Name in Linux

You may often need to locate specific directories for various purposes, such as finding configuration, identifying folders containing backup data, or searching for project-related directories. One of the most efficient ways to find a directory by name is using the ‘find’ command. In this short … Read more

How to Find File in Linux

In Unix operating systems and Linux all objects are files. It means that files are used not only for saving user data and system configuration, but different system management and communication mechanisms are based on files too. Therefore, searching for files is very important, and … Read more

23 Things to Do After Installing Ubuntu 23.04

I explained how to install Ubuntu 23.04 in a previous article and today I want to continue this topic. It looks pretty good after installation, but there are several things you can do to make it even better. For example, you can personalize the GNOME … Read more

How to Install Ubuntu 23.04

It is the end of April 2023 and it means that it’s time for a new Ubuntu release. It is Ubuntu 23.04. This release does not have long-term support, so it may not be as stable. However, it ships several long-awaited improvements, such as the … Read more

How to Find File by Content in Linux

Sometimes, you may need to find a file containing a specific string or find a line in a text file where a particular word is present. This can be useful for searching logs, locating configuration files if you don’t know where they are, or find … Read more