Muffinresearch Labs by Stuart Colville

Ubuntu: change editor globally | 1 Comment

Posted in Code, Linux/Unix on 7th October 2008, 6:43 am by

I found the update-alternatives on my travels and very handy it is too especially when on a bytemark box by default the editor is set to “joe”. From the man page:

update-alternatives creates, removes, maintains and displays information about the symbolic links comprising the Debian alternatives system.

It is possible for several programs fulfilling the same or similar functions to be installed on a single system at the same time. For example, many systems have several text editors installed at once. This gives choice to the users of a system, allowing each to use a different editor, if desired, but makes it difficult for a program to make a good choice of editor to invoke if the user has not specified a particular preference.

Debian’s alternatives system aims to solve this problem. A generic name in the filesystem is shared by all files providing interchangeable functionality. The alternatives system and the system administrator together determine which actual file is referenced by this generic name. For example, if the text editors ed(1) and nvi(1) are both installed on the system, the alternatives system will cause the generic name /sw/bin/editor to refer to /sw/bin/nvi by default. The system administrator can override this and cause it to refer to /sw/bin/ed instead, and the alternatives system will not alter this setting until explicitly requested to do so.

To change the editor

sudo update-alternatives --config editor

There are 8 alternatives which provide `editor'.

  Selection    Alternative
-----------------------------------------------
*         1    /usr/bin/vim.tiny
          2    /bin/nano
 +        3    /usr/bin/joe
          4    /usr/bin/jmacs
          5    /usr/bin/jstar
          6    /usr/bin/jpico
          7    /usr/bin/rjoe
          8    /usr/bin/vim.basic

Press enter to keep the default[*], or type selection number: 

Done!

Post Tools

GNU screen: open tab in current working directory|(1)

A nice trick for having screen open a new tab in the same directory as the one you’re currently in. To use it add it to your .screenrc

# Open new window in current dir.
bind c stuff "screen -X chdir \$PWD;screen^M"
bind ^c stuff "screen -X chdir \$PWD;screen^M"

Hat tip: mteckert on SuperUser.com

Ubuntu: add-apt-repository: command not found|(3)

When you’re using a minimal Ubuntu install if you find the ‘add-apt-repository’ command is missing (it’s useful for adding PPAs and other repositories), then simply run:

sudo apt-get install python-software-properties

Photos on Flickr

© Copyright 2004-12 Stuart Colville, all rights reserved. May contain traces of Muffin. Powered by WordPress. Hosting by Slicehost.com This page was baked in 0.451s.