Difference between revisions of "Print from Linux"

From ITSwiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
(System wide solution (have root access))
Line 3: Line 3:
 
You need root privileges in order to configure this and the change will apply for all users of the computer
 
You need root privileges in order to configure this and the change will apply for all users of the computer
  
  cp /etc/profile /etc/profile.orig
+
  sudo cp /etc/profile /etc/profile.orig
  echo 'CUPS_SERVER=cups.imm.dtu.dk' >> /etc/profile
+
  sudo echo 'CUPS_SERVER=cups.imm.dtu.dk' >> /etc/profile
  echo 'export CUPS_SERVER' >> /etc/profile
+
  sudo echo 'export CUPS_SERVER' >> /etc/profile
  
 
Reboot the computer. After the computer is rebooted you should now how a list of printers to use. For more information about the printers have look [[Printers_at_DTU_Compute | here]].
 
Reboot the computer. After the computer is rebooted you should now how a list of printers to use. For more information about the printers have look [[Printers_at_DTU_Compute | here]].

Revision as of 13:17, 11 March 2013

System wide solution (have root access)

You need root privileges in order to configure this and the change will apply for all users of the computer

sudo cp /etc/profile /etc/profile.orig
sudo echo 'CUPS_SERVER=cups.imm.dtu.dk' >> /etc/profile
sudo echo 'export CUPS_SERVER' >> /etc/profile

Reboot the computer. After the computer is rebooted you should now how a list of printers to use. For more information about the printers have look here.

If you get a dialogue box about authorization failed containing fields to enter username and password, DO NOT enter your password as it is not required and it sent unencrypted over the network. Just click "OK" and everything will be fine.

User only solution (no root access)

Here root access is not needed. The change will only take effect for the user logged in.

cp ~/.profile ~/.profile.orig
echo 'CUPS_SERVER=cups.imm.dtu.dk' >> ~/.profile
echo 'export CUPS_SERVER' >> ~/.profile

Log out of the system and log in again. The system can now see all available printers.

If you get a dialogue box about authorization failed containing fields to enter username and password, DO NOT enter your password as it is not required and it sent unencrypted over the network. Just click "OK" and everything will be fine.