How to Install Pinta on Linux Mint 21 or 20

Pinta is an accessible and efficient image editing software, tailored for both beginners and seasoned users who seek a streamlined graphic editing experience. This guide will demonstrate how to install Pinta on Linux Mint, versions 21 and 20, detailing each step to ensure a smooth setup. Pinta stands out for its user-friendly interface and versatile features, making it a favored choice in the realm of open-source graphics editors.

Key Features of Pinta:

  • Layer Management: Easy handling of layers for complex image editing.
  • Drawing Tools: A comprehensive set of drawing tools, including shapes and freehand.
  • Unlimited Undo/Redo: Offers flexibility by allowing multiple undos.
  • Adjustments and Effects: Wide range of image adjustments and effects.
  • Image Formats Support: Extensive support for various image formats.
  • Multilingual Support: Available in multiple languages, broadening its accessibility.

As we transition into the technical aspects of installing Pinta, you’ll find that the process is straightforward and suitable for users of all technical backgrounds. The subsequent steps will navigate you through downloading, installing, and initial setup, ensuring that Pinta is ready for your image editing tasks on Linux Mint.

Install Pinta on Linux Mint 21 or 20 via APT

APT (Advanced Package Tool) offers a straightforward and efficient way to install software on Debian-based systems, such as Linux Mint. Using APT simplifies the process of managing packages and dependencies, making it a preferred choice for Linux Mint users.

Step 1: Update Linux Mint Before Pinta Installation

It’s essential to begin by updating your Linux Mint system. This step ensures all existing packages are current, minimizing potential conflicts during the installation of new software. Regular updates also enhance your system’s stability and security.

To update your system, execute the following command in the terminal:

sudo apt update && sudo apt upgrade

This command first updates the list of available packages and their versions (sudo apt update) and then upgrades all the outdated packages to the latest versions (sudo apt upgrade).

Step 2: Install Pinta via APT Command

Once your system is updated, you can proceed to install Pinta. The APT package manager facilitates this by fetching Pinta from Linux Mint’s default software repository.

To install Pinta, run:

sudo apt install pinta

This command searches for the Pinta package in the repositories, downloads it, and installs it along with any required dependencies.

Install Pinta on Linux Mint 21 or 20 via Flatpak and Flathub

Flatpak, a versatile package manager, offers an alternative method for installing software on Linux distributions. It’s recognized for its focus on security and isolation of applications. For Linux Mint users, Flatpak, especially in conjunction with Flathub, is often the preferred choice over Snapcraft due to its broad compatibility and security features.

Step 1: Enable Flathub Before Pinta Installation

Before installing Pinta, it’s crucial to add the Flathub repository to your system. Flathub is a widely-used Flatpak repository that hosts a multitude of applications, providing users with an extensive selection of software.

To enable Flathub on your Linux Mint system, use the following command in your terminal:

sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

This command checks if the Flathub repository is already added (--if-not-exists) and adds it if it’s not present. Adding Flathub is a one-time setup that allows you to access and install applications from this repository easily.

Step 2: Install Pinta via Flatpak Install Command

With Flathub enabled, you can now proceed to install Pinta. The Flatpak command line interface offers a straightforward method to install applications from Flathub.

To install Pinta, execute:

flatpak install flathub com.github.PintaProject.Pinta -y

This command instructs Flatpak to install Pinta (com.github.PintaProject.Pinta) from the Flathub repository (flathub). The -y flag automatically answers ‘yes’ to prompts, streamlining the installation process.

Launch Pinta on Linux Mint 21 or 20

Launching Pinta can be done in a few ways now that you have the software installed.

CLI Commands to Launch Pinta

First, in your terminal, type the following command to launch Pinta immediately:

pinta

Alternatively, Flatpak users will need to launch Pinta using the command below from a terminal instance:

flatpak run com.github.PintaProject.Pinta

GUI Method to Launch Pinta

However, this is not practical for everyday use, and you would typically launch Pinta using the following path on your desktop:

Taskbar > Graphics > Pinta
Pinta application icon in the Linux Mint menu
Locate Pinta icon in Linux Mint’s menu

