WiredWriter.net

Navigation

How to install jEdit Programming Text Editor on Ubuntu (and Debian)

jEdit's official site describes this product as "a mature programmer's text editor with hundreds...of person-years of development behind it. No doubt you will want to review the features of jEdit before deciding if it's right for you.

There are any number of ways to download and install jEdit depending on what platform you run and what methods you are most comfortable with. This tutorial shows you the easiest way to download and install jEdit on Ubuntu or any Debian-based distro.

This tutorial will require that you work on the command-line as root. You will have to edit the /etc/apt/sources.list file and add two repositories in order to download jEdit using apt-get. Here goes.

  1. Open a terminal session.
  2. Type sudo vi /etc/apt/source.list.
  3. Enter your password when prompted.
  4. When the file opens in vi, scroll down to the list of apt repositories.
  5. Place your cursor at the end of the last repository listing and then press the "i" (for "insert") key.
  6. Use the arrow key to move to a new line.
  7. Type the following:

    deb http://www.mirrorservice.org/sites/download.sourceforge.net/pub/
    sourceforge/j/je/jedit/ ./

    deb-src http://www.mirrorservice.org/sites/download.sourceforge.net/pub/
    sourceforge/j/je/jedit/ ./

  8. Press Esc to exit Insert.
  9. Type :wq! to save your changes and quit vi.
  10. Type apt-get update.
  11. Type apt-get install jedit.
  12. When prompted to install, press "y" for "yes".
  13. After jEdit is downloaded and installed, type exit to close the terminal session.

 

Special Thanks to Jennifer for emailing me and letting me know that I needed to update my source URLs

Back to the Top