I am finding a difficulty to raise the CUPS service with the system load. I tried to insert a line in "/ etc / rc.local" so that CUPS was started with the system but did not work:
I used vi to edit that file this way:
I restarted the system and service CUPS does not return.
I tried another way:
I have not had success as well.
Checking the utilities 'rcconf' and 'BUM' CUPS service is scheduled to start with the system, which I can not understand the why of this service is not started.
So I use the printer but only after opening the terminal and manually start CUPS:
I do not know if this problem also occurs with Ubuntu but it is good to see that it would be a nuisance for new users of Linux distro.
I used vi to edit that file this way:
Code:
sleep 5 /etc/init.d/cups start exit 0
I restarted the system and service CUPS does not return.
I tried another way:
Code:
sleep 5 /etc/init.d/cups start;sleep 3;/etc/init.d/cups restart exit 0
Checking the utilities 'rcconf' and 'BUM' CUPS service is scheduled to start with the system, which I can not understand the why of this service is not started.
So I use the printer but only after opening the terminal and manually start CUPS:
Code:
/etc/init.d/cups start
Comment