![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Pseudo-terminal will not be allocated because stdin is not a terminal. | Shivdatta | UNIX for Advanced & Expert Users | 1 | 08-04-2008 07:29 AM |
| Terminal | Jono_H | UNIX for Dummies Questions & Answers | 10 | 06-23-2007 07:59 AM |
| HP UX Terminal Help | gpta_varun | HP-UX | 0 | 05-11-2005 11:16 AM |
| dt terminal | s_aamir | UNIX for Advanced & Expert Users | 2 | 03-13-2002 02:32 AM |
| connecting to unix through hyper terminal - as a dumb terminal | michelle | UNIX for Advanced & Expert Users | 2 | 11-05-2001 12:32 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
Hai Friends
I have installed FreeBSD in my system... I have installed it to work in text mode don't have the GUI. The default text color is Black background with White Foreground. I want it to be with Black background with Green Foreground. How could i do that. Thanks in advance Collins |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
what shell are you using?
|
|
#3
|
||||
|
||||
|
my shell
its csh
Expecting your reply |
|
#4
|
||||
|
||||
|
Yikes collins. First things first, move away from csh. Its less powerful than other shells and much less fun to work with for that matter. Download pdk (public domain Korn shell) or switch over to bash or bourne. You will be much happieer in the long run,
|
|
#5
|
|||
|
|||
|
zsh kicksass
Code:
vidcontrol green black The colors won't persist after reboot and each VT (Virtual Terminal, the things you can switch with ALT+F*) has independant vidcontrol settings. So if you want the colors to be set automatically, you could add something like that to your ~/.profile (or ~/.zprofile if using zsh): Code:
case "$TERM" in cons*) vidcontrol green black ;; esac |
|||
| Google The UNIX and Linux Forums |