Putty mit Farben

Eagle1

Registered User
Ich habe 2x Debian auf dem einem System hat Putty Farben für Verz., etc. auf dem anderen nicht. Wo stellt man das dauerhaft ein?

ls --color-auto ?!

Danke
Gruß Roland
 
In deiner .bashrc sollte etwas stehen wie das hier:
Code:
# You may uncomment the following lines if you want `ls' to be colorized:
# export LS_OPTIONS='--color=auto'
# eval "`dircolors`"
Also einfach auskommentieren und die Farbpracht genießen ;)
 
Ich hab was gefunden - hat sich erledigt :)

/root

Code:
sarge3:~# vi .bashrc
sarge3:~# diff .bashrc .bashrc.orig
7,11c7,11
<  export LS_OPTIONS='--color=auto'
<  eval `dircolors`
<  alias ls='ls $LS_OPTIONS'
<  alias ll='ls $LS_OPTIONS -l'
<  alias l='ls $LS_OPTIONS -lA'
---
> # export LS_OPTIONS='--color=auto'
> # eval `dircolors`
> # alias ls='ls $LS_OPTIONS'
> # alias ll='ls $LS_OPTIONS -l'
> # alias l='ls $LS_OPTIONS -lA'

Anschließend mit

Code:
. .bashrc

die Datei neu einlesen.
 
Ha! Es fehlt doch noch etwas :confused:

nach jedem reboot muss ich

Code:
. .bashrc

ausführen damit es geht?

Noch irgend etwas irgendwo auskommentieren?

Gruß Roland
 
Existiert eine ~/.bash_profile?

Code:
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/login.defs
#umask 022

# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
    PATH=~/bin:"${PATH}"
fi
 
Back
Top