Kiwi-ltsp – Slave Printer Setup

Home » CentOS » Kiwi-ltsp – Slave Printer Setup
CentOS No Comments

On a Suse server I’m trying to setup an USB slave printer to a work station here below are my configuration files. When I boot a station, i can see on the lower right  the identification of the station as localhost(192.168.0.101) +time  stamp

The printer is configured in cups as ipp://192.168.0.101:9100
my problem is when I send a print out the print stays on cups and stall. the print  system  doesn’t find the station On a terminal I can Identify the printer with ‘lsusb’

On an Ubuntu system with the same configuration as below I can send a print and the printer receive it (it’s working)
On the Ubuntu station on the lower right, the station is identified as ws101(192.168.0.101) + the time stamp

Where do I am wrong on the Suse server

———————————————————————————
*dhcpd.conf*

option domain-name “Donais.ca”;
option domain-name-servers 8.8.8.8, 8.8.4.4;
option routers 192.168.0.1;
option broadcast-address192.168.0.255;
default-lease-time 14400;
ddns-update-style interim;
use-host-decl-nameson;
subnet 192.168.0.0 netmask 255.255.255.0 {
  option TFTP-server-name “192.168.0.1”;
  option bootfile-name “/pxelinux.0”;
  default-lease-time 14400;
  max-lease-time 172800;
  range dynamic-bootp 192.168.0.2 192.168.0.253;
  next-server 192.168.0.1;

  host ws101 {
    hardware ethernet F0:4D:A2:ED:35:D0;
    fixed-address 192.168.0.101;
    option host-name “ws101”;
  }
  host ws114 {
    hardware ethernet 84:2B:2B:89:6C:E0;
    fixed-address 192.168.0.114;
  }
}
——————————————————————————–
*/etc/hosts*
#
# hosts         This file describes a number of hostname-to-address
#               mappings for the TCP/IP subsystem.  It is mostly
#               used at boot time, when no name servers are running.
#               On small systems, this file can be used instead of a
#               “named” name server.
# Syntax:
#
# IP-Address  Full-Qualified-Hostname  Short-Hostname
#
127.0.0.1       localhost

# special IPv6 addresses
::1             localhost ipv6-localhost ipv6-loopback

fe00::0         ipv6-localnet ff00::0         ipv6-mcastprefix ff02::1         ipv6-allnodes ff02::2         ipv6-allrouters ff02::3         ipv6-allhosts
192.168.0.1     suse.localhost suse
192.168.0.101ws101
192.168.0.102ws102
192.168.0.103ws103
192.168.0.104ws104
192.168.0.105ws105
192.168.0.114ws114.donais.ca ws114
—————————————————————————–
*/srv/root-i386.17.12.19-20.25/etc/lts.conf*

# This is the default lts.conf file for ltsp 5.
# For more information about valid options please see:
# man lts.conf

[default]
LDM_SERVER = 192.168.0.1
DNS_SERVER = 8.8.8.8
SOUND = True LOCALDEV = True SERVER = 192.168.0.1
SCREEN_07 = ldm LOCAL_APPS = true LTSP_FATCLIENT = false LDM_PASSWORD_HASH = true ENCRYPT_SWAP = false XRANDR_DISABLE = True X_MODE_0 = 1024.×768
X_MODE_1 = 1280×1024
X_MODE_2 = 1440×900
#
[ws101]
MODULE_01= usb-uhci MODULE_02= printer PRINTER_0_TYPE = U
PRINTER_0-_DEVICE = /dev/usb/lp0
#PRINTER_0_PORT = 9100‎
—————————————————————————–

Michel Donais