2

How can xterm 256 be enabled in ubuntu 8.04? I was able to get that working in 9.10, but not 8.04.

Pops
  • 8,393
  • 29
  • 76
  • 95
michael
  • 5,755
  • 24
  • 66
  • 83
  • michael, any update on your issue? did the answer below help at all? if it didn't can you edit the question and update with what you tried and what effect it had? – quack quixote Apr 29 '10 at 19:51

3 Answers3

3

I found that simply placing this in either your .bash_profile or .profile (if the former doesn't exist) works for me:

export TERM="xterm-256color"

Then either open a new terminal session or source the profile file source ~/.bash_profile. I'm assuming you use bash, but this will probably work for most shell type dot files.

sa125
  • 986
  • 2
  • 15
  • 22
  • Thank you! Worked perfectly in Ubuntu 11.10. edit: doh but it had side effects in Vim. Why on earth doesn't Ubuntu enable this by default so that we don't have to make these hacks? – Gerry Jul 09 '12 at 20:35
2

It looks like Hardy (Ubuntu 8.04) doesn't provide the terminfo entry (/usr/share/terminfo/x/xterm-256color) in the default ncurses packages. Karmic provides this entry in the ncurses-base package (Karmic, Hardy), but Hardy provides it in the ncurses-term package (Hardy).

I found this article on enabling 256-Color Xterms in Ubuntu. To enable:

  1. Install ncurses-term: sudo aptitude install ncurses-term

  2. Customize the xterm entries; add this to ~/.Xdefaults:

    *customization: -color
    XTerm*termName: xterm-256color
    
  3. Add this to ~/.xsession to apply to new terminals:

    if [ -f $HOME/.Xdefaults ]; then
       xrdb -merge $HOME/.Xdefaults
    fi
    
  4. Log out and back in to pick up all changes, or just run xrdb -merge ~/.Xdefaults

  5. Open a new xterm and test with tput and echo $TERM; you should see the following output:

    $ tput colors
    256
    $ echo $TERM
    xterm-256color
    

    If you do, you're good to go.

Additionally, some applications will need special configuration to take advantage of the new capabilities.

quack quixote
  • 42,186
  • 14
  • 105
  • 129
1

This should be a comment on sa125's answer but I don't have enough rep.

Archlinux's wiki entry on xterm says the following about the TERM environmental variable:

Allow xterm to report the TERM variable correctly. Do not set the TERM variable from your ~/.bashrc or ~/.bash_profile or similar file. The terminal itself should report the correct TERM to the system so that the proper terminfo file will be used. Two usable terminfo names are xterm and xterm-256color. To set the name, use the resource

XTerm.termName: xterm-256color

So you probably want to set this variable from the .Xresources file instead of .bashrc or .profile

miique
  • 11
  • 3