با تشکر از همه دوستانی که در پاسخ به این سوال همراهی نمودند، مشکل با اجرای توضیحات زیر برطرف گردید.
Sharing With LPD
nabling LPD support is a little more complex since Ubuntu does not normally include servers.
On the print server:
1. Install xinetd on the print server. This is the extended Internet daemon for running processes.
sudo apt-get install xinetd
2. Create a configuration file for the printer service. This requires creating a file called /etc/xinetd.d/printer. The contents should look like this:
service printer
{
socket_type = stream
protocol = tcp
wait = no
user = lp
group = sys
server = /usr/lib/cups/daemon/cups-lpd
server_args = -o document-format=application/octet/stream
}
3. Restart the xinetd server.
sudo /etc/init.d/xinetd restart