In this tutorial you will learn how to install and use gedit on Linux Mint/Ubuntu Desktop. I will show you how to install gedit package and how to open gedit with or without an existing file.
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# gedit Install and usage on Linux Mint/Ubuntu Desktop # Text Editor (gedit) is the default GUI text editor in the Ubuntu/Linux Mint operating system # Install sudo apt-get install gedit # Open gedit Start Accesories/Text Editor Search for "gedit" Alt+F2: gedit cd ~/Desktop/ ls gedit file-1.txt gedit file-1.txt file-2.txt gedit file-2.txt file-1.txt gedit file-3.txt gedit file-2.txt # Open at a specific line number # Useful when an error message includes the line number gedit +5 file-1.txt Useful links: https://help.ubuntu.com/community/gedit https://wiki.gnome.org/Apps/Gedit |
Useful links:
https://help.ubuntu.com/community/gedit
https://wiki.gnome.org/Apps/Gedit