How to install yaourt in Arch Linux

Yaourt is a package manager for Arch Linux and its derivatives such as Manjaro Linux. It extends the functionality of the pacman package manager by providing support for the installation of packages from the Arch User Repository (AUR). To install yaourt on Arch Linux, follow these steps: Install base-devel package: Before you can install yaourt, … Read more

How to change the screenshots save file location in MacOS X

To change the screenshots save file location in macOS X, follow these steps: Open Terminal: You can find Terminal by searching for it using Spotlight, or you can find it in the Utilities folder within the Applications folder. Enter the following command: defaults write com.apple.screencapture location ~/Desktop/Screenshots Replace ~/Desktop/Screenshots with the desired save file location … Read more

How to compile and install Tarsnap on a Ubuntu/Debian Linux

To compile and install Tarsnap on an Ubuntu/Debian Linux system, follow these steps: Install dependencies: Tarsnap requires several libraries and tools to be installed on your system before you can compile and install it. To install these dependencies, run the following command: sudo apt-get install build-essential libssl-dev zlib1g-dev libcurl4-openssl-dev Download the Tarsnap source code: You … Read more

Ubuntu Linux Install GNU GCC Compiler and Development Environment

To install the GNU GCC compiler and development environment on Ubuntu Linux, follow these steps: Update the package list: sudo apt-get update Install the build-essential package: The build-essential package includes the GCC compiler and a number of other development tools. To install this package, run the following command: sudo apt-get install build-essential Verify the installation: … Read more

Linux find process by name

You can find a process by its name in Linux using the ps and grep commands. Here’s an example of how to find a process by its name: ps -ef | grep process-name The ps -ef command lists all running processes on the system, and the grep command filters the output to show only the … Read more