How to set green screen in Ubuntu?

Go To StackoverFlow.com

1

The default console in Ubuntu are white characters and purple background. I want to change it to green characters and black background, just like the old computer screens. I want to set all stuff to be green, including all files listed by "ls".(In the original console, different files may be shown in different colors, I do not want that).

What is more, how to set green characters in pure character environment? (Suppose I do not install X to my OS.)

Thanks a lot for your help.

2012-04-04 03:19
by Sean
As soon as I answered, I notice that this question may not be stack overflow specific. Though I like any software related questions, I leave it up to admins to take a call - ring bearer 2012-04-04 03:58


1

Just edit your terminal profile.

gnome-terminal: Edit -> Profiles -> Edit
konsole: Settings -> Configure Profiles

2012-04-04 07:15
by Mihai


0

Bash shows color in ls output using an alias. You can unset that command alias. run unalias ls from command line, and colors in list command will become monochrome. Add this line to your .bashrc file or .bashprofile so that it is set across your login sessions.

Changing console colors is very basic, a quick google will give you all steps what you need. For example this link.

2012-04-04 03:55
by ring bearer
Ads