Bonsoir,

Depuis peu (je ne sais pas quand exactement) j'ai au boot de ma f15 32bits ce problème qui s'affiche :

Started LSB: Start and stop the MD software RAID monitor.
Starting LSB: start and stop apmd [1;31mfailed[0m, see 'systemctl status apmd.service' for details.
Started LSB: Start up the NFS file locking sevice.
Started /etc/rc.local Compatibility.

Pour essayer de résoudre ce souci, j'ai fait comme indiqué en user simple un "systemctl status apmd.service" , ce qui me donne :

apmd.service - LSB: start and stop apmd
	  Loaded: loaded (/etc/rc.d/init.d/apmd)
	  Active: failed since Thu, 23 Feb 2012 00:28:28 +0100; 33min ago
	 Process: 1099 ExecStart=/etc/rc.d/init.d/apmd start (code=exited, status=1/FAILURE)
	  CGroup: name=systemd:/system/apmd.service

Suite à cela j'ai essayé un yum reinstall apmd mais cela n'a rien changé ...

Merci d'avance pour vos suggestions
Et qu'est-ce qui ne fonctionne pas ?
Oui, pardon .. j'oublie le plus évident , cela fait que mes lecteurs vidéos que ce soit xine ou vlc se ferme quand je veux changer de piste audio dans une vidéo qui en a plusieurs et ceci queque soit la vidéo et pour vlc comme xine.

Ce comportement est présent depuis que j'ai repéré ce failed dans boot ( en fait c'est pour cela que j'ai cherché ...)
Moi j'essaierais de lancer apmd à la main, sous root , dans un terminal pour voir s'il y a des erreurs :

/etc/rc.d/init.d/apmd start
Bonsoir et merci nouvo de t'inéresser a mon problème, alors voici le résultat de /etc/rc.d/init.d/apmd start :

Starting apmd (via systemctl):  Job failed. See system logs and 'systemctl status' for details.

J'ai aussi récupéré le contenu du fichier /etc/rc.d/init.d/apmd :

[root@localhost ~]# cat /etc/rc.d/init.d/apmd
#!/bin/sh
#
# chkconfig: 2345 26 74
# description: apmd is used for monitoring battery status and logging it via \
#	syslog(8). It can also be used for shutting down the machine when \
#	the battery is low.
# processname: apmd
# config: /etc/sysconfig/apmd
# clock: /etc/sysconfig/clock

### BEGIN INIT INFO
# Provides: apmd
# Required-Start: $syslog $local_fs
# Required-Stop: $syslog $local_fs
# Default-Start:  2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: start and stop apmd
# Description: apmd is used for monitoring battery status and logging it via
#	           syslog(8). It can also be used for shutting down the machine when
#	           the battery is low.
### END INIT INFO

CONFIG=/etc/sysconfig/apmd

# Source function library.
. /etc/init.d/functions

RETVAL=0

start() {
	# Check that we're a priviledged user
	[ `id -u` = 0 ] || exit 4

	# If APM isn't supported by the kernel, try loading the module...
	[ -e /proc/apm ] || /sbin/modprobe apm &>/dev/null
		
	# Don't bother if /proc/apm still doesn't exist, kernel doesn't have
	# support for APM.
	[ -e /proc/apm ] || exit 1
	
	# Check if acpid is executable
	[ -x /usr/sbin/apmd ] || exit 5
	
	# Check if config exists
	[ -f $CONFIG ] || exit 6
	
	. "$CONFIG"

	echo -n $"Starting up APM daemon: "
	daemon /usr/sbin/apmd -p $LOGPERCENTCHANGE -w $WARNPERCENT $ADDPARAMS \
		-P /etc/sysconfig/apm-scripts/apmscript
	RETVAL=$?
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/apmd
	echo
	return $RETVAL
}

stop() {
	echo -n $"Shutting down APM daemon: "
	killproc apmd
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/apmd
	echo
	return $RETVAL
}

restart() {
	stop
	start
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  status)
	status apmd
	RETVAL=$?
	;;
  restart)
	restart
	;;
  reload)
	restart
    ;;
  force-reload)
	echo "$0: Unimplemented feature."
	RETVAL=3  
    ;;
  condrestart)
	if [ -f /var/lock/subsys/apmd ]; then
	    restart
	fi
	;;
  *)
	echo $"Usage: apmd {start|stop|status|restart|reload|force-reload|condrestart}"
	RETVAL=2
esac

exit $RETVAL

Es-ce le texte "normal" de ce fichier ?

Merci d'avance
Pour lancer un service, passe plutôt par la commande service, ou, mieux, par systemctl désormais (autant s'habituer dès maintenant à Systemd). Voir http://forums.fedora-fr.org/viewtopic.php?pid=38162#p38162 pour l'explication.

Pour ce qui est de ton problème, essaie de voir les logs système : lance la commande suivante en tant que root :
grep -i apm /var/log/messages
bonsoir aussitôt dit aussitôt fait :

[root@localhost ~]# grep -i apm /var/log/messages
Mar  8 12:23:16 localhost kernel: [    1.305901] apm: BIOS not found.
Mar  8 12:23:17 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar  8 12:23:17 localhost systemd[1]: Unit apmd.service entered failed state.
Mar  8 12:39:50 localhost kernel: [    1.302573] apm: BIOS not found.
Mar  8 12:39:52 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar  8 12:39:52 localhost systemd[1]: Unit apmd.service entered failed state.
Mar  9 04:07:19 localhost kernel: [    1.306988] apm: BIOS not found.
Mar  9 04:07:20 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar  9 04:07:20 localhost systemd[1]: Unit apmd.service entered failed state.
Mar  9 20:05:31 localhost kernel: [    1.306332] apm: BIOS not found.
Mar  9 20:05:32 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar  9 20:05:32 localhost systemd[1]: Unit apmd.service entered failed state.
Mar  9 23:10:07 localhost kernel: [    1.305598] apm: BIOS not found.
Mar  9 23:10:08 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar  9 23:10:08 localhost systemd[1]: Unit apmd.service entered failed state.
Mar 10 04:07:07 localhost kernel: [    1.305280] apm: BIOS not found.
Mar 10 04:07:08 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar 10 04:07:08 localhost systemd[1]: Unit apmd.service entered failed state.
Mar 10 04:08:30 localhost systemd[1]: apmd.service: control process exited, code=exited status=1
Mar 10 04:08:30 localhost systemd[1]: Unit apmd.service entered failed state.
[root@localhost ~]# 

merci ...
As-tu une machine ancienne ? ACPI a largement rendu obsolète APM depuis un moment pour la gestion de la consommation. APM fait partie de l'histoire ancienne pour les machines de moins de 5 ans, au minimum.
Si ta machine est relativement récente, inutile de te tracasser avec apmd, désinstalle le paquet du même nom.
Problème résolu !!

Merci Pikachu_2014 !