Open In App

How to Edit Text Files in Linux: Proven 3 Methods

Last Updated : 13 Mar, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Need to tweak a file in Linux but not sure where to start? Editing text files in Linux is a handy skill that can help you fix settings, write scripts, or just note down notes all from your keyboard. This blog is here to help you get started, even if you’re new to Linux. We’ll show you simple ways to edit files without needing any fancy apps.

You’ll learn about easy tools like "nano", "vim", and "Emacs" that work right in the terminal. No hard steps or confusing stuff—just quick tips to help you edit files fast. Whether you’re tweaking something small or starting from scratch, we’ll guide you through it.

how-to-edit-text-files-in-Linux-copy
Edit Text Files in Linux

What is Text File in Linux?

In Linux, a text file is a type of file that stores information as plain text in human-readable characters. Text File or TXT file is a widely compatible text format with a small file size. It doesn't include complex formatting, making it easy for users to create, edit, and view using text editors. Text files commonly end with extensions like .txt. and can be edited with simple text editors.

Using Command-Line Text Editors

Command-line text editors are the preferred tools for file editing for a large number of Linux users. These editors are ideal for making fast edits or working on distant servers because they are lightweight and powerful. Some of the most well-liked command-line editors are listed below:

1. Nano

Nano is a user-friendly text editor that is perfect for beginners. It is easy to use and comes pre-installed on most Linux distributions.

How to edit text files in Linux using Nano:

Step 1: Open the terminal.

Command: Ctrl + Alt + T 

Step 2:Type ` nano filename.txt ` and press Enter.

Step 3:Edit the text file as needed.

Step 4:To save the file, press ` Ctrl + O `, then Enter.

Step 5:To exit Nano, press ` Ctrl + X `.

2. Vim

Vim is a powerful and flexible text editor, widely used by developers and system administrators. It has a steep learning curve but offers advanced features.

How to edit text files in Linux using Vim:

Step 1: Open the terminal.

Command: Ctrl + Alt + T 

Step 2: Type ` vim filename.txt ` and press Enter.

Step 3: Press ` i ` to enter insert mode and start editing.

Step 4:Press Escto exit insert mode.

Step 5: To save and exit, ` type :wq ` and press Enter.

3. Emacs

Emacs is another robust text editor that is highly customizable. It offers a wide range of features, including a built-in file manager and support for multiple programming languages.

How to edit text files in Linux using Emacs:

  • First install Emacs by the writing the command in the terminal :-
 Command: apt  install e3
Emacs
Install Emacs

Step 1: Open the terminal.

Command: Ctrl + Alt + T 

Step 2: Type ` emacs filename.txt ` and press Enter.

Step 3: Edit the file directly

Step 4: To save the file, press ` Ctrl + X ` followed by ` Ctrl + S `.

Step 5: To exit Emacs, press ` Ctrl + X ` followed by ` Ctrl + C `.

Using Graphical Text Editors

If you prefer a graphical interface, Linux also offers several graphical text editors that are user-friendly and feature-rich.

1. Gedit

Within the GNOME desktop environment, Gedit is the default text editor. With plugin support and syntax highlighting, it's easy to use yet extremely effective.

How to edit text files in Linux using Gedit:

  • Locate the text file by opening the file manager and opening it.
  • When you do a right-click on the file, choose "Open with Gedit."
  • Make changes to the file and save it.

2. Kate

The KDE desktop environment includes Kate, a potent text editor. It has sophisticated features like syntax highlighting and enables multiple document editing.

How to edit text files in Linux using Kate:

  • From the apps menu, launch Kate.
  • Drop the text file into the Kate window by dragging it there.
  • After making changes, click "Save" to close the file.

Conclusion

Whether you use a graphical editor like Gedit or Kate, or a command-line editor like Vim, Emacs, or Nano, editing text files in Linux is a simple task. Gaining proficiency with these tools will enable you to effectively manage and edit files on your Linux system, streamlining and increasing productivity.


Article Tags :

Similar Reads