| Suse/Novell This Forum is for the discussion of Suse Linux. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
05-16-2008, 03:22 PM
|
#1
|
|
LQ Newbie
Registered: May 2008
Posts: 4
Rep:
|
Suse10.2 : /etc/initscript : line 106 : /sbin/mingetty Input/Output error on reboot
Hi everone,
I have been experiencing this issue for 48hours now.
I did openSuse Online updates, rebooted the system I got the following error on the reboot.
/etc/initscript: line 106: /sbin/mingetty: Input/Output error
INIT: Id "1" respawing too fast: disabled for 5 minutes.
include All Ids from 1 to 6.
I even made a new installation with and without online updates. I still got the same error.
I am seeking help.
Thank you.
Last edited by chelsea; 05-16-2008 at 03:26 PM.
Reason: corrections
|
|
|
|
05-17-2008, 08:50 AM
|
#2
|
|
Guru
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 5,644
|
Not real familiar with initscript but the man page here talks about it:
http://linux.die.net/man/5/initscript
The mention there of /etc/inittab makes sense of your message to me.
In /etc/inittab you'll see lines that have the word "respawn" in them.
respawn means start the process and every time it dies start it again.
"respawning too fast" is an indication that the process is dieing every time it starts.
So the first thing you want to do is "vi /etc/inittab" and look for the mingetty items that are set to respawn. You can change those to "off" then save the file. Typically you would then type "init q" to reread the inittab. (I'm not sure how this works with initscript because it isn't on any of the systems I'm familiar with.) This should stop the error long enough for you to determine why the command being run is failing.
Once you've done that you can test the command from /etc/inittab to see what errors it is giving. Once you've figured out why the command is erroring out and resolved it you can change the entries back from off to respawn.
|
|
|
|
05-17-2008, 09:02 AM
|
#3
|
|
Member
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702
Rep:
|
What your system is saying ... the mingetty process is failing to open your virtual consoles.
The virtual consoles are /dev/tty1 through /dev/tty6 ... on your system, based on the message you are reporting.
Somehow these devices are not active ... the mingetty process is configured to respawn ... but since it fails to open the device it errors out. The system is recognizing a run-away process loop and is putting a 5 minute halt on it.
You have to find out why your virtual console devices cannot be opened.
|
|
|
|
05-21-2008, 09:27 PM
|
#4
|
|
LQ Newbie
Registered: May 2008
Posts: 4
Original Poster
Rep:
|
Quote:
Originally Posted by dxqcanada
What your system is saying ... the mingetty process is failing to open your virtual consoles.
The virtual consoles are /dev/tty1 through /dev/tty6 ... on your system, based on the message you are reporting.
Somehow these devices are not active ... the mingetty process is configured to respawn ... but since it fails to open the device it errors out. The system is recognizing a run-away process loop and is putting a 5 minute halt on it.
You have to find out why your virtual console devices cannot be opened.
|
Thanks for your input.
I want to mention that I am new to linux.
When you say 'device', which device you mean? is a hardware device?
Also I want to mention that if I reformat the hard drive and perform a new suse installtion why the problem would still exist? I found this very odd.
Finaly, when you reformat the hard drive is there any chance that the bootup process still be alive?
Thank you again.
chelsea
|
|
|
|
05-23-2008, 09:02 AM
|
#5
|
|
Guru
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 5,644
|
He means the /dev/tty1 etc... - items in the /dev directory are considered "device files". These items have major/minor numbers rather than size information like regular files. The major tells which class of device is involved and the minor can distinguish separate physical devices and/or tell which features of the devices are to be used.
The main issue is that mingetty can't do what it is trying to do. A first step would be to do "ls -l /dev/tty*" to see if the device files exist. There are many other steps you should research. Try typing "man mingetty" and/or "info mingetty" to get more details on what that command does.
|
|
|
|
05-24-2008, 01:17 PM
|
#6
|
|
Member
Registered: Sep 2006
Location: Canada
Distribution: Gentoo
Posts: 702
Rep:
|
Example ... displaying the virtual console devices /dev/tty0 - 9
Code:
dennis@nc4200 ~ $ ls -l /dev/tty?
crw--w---- 1 root root 4, 0 May 24 07:23 /dev/tty0
crw------- 1 root root 4, 1 May 24 11:23 /dev/tty1
crw------- 1 root root 4, 2 May 24 11:23 /dev/tty2
crw------- 1 root root 4, 3 May 24 11:23 /dev/tty3
crw--w---- 1 root root 4, 4 May 24 11:23 /dev/tty4
crw--w---- 1 root tty 4, 5 May 24 11:23 /dev/tty5
crw--w---- 1 root tty 4, 6 May 24 11:23 /dev/tty6
crw--w---- 1 root tty 4, 7 May 24 11:23 /dev/tty7
crw--w---- 1 root tty 4, 8 May 24 11:23 /dev/tty8
crw--w---- 1 root tty 4, 9 May 24 11:23 /dev/tty9
You should see these devices.
Display the /etc/inittab entries for mingetty
In my example I use agetty ... so just replace "agetty" with "mingetty" when you use the grep command:
Code:
dennis@nc4200 ~ $ grep agetty /etc/inittab
c1:12345:respawn:/sbin/agetty 38400 tty1 linux
c2:2345:respawn:/sbin/agetty 38400 tty2 linux
c3:2345:respawn:/sbin/agetty 38400 tty3 linux
#c4:2345:respawn:/sbin/agetty 38400 tty4 linux
#c5:2345:respawn:/sbin/agetty 38400 tty5 linux
#c6:2345:respawn:/sbin/agetty 38400 tty6 linux
#s0:12345:respawn:/sbin/agetty 9600 ttyS0 vt100
#s1:12345:respawn:/sbin/agetty 9600 ttyS1 vt100
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 10:53 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|