Dell Proximity Printing Solution User guide

Type
User guide
Dell™ Proximity
Printing Solution
Installation Guide
Notes and Cautions
NOTE: A NOTE indicates important information that helps you make better use of
your computer.
CAUTION: A CAUTION indicates potential damage to hardware or loss of data if
instructions are not followed.
____________________
Information in this document is subject to change without notice.
© 2010 Dell Inc. All rights reserved.
Reproduction of these materials in any manner whatsoever without the written permission of Dell Inc.
is strictly forbidden.
Trademarks used in this text: Dell and the DELL logo are trademarks of Dell Inc.; Microsoft, Windows,
and Active Directory are either registered trademarks or trademarks of Microsoft Corporation in the
United States and/or other countries.
Other trademarks and trade names may be used in this document to refer to either the entities claiming
the marks and names or their products. Dell Inc. disclaims any proprietary interest in trademarks and
trade names other than its own.
September 2010 Rev. A01
Contents 3
Contents
1 Installing Ubuntu 32-bit . . . . . . . . . . . . . . . 6
Server Installation Requirements . . . . . . . . . . . . . 6
Installation Notes
. . . . . . . . . . . . . . . . . . . . . 7
Installing Linux and Setting a Static IP Address . . . . . 7
Updating Ubuntu
. . . . . . . . . . . . . . . . . . . . . 10
Installing the Postfix Mail Server
. . . . . . . . . . 10
Downloading, Installing, and Configuring the
DPPS Server Package
. . . . . . . . . . . . . . . . . . 11
Downloading Package or ISO Image
. . . . . . . . 11
Installing Using Package
. . . . . . . . . . . . . . 11
Installing Using ISO Image . . . . . . . . . . . . . 12
Setting Installation Package Options
. . . . . . . . 13
Setting up Database . . . . . . . . . . . . . . . . 13
Setting up Administration Account Access
. . . . 14
Joining the Server to Active
Directory/Domain
. . . . . . . . . . . . . . . . . . 14
Testing the Server
. . . . . . . . . . . . . . . . . 15
4 Contents
2 Installing Ubuntu 64-bit . . . . . . . . . . . . . 16
Server Installation Requirements . . . . . . . . . . . . 16
Installation Notes
. . . . . . . . . . . . . . . . . . . . 17
Installing Linux and Setting a Static IP Address . . . . 18
Updating Ubuntu
. . . . . . . . . . . . . . . . . . . . . 20
Installing the Postfix Mail Server
. . . . . . . . . . 20
Downloading, Installing, and Configuring the
DPPS Server Package
. . . . . . . . . . . . . . . . . . 21
Downloading Package or ISO Image
. . . . . . . . 21
Installing Using Package
. . . . . . . . . . . . . . 21
Installing Using ISO Image . . . . . . . . . . . . . 22
Setting Installation Package Options
. . . . . . . . 23
Setting up Database
. . . . . . . . . . . . . . . . 23
Setting up Administration Account Access . . . . 23
Joining the Server to Active
Directory/Domain
. . . . . . . . . . . . . . . . . . 24
Testing the Server. . . . . . . . . . . . . . . . . . 24
3 Installing Red Hat Enterprise Linux . . . . 25
Server Installation Requirements . . . . . . . . . . . . 25
Installation Notes . . . . . . . . . . . . . . . . . . . . 26
Installing RHEL
. . . . . . . . . . . . . . . . . . . . . . 26
Updating and Installing New Software Packages
. . . 28
Installing DPPS Server Package
. . . . . . . . . . . . 29
Setting up Administration Account Access
. . . . . . . 30
Testing the Server
. . . . . . . . . . . . . . . . . . . . 30
Contents 5
4 Installing SUSE Linux
Enterprise Server . . . . . . . . . . . . . . . . . . 32
Server Installation Requirements . . . . . . . . . . . . 32
Installation Notes
. . . . . . . . . . . . . . . . . . . . 33
Installing SLES
. . . . . . . . . . . . . . . . . . . . . . 33
Installing the DPPS Server package . . . . . . . . . . 37
Setting up Administration Account Access
. . . . . . . 39
Testing the Server
. . . . . . . . . . . . . . . . . . . . 39
DPPS – Installation Guide 6
1
Installing Ubuntu 32-bit
Server Installation Requirements
The Dell Proximity Printing Solution (DPPS) server requires the following:
A hardware or virtual server that can install Ubuntu 8.10 Desktop
Edition (32-bit).
At least 2 GB of RAM and a 2 GHz Dual Core processor.
RAID-5 storage setup.
NOTE: The hardware requirements may be higher if you have a large setup; for
example 100+ buildings or 1000+ printers.
An active external internet connection for the DPPS server.
The server administrator must have operational knowledge of Linux based
operating systems, particularly Ubuntu.
The server must be identifiable by the domain controller as a trusted
system, otherwise the DPPS server may not be able to join the domain.
You must have the following information:
The workgroup/domain name used in your network environment.
The Realm used in your network environment.
The domain name you want to use for the system that will be hosting
the server.
The Fully Qualified Domain Name (FQDN) for the server you wish to
set up.
Address of the domain controller/KDC.
Static IP Address for DPPS server.
NOTE: For more information on workgroup, domain, Realm, DNS, SMTP,
routing, etc., contact your network administrator.
7 DPPS – Installation Guide
Installation Notes
All the commands used are case sensitive. Using a different case may cause
unexpected results.
•The
sudo
prefix executes the command following it in administrator mode.
GEdit is a text editor.
Any text prefixed with # is a comment.
Installing Linux and Setting a Static IP Address
You must create a server install using Ubuntu 8.10 Desktop Edition (32-bit).
After the installation is complete, you must set a static IP address for the
DPPS server. If the setting for static IP are lost after rebooting, follow the
steps below to hard-code the information.
1
Type the following command in a terminal window:
sudo update-rc.d -f NetworkManager remove
2
Restart Ubuntu.
3
Type the following command in a terminal window:
sudo gedit /etc/hostname
4
Delete the existing text from the document and then type the FQDN.
5
Save the document and exit GEdit.
6
Restart Ubuntu.
7
Type the following command in a terminal window:
sudo gedit /etc/network/interfaces
8
The network interface file opens. Type the addresses used by your
environment where applicable. Your file should look similar to
the following:
# This file describes the network interfaces
available on your system
# and how to activate them. For more information,
see interfaces(5).
# The loopback network interface
auto lo
DPPS – Installation Guide 8
iface lo inet loopback
# This is a list of hotpluggable network
interfaces.
# They will be activated automatically by the
hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
gateway 192.168.0.1
9
Save the document and exit GEdit.
10
Type the following command in a terminal window:
sudo ifup eth0
You may see an error message regarding unable to resolve an address.
Ignore this error as the next step corrects it.
11
Type the following command in a terminal window:
sudo gedit /etc/resolv.conf
12
Delete the existing text from the document and then type:
nameserver
IP Address of your DNS server
You can type all your namespaces in the same format. Each namespace
must be typed in the new line.
13
Save the document and exit GEdit.
14
Restart Ubuntu.
15
Type the following command in a terminal window:
sudo gedit /etc/hosts
16
Use a # to comment out all the line till the first blank line.
9 DPPS – Installation Guide
17
Type the following in a new line after the commented lines:
127.0.0.1 localhost
This forces the server to look at the DNS settings for DNS information,
allowing a more dynamic setting.
18
Save the document and exit GEdit.
19
Type the following command in a terminal window:
hostname -f
If this command does not return the FQDN, contact Dell Pro-Support
for assistance.
20
Restart Ubuntu.
21
Verify that your settings are retained. If the settings are lost, contact Dell
Pro-Support for assistance.
DPPS – Installation Guide 10
Updating Ubuntu
After you can properly retrieve a static IP address, perform an update to the
latest packages.
If you are installing Ubuntu using an ISO image, skip to "Downloading,
Installing, and Configuring the DPPS Server Package" on page 11.
1
Click the update icon on the upper right corner of the screen.
CAUTION: Do not update Ubuntu beyond 8.10. Upgrading to a later version causes
issues with the DPPS server.
2
Click
Install Updates
.
3
Type the root account password and click
OK
.
NOTE: The time taken to update Ubuntu varies depending on the system
performance and network speeds.
4
After the updates are complete, close the update manager.
5
Restart the server, if prompted.
You must remove two packages from the system as they interfere with the
processes needed by CUPS.
1
Type the following command in a terminal window:
sudo aptitude remove apparmor apparmor-utils
2
Type the root account password.
3
Press <Enter> when prompted.
Installing the Postfix Mail Server
If you are installing Ubuntu using an ISO image, skip to "Installing Using ISO
Image" on page 12.
Type the following command in a terminal window to set up a mail server for
E-Mail functionality:
sudo aptitude install postfix
After the mail server is installed, you are prompted for configuration. It is
recommended that you leave the default settings of Internet with Smarthost.
11 DPPS – Installation Guide
Downloading, Installing, and Configuring the
DPPS Server Package
You can download the DPPS package or DPPS ISO image from the
Dell Support website at support.dell.com.
Downloading Package or ISO Image
If you have already downloaded the package, skip to "Installing Using
Package" on page 11 or "Installing Using ISO Image" on page 12.
1
Go to
support.dell.com
.
2
Ty p e
Imaging Solutio
ns in the
Search
field and press <Enter>.
3
Navigate to Dell Proximity Printing Solution sub-section.
4
Click the link to download the DPPS server installation file.
5
Click
I agree
if you agree to the license terms. The
File Download
window appears.
6
Click
Save
. The
Save As
window appears.
7
Select the folder where you want to save the file and click
Save
.
Installing Using Package
1
Open the file that you downloaded. The
Application: Dell Proximity
Printing Solution
window appears.
2
Click
Install Package.
3
Type the root account password.
The installer downloads any additional dependencies during installation.
4
Click inside the terminal window embedded in the installer.
5
Continue installation by moving to "Setting Installation Package Options"
on page 13.
DPPS – Installation Guide 12
Installing Using ISO Image
NOTE: When installing the DPPS server updates using an ISO image, if you enter
any incorrect information, you can reset it by selecting PackageConfigure at the
end of the installation process.
1
Use one of the following methods to make the ISO visible to the
DPPS Server:
a
For physical servers, burn the ISO image to a CD/DVD and insert
it into the optical drive.
b
For virtual servers, mount the ISO image using the virtual server
system for mounting ISOs.
c
If you downloaded the DPPS ISO directly into the virtual server,
type the following commands in a terminal:
sudo mkdir /mnt/iso
sudo mount -o loop /PathTo/DPPS-0.5.3-Server-
Packages.iso /mnt/iso
NOTE: The version number, 0.5.3 in this example, may vary depending on
the package you are installing.
2
After you mount the ISO,
a
Click
System
Administration
Software Sources
.
b
Click
Third Party Sources
tab.
c
Click
Add
and type the path to your optical drive/ISO mount:
deb file:///mnt/iso /
where
mnt/iso
is the corrected path of the mounted ISO,
for example
media/cdrom0
. If you used the third method (1 – c)
to mount the ISO, the path is
mnt/iso
.
NOTE: You must insert a space after iso in the command.
d
Click
Add Source
.
e
Close the
Software Sources
window. The utility validates the source
before it exits.
3
Click
System
Administration
Synaptic Package Manager
.
13 DPPS – Installation Guide
4
In the Filter field, type DPPS and press <Enter>. You should get one
result, dpps, which is the DPPS installation disc.
NOTE: If you do not get any results, clear the search box and manually
locate the package in the list.
5
Right-click the DPPS installation disc, click
Mark for Installation
, and
follow the instructions on the screen.
6
Click
Apply
on the toolbar and follow the instructions on the screen.
7
The server setup process begins.
Setting Installation Package Options
1
Set a password for the root user account of CUPS server when prompted.
NOTE: You will be prompted for this password several times during the
installation process.
2
Type the FQDN and click
Forward
.
3
Type the short name of the server and click
Forward
.
4
Type the workgroup/domain name and click
Forward
.
NOTE: The workgroup or domain names must be in capital letters.
5
Type the Realm (Kerberos) that the server connects to, and click
Forward
.
6
Type the KDC for the Kerberos Realm that the server is on,
and click
Forward
.
7
Click
Close
after installation completes.
8
Close the Synaptics Package Manager.
Setting up Database
To setup the database and create the database schema, type the following
command in a terminal window:
mysql -u root -p < /etc/dpps/dpps.sql
Type the root account password, if prompted.
NOTE: You do not get a confirmation on successful execution of the command.
The caret returns to a command prompt.
DPPS – Installation Guide 14
Setting up Administration Account Access
1
Type the following command in a terminal window:
sudo gedit /etc/group
2
Search for
lpadmin
in the document that appears.
3
Edit the line to state account names in the following format
(assuming dppadmin is the root account on the Ubuntu installation):
lpadmin:x:112:dppadmin,username1,username2
4
Save the document and exit GEdit.
NOTE: You can later add Unix groups for printer access lists to this file.
Joining the Server to Active Directory/Domain
To join the server to the Active Directory
®
or to the domain:
1
Type the following command in a terminal window:
sudo net ads join -s /etc/dpps/smb.conf -U ####
where #### is the name of a domain controller account.
If you get a message
DNS update failed!
, ignore it.
2
Type the root account password, if prompted.
3
Type the domain controller's account password.
4
Type the following command in a terminal window:
sudo net ads keytab add HTTP -s /etc/dpps/smb.conf
-U ####
where #### is the login name of a domain administrator.
5
Type the domain controller account password.
6
Type the following command in a terminal window:
sudo /etc/dpps/kerberos-setup.sh
This command overwrites the default system Kerberos file with DPPS's
customized file.
7
Restart Ubuntu.
15 DPPS – Installation Guide
Testing the Server
1
Type the following command in a terminal to initialize your new
authentication:
kinit ####
where #### is the Microsoft
®
Windows
®
login name.
This command initializes the Ubuntu system with your Kerberos
Authentication, similar to what occurs when you log into Windows
on a domain.
2
Type the password for the account you used in step 1 and press <Enter>.
NOTE: A message appears only if there is an error. If the command
executes successfully, the caret return to the command prompt.
3
Close the terminal window.
4
Open your web browser, type
about:config
in the address bar,
and press <Enter>.
5
Skip the warning that appears.
6
Ty p e
negotiate
in the filter box.
7
Edit the following two fields to state
companyname.com
:
negotiate.negotiate-auth.delegate-uris
negotiate.negotiate-auth.trusted-uris
8
In the browser’s address bar, type
https://
fqdn
:631/
, where
fdqn
is the Fully
Qualified Domain Name that you specified earlier during installation.
9
If you get a message stating that the web page certificate is invalid,
provide your own certification to this web page to prevent this message
in future. Till you provide the certification, add an exception to continue
to the page. For more information on adding security exceptions, see your
browser’s documentation.
DPPS – Installation Guide 16
2
Installing Ubuntu 64-bit
Server Installation Requirements
The Dell Proximity Printing Solution (DPPS) server requires the following:
A hardware or virtual server that can install Ubuntu 8.10 Server
Edition (64 bit).
At least 2 GB of RAM and a 2 GHz Dual Core processor.
RAID-5 storage setup.
NOTE: The hardware requirements may be higher if you have a large setup;
for example 100+ buildings or 1000+ printers.
An active external internet connection for the DPPS server.
The server administrator must have operational knowledge of Linux based
operating systems, particularly Ubuntu.
The server must be identifiable by the domain controller as a trusted
system, otherwise the DPPS server may not be able to join the domain.
You must have the following information:
The workgroup/domain name used in your network environment.
The Realm used in your network environment.
The domain name you want to use for the system that will be hosting
the server.
The Fully Qualified Domain Name (FQDN) for the server you wish to
set up.
Address of the domain controller/KDC.
Static IP Address for DPPS server.
NOTE: For more information on workgroup, domain, Realm, DNS, SMTP,
routing, etc., contact your network administrator.
17 DPPS – Installation Guide
Installation Notes
All the commands used are case sensitive. Using a different case may cause
unexpected results.
•The
sudo
prefix executes the command following it in administrator mode.
Nano is a text editor. To exit it, press <Ctrl><X>.
Any text prefixed with # is a comment.
If your network requires a proxy to access the internet, your DPPS server
needs permission to use this proxy. If you don't have permission to use a
proxy server, follow these steps:
a
Update Ubuntu. See "Updating Ubuntu" on page 20.
b
Download and install the DPPS server package. See "Downloading,
Installing, and Configuring the DPPS Server Package" on page 21.
c
Set installation package options. See "Setting Installation Package
Options" on page 23.
d
Set a static IP address. See "Installing Linux and Setting a Static IP
Address" on page 18.
e
Join the DPPS server to AD/Domain. See "Joining the Server to Active
Directory/Domain" on page 24.
DPPS – Installation Guide 18
Installing Linux and Setting a Static IP Address
You must create a server install using Ubuntu 8.10 Server Edition (64-bit).
After the installation is complete, you must set a static IP address for the
DPPS server. If the setting for static IP are lost after rebooting, follow the
steps below to hard-code the information.
1
Type the following command in a terminal window:
sudo update-rc.d -f NetworkManager remove
2
Restart Ubuntu by typing the command
sudo reboot
.
3
Type the following command in a terminal window:
sudo nano /etc/hostname
4
Delete the existing text from the document and then type the FQDN.
5
Exit Nano and save the document when prompted.
6
Restart Ubuntu.
7
Type the following command in a terminal window:
sudo nano /etc/network/interfaces
8
The network interface file opens. Type the addresses used by your
environment at the locations highlighted below. Your file should look
similar to the following:
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.0.1
9
Exit Nano and save the document when prompted.
10
Type the following command in a terminal window:
sudo ifup eth0
You may see an error message regarding unable to resolve an address.
Ignore this error as the next step corrects it.
19 DPPS – Installation Guide
11
Type the following command in a terminal window:
sudo nano /etc/resolv.conf
12
Delete the existing text from the document and then type:
nameserver
IP Address of your DNS server
You can type all your namespaces in the same format. Each namespace
must be typed in a new line.
13
Exit Nano and save the document when prompted.
14
Restart Ubuntu.
15
Type the following command in a terminal window:
sudo nano /etc/hosts
16
Use a # to comment out all the line till the first blank line.
17
Type the following in a new line after the commented lines:
127.0.0.1 localhost
This forces the server to look at the DNS settings for DNS information,
allowing a more dynamic setting.
18
Exit Nano and save the document when prompted.
19
Type the following command in a terminal window:
hostname -f
If this command does not return the FQDN, contact Dell Pro-Support
for assistance.
20
Restart Ubuntu.
21
Verify that your settings are retained. If the settings are lost, contact Dell
Pro-Support for assistance.
DPPS – Installation Guide 20
Updating Ubuntu
After you can properly retrieve a static IP address, perform an update to the
latest packages.
If you are installing Ubuntu using an ISO image, skip to "Downloading,
Installing, and Configuring the DPPS Server Package" on page 21.
To update Ubuntu, type the following commands in a
terminal window
:
sudo aptitude update && sudo aptitude upgrade
You must remove two packages from the system as they interfere with the
processes needed by CUPS.
1
Type the following command in a terminal window:
sudo aptitude remove apparmor apparmor-utils
2
Type the root account password.
3
Press Enter when prompted.
Installing the Postfix Mail Server
If you are installing Ubuntu using an ISO image, skip to "Installing Using ISO
Image" on page 22.
Type the following command in a terminal window to set up a mail server for
E-Mail functionality:
sudo aptitude install postfix
After the mail server is installed, you are prompted for configuration. It is
recommended that you leave the default settings of Internet with Smarthost.
  • Page 1 1
  • Page 2 2
  • Page 3 3
  • Page 4 4
  • Page 5 5
  • Page 6 6
  • Page 7 7
  • Page 8 8
  • Page 9 9
  • Page 10 10
  • Page 11 11
  • Page 12 12
  • Page 13 13
  • Page 14 14
  • Page 15 15
  • Page 16 16
  • Page 17 17
  • Page 18 18
  • Page 19 19
  • Page 20 20
  • Page 21 21
  • Page 22 22
  • Page 23 23
  • Page 24 24
  • Page 25 25
  • Page 26 26
  • Page 27 27
  • Page 28 28
  • Page 29 29
  • Page 30 30
  • Page 31 31
  • Page 32 32
  • Page 33 33
  • Page 34 34
  • Page 35 35
  • Page 36 36
  • Page 37 37
  • Page 38 38
  • Page 39 39
  • Page 40 40

Dell Proximity Printing Solution User guide

Type
User guide

Ask a question and I''ll find the answer in the document

Finding information in a document is now easier with AI