Suse10.2 : /etc/initscript : line 106 : /sbin/mingetty Input/Output error on reboot
SUSE / openSUSEThis 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.
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
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.
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.
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?
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.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.