On Wednesday 10 September 2008 07:43:33 Michele Schiavo wrote: > When i login from console i have this error : > > -bash: no job control in this shell > > I don't know since i have this because i do not usually console login.
I would have thought google would return thousands of hits for a message like that. But it didn't, so you have a funny one :-) This error seems to relate to not having access to the tty device. Here's a good place to start: http://forums.gentoo.org/viewtopic-t-152855.html?sid=657f0bbf1fe140faf141b965bbf161ad Also check obvious things like UNIX98_PTY is enabled in your kernel, and your user does have permissions on the console devices /dev/{p,t}ty* Normally, it user root, group tty and the user is in the tty group > > this is my .bashrc > > # /etc/skel/.bashrc: > # $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bashrc,v 1.8 > 2003/02/28 15:45:35 azarah Exp $ > > # This file is sourced by all *interactive* bash shells on startup. > This > # file *should generate no output* or it will break the scp and rcp > commands. > > # colors for ls, etc. > eval `dircolors -b /etc/DIR_COLORS` > > alias ls="ls --color=auto" > alias ll="ls --color -l" > alias rm="rm -iv" > alias mv="mv -iv" > alias cp="cp -iv" > alias grep="grep --color" > > export HISTCONTROL=ignorespace > export HISTIGNORE="ignoredups:&:ls:[bf]g:exit" > > # Change the window title of X terminals > case $TERM in > xterm*|rxvt|Eterm|eterm) > PROMPT_COMMAND='echo -ne "\033]0;[EMAIL PROTECTED]: > ${PWD/$HOME/~}\007"' > ;; > screen) > PROMPT_COMMAND='echo -ne "[EMAIL PROTECTED]: > ${PWD/$HOME/~}\033\\"' > ;; > esac > > [ -f /etc/profile.d/bash-completion ] && > source /etc/profile.d/bash-completion > > export MAILHOST="gmail.com" > export MAILUSER="micheleschi" -- alan dot mckinnon at gmail dot com

