holas.. pss.
Dentro de un directorio, los scripts que se ejecutan primero. La K (de "kill", matar) indica que el script correspondiente en /etc/init.d debe ejecutarse con la opción de detención, "stop". Luego de ejecutados todos los scripts K, se ejecutan los scripts S. La S (de "start", arrancar) indica que el script correspondiente en /etc/init.d debe ejecutarse con la opción de arranque ("start").
El número de 2 dígitos regula el orden en que se ejecutan los distintos scripts; el número puede estar repetido, cuando importa la precedencia.
Los distintos niveles en que puede funcionar el sistema se definen en el arthivo /etc/inittab.
Niveles de arranque: /etc/inittab.
# /etc/inittab: init(8) configuration.
# $Id: inittab,v 1.8 1998/05/10 10:37:50 miquels Exp $
# The default runlevel.
id:2:initdefault:
# Boot-time system configuration/initialization script.
# This is run first except when booting in emergency (-b) mode.
si::sysinit:/etc/init.d/rcS aki esta el problema
# What to do in single-user mode.
~~:S:wait:/sbin/sulogin
# /etc/init.d executes the S and K scripts upon change
# of runlevel.
#
# Runlevel 0 is halt.
# Runlevel 1 is single-user.
# Runlevels 2-5 are multi-user.
# Runlevel 6 is reboot.
l0:0:wait:/etc/init.d/rc 0
l1:1:wait:/etc/init.d/rc 1
l2:2:wait:/etc/init.d/rc 2
l3:3:wait:/etc/init.d/rc 3
l4:4:wait:/etc/init.d/rc 4
l5:5:wait:/etc/init.d/rc 5
l6:6:wait:/etc/init.d/rc 6
# Normally not reached, but fallthrough in case of emergency.
z6:6:respawn:/sbin/sulogin
# What to do when CTRL-ALT-DEL is pressed.
ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
# Action on special keypress (ALT-UpArrow).
kb::kbrequest:/bin/echo "Keyboard Request--edit /etc/inittab to let this work."
# What to do when the power fails/returns.
pf::powerwait:/etc/init.d/powerfail start
pn::powerfailnow:/etc/init.d/powerfail now
po::powerokwait:/etc/init.d/powerfail stop
# /sbin/getty invocations for the runlevels.
#
# The "id" field MUST be the same as the last
# characters of the device (after "tty").
#
# Format:
# <id>:<runlevels>:<action>:<process>
1:2345:respawn:/sbin/getty 38400 tty1
2:23:respawn:/sbin/getty 38400 tty2
3:23:respawn:/sbin/getty 38400 tty3
4:23:respawn:/sbin/getty 38400 tty4
5:23:respawn:/sbin/getty 38400 tty5
6:23:respawn:/sbin/getty 38400 tty6
# Example how to put a getty on a serial line (for a terminal)
#
#T0:23:respawn:/sbin/getty -L ttyS0 9600 vt100
#T1:23:respawn:/sbin/getty -L ttyS1 9600 vt100
# Example how to put a getty on a modem line.
#
#T3:23:respawn:/sbin/mgetty -x0 -s 57600 ttyS3
creo que te falta un script de arranque creo. te lo dejo, lo puedes modificar con un live cd , y vas al contenedor y lo agregas
Plantilla para script rc.
En la distribución Debian se exige que todos los paquetes de software tengan un script rc con las opciones "start", "stop", "restart" y mensaje informativo de uso si no se dan opciones. Se provee una plantilla modelo para la creación de estos scripts, a partir de la cual el responsable de cada paquete estructura el script rc, que residirá en /etc/init.d, y con el cual se gobierna el paquete.
#! /bin/sh
#
# skeleton example file to build /etc/init.d/ scripts.
# This file should be used to construct scripts for /etc/init.d.
#
# Written by adnplus
<adnplus@gxppl.net>.
# Modified for Debian GNU/Linux
# by adnplus <adnplus@linuxmail.org>.
#
# Version: @(#)skeleton 1.8 03-Mar-1998
miquels@cistron.nl
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/daemon
NAME=daemon
DESC="some daemon"
test -f $DAEMON || exit 0
set -e
case "$1" in
start)
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON
echo "$NAME."
;;
#reload)
#
# If the daemon can reload its config files on the fly
# for example by sending it SIGHUP, do it here.
#
# If the daemon responds to changes in its config file
# directly anyway, make this a do-nothing entry.
#
# echo "Reloading $DESC configuration files."
# start-stop-daemon --stop --signal 1 --quiet --pidfile \
# /var/run/$NAME.pid --exec $DAEMON
#;;
restart|force-reload)
#
# If the "reload" option is implemented, move the "force-reload"
# option to the "reload" entry above. If not, "force-reload" is
# just the same as "restart".
#
echo -n "Restarting $DESC: "
start-stop-daemon --stop --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON
sleep 1
start-stop-daemon --start --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON
echo "$NAME."
;;
*)
N=/etc/init.d/$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
2~~~~#######################
por eso siempre SIEMPRE DALE UNA PEQUEÑA COPIA A LAS MODIFICACIONES DEL SISTEMA, POR SI LAS MOSCAS.
por lo tanto creo nuevamente que el problema radica en el arranque y en la especificacion de el.. ( CREO QUE AKI ES DONDE PODEMOS AREGLAR EL PROBLEM, , ME CORRIGEN SI ME EQUIBOQUE. OK )
# /etc/inittab: init( 8 ) configuration.
# $Id: inittab,v 1.91 2002/01/25 13:35:21 miquels Exp $
# The default runlevel.
id:2:initdefault:
--------> Aca deben especificar con que nivel de corrida empezar
# Boot-time system configuration/initialization script.
# This is run first except when booting in emergency (-b) mode.
si:sysinit:/etc/init.d/rcS
---------> Aca se especifica que script de configuracion lanzar al inicio
# What to do in single-user mode.
~~:S:wait:/sbin/sulogin
---------> Que debe hacerse cuando se lanza en modo mono-usuario
# /etc/init.d executes the S and K scripts upon change
# of runlevel.
#
# Runlevel 0 is halt.
-------->Aca muestra en que consisten MIS niveles de corrida
# Runlevel 1 is single-user.
-------->(OJO, yo utilizo Debian y no son los mismos que en Red
# Runlevels 2-5 are multi-user.
-------->Hat o Mandrake), el 0 es apagado, el 1 es mono-usuario,
# Runlevel 6 is reboot.
--------> del 2 al 5 son multi-usuarios y el 6 es reseteo
l0:0:wait:/etc/init.d/rc 0
-------->
l1:1:wait:/etc/init.d/rc 1
-------->
l2:2:wait:/etc/init.d/rc 2
--------> Aqui se especifican los script de arranque que
l3:3:wait:/etc/init.d/rc 3
--------> utilizara cada nivel de corrida o tambien
l4:4:wait:/etc/init.d/rc 4
--------> llamados Runlevels
l5:5:wait:/etc/init.d/rc 5
-------->
l6:6:wait:/etc/init.d/rc 6
-------->
# Normally not reached, but fallthrough in case of emergency.
z6:6:respawn:/sbin/sulogin
-------> No viene al caso
# What to do when CTRL-ALT-DEL is pressed.
----> Este nos controla el reseteo, si le
ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
ponemos un signo "#" el ctrl + alt + del
no nos reseteara la maquina
# Action on special keypress (ALT-UpArrow).
#kb::kbrequest:/bin/echo "Keyboard Request--edit /etc/inittab to let this work."
---->No viene al caso
# What to do when the power fails/returns.
pf::powerwait:/etc/init.d/powerfail start
----------> Para los que tienen UPS para que se les
pn:powerfailnow:/etc/init.d/powerfail now
-----------> apague de forma correcta y si vuelve la
po:powerokwait:/etc/init.d/powerfail stop
----------> energia para cancelar el apagado
bueno ojala que te ayude en algo, y donde radica el prblema,. lo que te propongo con todo lo que e escrito es.
verifica el script de arranque ok
saludos