How to Install Kate on Fedora Linux
Kate is a free, open-source, multi-document, multi-view text editor developed by KDE. It has many useful features for programmers and other power users, including code folding, syntax highlighting, dynamic word wrap, an embedded console, an extensive plugin interface, and some preliminary scripting support. In the following tutorial, you will learn how to install Kate Text Editor on Fedora Linux using the command line terminal with various installation options to install the text editor.
Update Fedora
First, update your system to ensure all existing packages are up to date.
sudo dnf upgrade --refresh
Install Kate Text Editor — Terminal Method
The first method will use the command line terminal to install Kate. Given that Fedora is a six-monthly release cycle that constantly releases updates to new packages during its duration, most often, you should have the latest version of Kate installed.
Use the following command to install the text editor.
sudo dnf install kate -y
Install Kate Text Editor — GUI Method
The second method is for users that do not like to use the command line terminal that much and prefer using the software center to install their applications.
First, open the Software store, which can be found using the following path Activities > Show Applications > Software.
Example:
Advertisement
Next, search for Kate using the search bar and enter “Kate.” Once you have found the application, click on the result.
Example:
Next, click the “Install” button in the top right-hand corner.
Example:
How to Launch Kate
With the installation complete, you can run Kate in a few different ways.
First, while in your terminal, you can use the following command.
kate
Most users would use the application icon using the path.
Advertisement
Activities > Show Applications > Kate.
Example:
Once open, you will arrive at the default launch screen.
Example:
The good idea is to modify the default color scheme. By default, Kate Text Edit comes with a few color theme options, and these settings can be found in the configuration menu.
Example:
Additional Commands & Tips
How to Update Kate
Users should use terminal commands to check for Kate’s and other system updates.
Advertisement
sudo dnf update --refresh
Optionally, updates for GUI installations can be found in the software center unless your Fedora system has not prompted you to update it.
How to Remove Kate
To remove the Kate software from your system, run the following command in your terminal.
sudo dnf autoremove kate -y
GUI installations can remove Kate from the Software store under “Installed” applications.
Example:
Conclusion
The small tutorial taught you how to install Kate on Fedora Linux using either the cli command or the Software store. If you have any other text editors in mind you would like to see featured, leave me a comment so I can check them out.