LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 05-20-2005, 07:08 AM   #1
199cm
LQ Newbie
 
Registered: May 2005
Location: Latvia
Distribution: Mandrake 9.2
Posts: 4

Rep: Reputation: 0
Startup problems


My mandrake 9.2 don`t start up in normal way. After startup appears login, after them password and than nothing happens. If I connect from other computer as root, I must press control+C after password and then everything works. Whats wrong?
 
Old 05-20-2005, 01:18 PM   #2
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Welcome to LQ.

It sounds like you may have something wrong with your login scripts.

Has this happened since the install?
 
Old 05-21-2005, 05:26 AM   #3
199cm
LQ Newbie
 
Registered: May 2005
Location: Latvia
Distribution: Mandrake 9.2
Posts: 4

Original Poster
Rep: Reputation: 0
Stratup

No, my server runs allready 1 year. Login scripts - are they placed in profile.d?
 
Old 05-21-2005, 07:19 AM   #4
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
They could be or if it is only happening to root it may be more likely in /root/.bashrc or /root/.bash_profile
 
Old 05-21-2005, 07:24 AM   #5
199cm
LQ Newbie
 
Registered: May 2005
Location: Latvia
Distribution: Mandrake 9.2
Posts: 4

Original Poster
Rep: Reputation: 0
No, it happens with all logins. Another strange thing is, that I have not any more root@.... in shell, but -bash-2.05b. And with scripts, which are placed in profile.d, everything seems ok.
 
Old 05-21-2005, 07:35 AM   #6
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
It's a while since I've used mandrake - do you have a /etc/bashrc or /etc/profile?

If so are they both executable? Can you post a copy of their contents? If you put some echo statements periodically through them you could get an idea if they are being executed and if so at which point they stop.
 
Old 06-06-2005, 02:19 AM   #7
199cm
LQ Newbie
 
Registered: May 2005
Location: Latvia
Distribution: Mandrake 9.2
Posts: 4

Original Poster
Rep: Reputation: 0
My startup script.

Hi again! I had a little vacation. This is my startupscript (/etc/profile). Any ideas, where is a problem?



# /etc/profile: This file contains system-wide defaults used by
# all Bourne (and related) shells.

# Set the values for some environment variables:
export MINICOM="-c on"
export MANPATH=/usr/local/man:/usr/man:/usr/X11R6/man
export HOSTNAME="`cat /etc/HOSTNAME`"
export LESSOPEN="|lesspipe.sh %s"
export LESS="-M"

# If the user doesn't have a .inputrc, use the one in /etc.
if [ ! -r "$HOME/.inputrc" ]; then
export INPUTRC=/etc/inputrc
fi

# Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games"

# For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi
fi

# I had problems using 'eval tset' instead of 'TERM=', but you might want to
# try it anyway. I think with the right /etc/termcap it would work great.
# eval `tset -sQ "$TERM"`
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
TERM=linux
fi

# Set ksh93 visual editing mode:
if [ "$SHELL" = "/bin/ksh" ]; then
VISUAL=emacs
# VISUAL=gmacs
# VISUAL=vi
fi

# Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then
PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then
PS1='! ${PWD/#$HOME/~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then
PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then

PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then
PS1='$ '
else
PS1='\u@\h:\w\$ '
fi
PS2='> '
export PATH DISPLAY LESS TERM PS1 PS2

# Default umask. A umask of 022 prevents new files from being created group
# and world writable.
umask 022
echo

# Set up the LS_COLORS and LS_OPTIONS environment variables for color ls:
if [ "$SHELL" = "/bin/zsh" ]; then
eval `dircolors -z`
elif [ "$SHELL" = "/bin/ash" ]; then
eval `dircolors -s`
else
eval `dircolors -b`
fi
echo

# Notify user of incoming mail. This can be overridden in the user's
# local startup file (~/.bash.login or whatever, depending on the shell)
if [ -x /usr/bin/biff ]; then
biff y
fi
echo

# Append any additional sh scripts found in /etc/profile.d/:
for file in /etc/profile.d/*.sh ; do
if [ -x $file ]; then
. $file
fi
done
echo

# For non-root users, add the current directory to the search path:
if [ ! "`id -u`" = "0" ]; then
PATH="$PATH:."
fi
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems on startup roger600 Linux - General 2 09-27-2005 01:25 PM
Startup Problems borrrden Linux - General 1 10-09-2004 11:32 AM
Startup Problems merwin2 Linux - Newbie 11 09-24-2004 06:18 PM
Startup problems Kryis Slackware 9 08-06-2004 10:26 AM
Startup problems Ackin Red Hat 1 09-26-2003 07:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva

All times are GMT -5. The time now is 04:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration