You are not logged in.
http://s9.postimage.org/e3ymmtxlr/tty1.png
As you can see in the picture above, i want these messages not to apear on my console.
I even can not write my user name to login because of them. ANNOYİGGGGGGG.
I have to pres ENTER and sometimes lots of buttons to find a "Tombik(my hostname) login : ___" inscription.
Also, the message below appears after the udev in the initscrips at the begining of the system.
dd-nn-yyyy hh:mm:ss [drm] nouveau xxxx 1:00.0: no native mode, forcing panel scalingMy /etc/rc.local file includes,
{ ntpd -qg; hwclock -w; } &( I added this code as mentioned "Synchronize once per boot" section on here , for synchronizing my system date.)
How can i prevent "[drm] nouveau.....forcing panel scaling" and "ntpd" messages not to be shown in the beginning system messages and my main console ?
( i use "drm_kms_helper.poll=0" and "quiet" in my /boot/grub/menu.lst . But they only solve screen flashing and "[drm] nouveau.....forcing panel scaling" message in every 10 second .)
Last edited by ozgursarier (2012-09-16 07:40:39)
Offline
With regard to the green question mark: you logged in as root, so maybe it's some config for root - .bashrc?
Offline
http://s15.postimage.org/ag49k4zmz/tty2.png
Root and the normal user login are the same. After the login there are "Can't open display" messages.
This is my /etc/bash.bashrc file. There isn't any .bashrc file in root directory.
#
# /etc/bash.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
PS1='[\u@\h \W]\$ '
PS2='> '
PS3='> '
PS4='+ '
case ${TERM} in
xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
;;
screen)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
;;
esac
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completionBut my main problem is more inportant then the "Can't open display" issue.
Offline