This tutorial is about How to configure and install GIMP on AlmaLinux 8 / Rocky Linux 8. Recently I updated this tutorial and will try my best so that you understand this guide. I hope you guys like this blog, How to configure and install GIMP on AlmaLinux 8 / Rocky Linux 8. If your answer is yes after reading the article, please share this article with your friends and family to support us.
Check How to configure and install GIMP on AlmaLinux 8 / Rocky Linux 8
GIMP is one of the best free and open source image editors available for Linux, Windows, OS X, and a few other operating systems. The amount of functionality and tools included that can help you get your job done. You can also change GIMP and you can increase its functionalities with a wide range of plugins.
Prerequisites
- Recommended OS: Rocky Linux 8. +.
- User account: a user account with sudo or root access.
Update operating system
Update your Rocky Linux operating system to make sure all existing packages are up to date:
update sudo dnf –refresh -y
The tutorial will use the sudo command and assume you have the sudo state.
To check the status of sudo in your account:
sudo whoami
Example output showing the status of sudo:
$ sudo whoamiroot
To use the root account, use the following command with the root password to log in.
its
Method 1. Install Git from Appstream
By default, Git is available in the application stream repository and is installed through the DNF package manager. To do this, use the following command:
sudo dnf install git
Type “Y”, then press “ENTER KEY” to continue with the installation.
Once installed, verify the installation:
git –version
Example output:
git version 2.27.0
Congratulations, you have installed Git on Rocky Linux 8 using the dnf manager method.
Method 2. Compile and install Git from source
The tutorial has covered the installation from the application broadcast. However, for those who want the absolute latest version of Git, it is recommended to always install from source. However, it takes a bit longer, but it will always leave you with the newest version available.
As with unstable, you will need to ensure that any security issues are handled; With the source, you can quickly rebuild any urgent updates, making it the best choice for anyone who needs to use the latest version of Git.
Before starting the installation from source, use the su command to log into the root account for this installation.
To get started, install the Git dependencies as follows:
sudo dnf install gettext-devel curl-devel expat-devel openssl-devel perl-CPAN perl-devel zlib-devel unzip cmake gcc make -y
Then visit the release page to find the master zip file or the latest stable version of Git.
At the time of writing, 3.3.0 is the latest stable version. Use the wget command as shown below:
wget https://github.com/git/git/archive/refs/tags/v2.33.0.zip
Use the wget command to get the latest development (master) version:
wget https://github.com/git/git/archive/refs/heads/master.zip -O git-nightly.zip
Please note, do not use this version unless it is unstable and possibly contains bugs.
Next, unzip the file you downloaded:
Example:
sudo unzip v2.33.0.zip
Now you will need to navigate to the directory using the CD command:
cd git-2.33.0
Now you need to run the following make commands to install git:
First command:
sudo make prefix = / usr / local all
Second command:
sudo make prefix = / usr / local install
Now that you have installed Git from source, check the installation and compile:
git –version
Example output:
git version 2.33.0
Congratulations, you have installed Git on Rocky Linux 8 using the build method.
Final remarks: How to configure and install GIMP on AlmaLinux 8 / Rocky Linux 8
I hope you understand this article, How to configure and install GIMP on AlmaLinux 8 / Rocky Linux 8. If your answer is no, you can ask anything via the contact forum section related to this article. And if your answer is yes, please share this article with your friends and family to give us your support.