First-Time Tips for Pinta on Linux Mint 21 or 20

In this section, we’ll provide you with useful tips and tricks to help you get started with Pinta on Linux Mint. We’ll cover general tips, customizations, and other useful information to enhance your experience with Pinta.

General Pinta Tips on Linux Mint

  • Keyboard shortcuts: Pinta offers various keyboard shortcuts to increase your productivity. Some common shortcuts include:
    • Ctrl + Z: Undo
    • Ctrl + Y: Redo
    • Ctrl + S: Save
    • Ctrl + C: Copy
    • Ctrl + V: Paste
    • Ctrl + T: Transform
    • Ctrl + D: Deselect
  • Zoom in/out: Use the mouse scroll wheel or the Ctrl + ‘+’ and Ctrl + ‘-‘ keyboard shortcuts to zoom in and out of your canvas.
  • Gridlines: To enable gridlines, navigate to View in the menu bar and select Show Grid. This can help you align objects and maintain precision in your designs.

Pinta Customizations on Linux Mint

  • Change theme: Pinta allows you to change its theme to better suit your preferences. Navigate to Edit > Preferences > Appearance and select your desired theme from the dropdown menu.
  • Customize toolbar: To customize the toolbar, right-click on it and select Customize Toolbar. From there, you can add or remove buttons, as well as rearrange them to fit your workflow.
  • Adjust canvas checkerboard: By default, Pinta displays a checkerboard pattern for the transparent background of an image. You can adjust the checkerboard size or disable it entirely by going to Edit > Preferences > Canvas.

Other Pinta Tips on Linux Mint

  • Working with layers: Pinta supports layer-based editing, allowing you to separate different elements of your image for easier manipulation. You can add, delete, or rearrange layers using the Layers window, located on the right side of the Pinta interface.
  • Using the toolbox: Pinta provides a variety of tools for drawing and editing images. The toolbox, located on the left side of the interface, includes tools such as a paintbrush, eraser, text tool, and selection tools. Click on a tool to activate it and use it on your canvas.
  • Saving your work: To save your work, navigate to File > Save As in the menu bar. Pinta supports several file formats, including PNG, JPEG, BMP, and its native ORA format, which preserves layer information.

Remember to explore the various menus and options available within the software to discover additional features that can enhance your image editing experience.

Pinta open on Linux Mint desktop
Pinta image editor open and ready on Linux Mint

Managing Pinta on Linux Mint 21 or 20

Update Pinta on Linux Mint

Keeping Pinta up-to-date is important to ensure you have the latest features, bug fixes, and security updates. Depending on the method of installation used, follow the appropriate steps below to update Pinta:

APT Update Method for Pinta

For users who installed Pinta using APT, run the following command to update Pinta along with the other packages on your system:

sudo apt upgrade && sudo apt upgrade

Flatpak Update Method for Pinta

For users who installed Pinta using Flatpak, enter the following command to update only Pinta:

flatpak update

Remove Pinta from Linux Mint

If you no longer require Pinta, use one of the following commands to remove the application, depending on your original installation method:

APT Remove Method for Pinta

For users who installed Pinta with APT, run the following command to remove Pinta from your system:

sudo apt remove pinta

Flatpak Remove Method for Pinta

For users who installed Pinta with Flatpak, enter the following command to remove Pinta and its associated data:

flatpak uninstall --delete-data com.github.PintaProject.Pinta

Using these commands, you can effectively manage Pinta on your Linux Mint system, ensuring you have the latest version or removing it when necessary.

Conclusion: Installing Pinta on Linux Mint

In conclusion, this guide provided you with clear, step-by-step instructions for installing Pinta on Linux Mint 21 or 20. We explored two robust methods: using APT for a quick and direct installation, and employing Flatpak with Flathub for a more secure and isolated approach. Each method has its merits, and your choice depends on your preferences and system requirements

Remember, keeping your system updated before any installation is crucial for both performance and security. With Pinta now installed, you’re all set to dive into your image editing projects, leveraging the simplicity and versatility of this fantastic software on your Linux Mint system.

Leave a Comment