I have searched the APLawrence site for Synchronics CounterPoint running on RedHat Linux and I found an article describing different configurations. I needed to setup a printer on the Linux to which I must print from CounterPoint. I found the following instruction:
=========================================================
# script to create a device file for Synchronics to use with a spooled printer
# start this from /etc/rc2.d/S99local
rm -f /dev/forms
mknod /dev/forms p
chmod 666 /dev/forms
while true
do
cat /dev/forms | lpr -P forms
done
=========================================================
I have created a spooled printer called forms and it prints fine from Linux itself. Then I added the above code in the S99local, however now whenever I restart my server, the boot-up process hangs when it tries to run the local script.
For it to boot properly I have to enter the interactive startup and tell it not to run the local script. Then I manually run the script from within Linux.
Any ideas on how to solve this?
=========================================================
# script to create a device file for Synchronics to use with a spooled printer
# start this from /etc/rc2.d/S99local
rm -f /dev/forms
mknod /dev/forms p
chmod 666 /dev/forms
while true
do
cat /dev/forms | lpr -P forms
done
=========================================================
I have created a spooled printer called forms and it prints fine from Linux itself. Then I added the above code in the S99local, however now whenever I restart my server, the boot-up process hangs when it tries to run the local script.
For it to boot properly I have to enter the interactive startup and tell it not to run the local script. Then I manually run the script from within Linux.
Any ideas on how to solve this?