Ausgangssituation ist ein Mageia2, installiert von der KDE 64bit live CD
Problem ist ein nicht automatisch startender CUPS-Server.
- Code: Alles auswählen
[root@wuerfel init.d]# tree
.
├── acpid
├── alsa
├── apmd
├── avahi-daemon
├── bpalogin
├── cpufreq
├── crond
├── cups
├── dm
├── functions
├── halt
├── hddtemp
├── ip6tables
├── iptables
├── irqbalance
├── jexec
├── killall
├── lm_sensors
├── lvm2-monitor
├── mandi
├── mandrake_everytime
├── mandrake_firstime
├── messagebus
├── microcode_ctl
├── msec
├── netconsole
├── netfs
├── network
├── network-auth
├── network-up
├── nfs-common
├── ntpd
├── partmon
├── portreserve
├── pppoe
├── preload
├── reboot -> halt
├── resolvconf
├── rpcbind
├── rsyslog
├── shorewall
├── single
├── sound
├── sshd
├── vboxautostart-service
├── vboxballoonctrl-service
├── vboxdrv
├── vboxweb-service
└── vnstat
0 directories, 49 files
[root@wuerfel init.d]#
Okay, da ist er schon mal grundsätzlich vorhanden.
- Code: Alles auswählen
[root@wuerfel rc5.d]# tree
.
├── K00netconsole -> ../init.d/netconsole
├── K49network-auth -> ../init.d/network-auth
├── K59mandi -> ../init.d/mandi
├── K74apmd -> ../init.d/apmd
├── K90shorewall -> ../init.d/shorewall
├── S03ip6tables -> ../init.d/ip6tables
├── S03iptables -> ../init.d/iptables
├── S09resolvconf -> ../init.d/resolvconf
├── S10network -> ../init.d/network
├── S12rsyslog -> ../init.d/rsyslog
├── S13irqbalance -> ../init.d/irqbalance
├── S13msec -> ../init.d/msec
├── S13partmon -> ../init.d/partmon
├── S14acpid -> ../init.d/acpid
├── S18sound -> ../init.d/sound
├── S20vboxdrv -> ../init.d/vboxdrv
├── S26lm_sensors -> ../init.d/lm_sensors
├── S35vboxautostart-service -> ../init.d/vboxautostart-service
├── S35vboxballoonctrl-service -> ../init.d/vboxballoonctrl-service
├── S35vboxweb-service -> ../init.d/vboxweb-service
├── S50cpufreq -> ../init.d/cpufreq
├── S50network-up -> ../init.d/network-up
├── S51rpcbind -> ../init.d/rpcbind
├── S52dm -> ../init.d/dm
├── S52netfs -> ../init.d/netfs
├── S53messagebus -> ../init.d/messagebus
├── S54avahi-daemon -> ../init.d/avahi-daemon
├── S90hddtemp -> ../init.d/hddtemp
├── S95jexec -> ../init.d/jexec
├── S95microcode_ctl -> ../init.d/microcode_ctl
└── S99rc-local -> ../rc.local
0 directories, 31 files
[root@wuerfel rc5.d]#
Hier nicht!
Ein Verlinken auf S60 bringt auch keinen Erfolg
- Code: Alles auswählen
[root@wuerfel rc5.d]# service cups status
cups.service - CUPS Printing Service
Loaded: loaded (/lib/systemd/system/cups.service; disabled)
Active: inactive (dead)
CGroup: name=systemd:/system/cups.service
[root@wuerfel rc5.d]# service cups start
Starting cups (via systemctl): [ OK ]
[root@wuerfel rc5.d]#
Jetzt funktioniert CUPS und meine Drucker sind ansprechbar.
Wie kann ich das Problem lösen?
Michael