Re: [SLUG] Printer problem

2008-02-21 Thread Glen Turner

On Thu, 2008-02-21 at 14:23 +1100, [EMAIL PROTECTED] wrote:
 The printer is a Lexmark c532dn and I'm runninf Gutsy G on a laptop.
 
 I'd like to connent it to a network, but the installation programs I've
 consulted don't mention it.
 
 Someone suggested CUPS.
 
 Has anyone any experience with this model?

Looking at the specs it is a fairly standard PostScript
printer with a ethernet port.


ATTACH THE PRINTER, GIVE IT A NAME AND ADDRESS

The first thing to do is to plug it into the ethernet.
Your DHCP server will give it an address and print its
ethernet MAC address in the log file.

DHCPDISCOVER from 00:12:34:12:34:56 via eth0

Since it's useful for printers to have a fixed name
enter one in /etc/dhcpd.conf

host lexmark-c523dn-1 {
  hardware ethernet 00:12:34:12:34:56;
  option host-name lexmark-c523dn-1;
  option domain-name printers.example.edu.au;
  ddns-hostname lexmark-c523dn-1;
  ddns-domainname printers.example.edu.au;
}

If you don't run Dynamic DNS then do it the old fashioned
way by giving it a fixed IP address in DHCP

host lexmark-c523dn-1 {
  hardware ethernet 00:12:34:12:34:56;
  option host-name lexmark-c523dn-1;
  option domain-name printers.example.edu.au;
  fixed-address 1.2.3.4;
}

and manually updating your DNS zones

  lexmark-c523dn-1.printers.example.edu.au. IN A 1.2.3.4
  in-addr.arpa.4.3.2.1. IN PTR lexmark-c523dn-1.printers.example.edu.au.

You might want to add 
  option ntp-servers 1.2.3.1;
  option log-servers 1.2.3.2;
as this will put the right time on the printer and send any messages
to your site's syslog server so you can see what happened when things
go wrong.

Now restart the printer and it will pick up its new address
and name.

Although this is a lot of messing about, avoiding configuring the
IP address onto the printer manually is well worth the hassle.
Using DHCP as widely as possible makes network changes later
on much more simple. Using DHCP with DDNS makes life very,
very simple.


CONFIGURE PRINT QUEUE

Configure the printer into CUPS. There's some nice GUIs for
this.  I really recommend using the GUI interface, then
checking the configuration file afterwards.  You see
something like this in /etc/cups/printers.conf

DefaultPrinter lexmark-c523dn-1
Info Lexmark C532dn colour laser printer
Location Room 101
DeviceURI ipp://lexmark-c523dn-1.printers.example.edu.au/ipp/port1
...
/Printer

I really recommend using the GUI interface, then checking the
configuration file afterwards.

If the printer isn't in the GUI then select the Generic Postscript
option and say you have a .PPD file. A PPD is a printer description
file and it tells CUPS and other programs about the printer's
capabilities.

Look on linuxprinting.org for a PPD file. If there isn't one then
look on the CD that came with the printer and look for a .PPD file
there. You may need to use cabextract or unshield to explode
installer data files. Some Windows PostScript drivers use PPD
files, so there will be one somewhere.

Linux has excellent support for PostScript printers. You'll be
very pleased with the results.


PRINTERS FOR SMALL BUSINESS

If you have an office, rather than just one computer, then set
up a VLAN just for printers, say VLAN 10 with addresses 10.10.10.*/24.
Put an interface of the CUPS server on this VLAN and another interface
of that server on the routed network of your office.  Now users
can only see the CUPS queues -- this is a good thing.

The CUPS server will advertise all the printers it knows of, and
Linux and MacOS X users need no configuration to use the printer.

You can gateway CUPS into Samba.  Do this at the CUPS server.
The Samba server can contain the Windows printer drivers too,
so visitors with Windows machines can easily use your printer
too.

The printers cannot be contacted directly from the office network
or from the Internet. This means you don't need to worry if
the printer software has a vulnerability (and a lot of then do).
The CUPS server is acting as an application-specific firewall
for the printers.

-- 
Glen Turner http://www.gdt.id.au/~gdt/
0416 295 857 or +61 416 295 857

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] ClamAV user interface on Ubuntu 7.10 - how to access GUI?

2008-02-21 Thread Aleksey Tsalolikhin
Hi.  I am not familiar with Ubuntu, but a friend recently upgraded
from Ubuntu 6 to 7 and I helped him after the upgrade.

(He got a new system with Ubuntu 7 on it, so it was a fresh install.)

One of the things I did was run apt-get install clamav to install
anti-virus on it, per his request, I want to have anti-virus and I
used to have ClamAV.

Now he says, In my previous computer I was able to check that the
security was up to date by going into Applications Clamav but I do not
see any means to do that on this computer.

How do I get ClamAV to show up under his applications, please?
Should I have installed it a different way?

Thanks,
Aleksey
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Ubuntu 7.10 looses printer settings

2008-02-21 Thread leei
Hi all,

Sorry to bother you all again.

I am using Ubuntu 7.10 and using an HP 5150 to print onto.

The problem is, is that Ubuntu 7.10 looses the printer drivers as when you
want to print something nothing happens until you remove the old printer
driver and then reinstall the printer driver.

Is there a way to fix the above or is there something that I am doing
wrong as this did not happen in the previous release of Ubuntu.

Thanks,
Lee


---
South Africas premier free email service - www.webmail.co.za 
--
For super low premiums, click here http://www.webmail.co.za/dd.pwm

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] ClamAV user interface on Ubuntu 7.10 - how to access GUI?

2008-02-21 Thread James
G'day Aleksey,

I've never used ClamAV before, but I did apt-cache search clamav to get a
list of clamav-related packages and noticed that there's a package called
avscan which provides a GTK frontend for ClamAV. So you probably want to do
sudo apt-get install avscan. Another one you might want to try is clamtk.

- James Foster


On Thu, Feb 21, 2008 at 9:35 PM, Aleksey Tsalolikhin 
[EMAIL PROTECTED] wrote:

 Hi.  I am not familiar with Ubuntu, but a friend recently upgraded
 from Ubuntu 6 to 7 and I helped him after the upgrade.

 (He got a new system with Ubuntu 7 on it, so it was a fresh install.)

 One of the things I did was run apt-get install clamav to install
 anti-virus on it, per his request, I want to have anti-virus and I
 used to have ClamAV.

 Now he says, In my previous computer I was able to check that the
 security was up to date by going into Applications Clamav but I do not
 see any means to do that on this computer.

 How do I get ClamAV to show up under his applications, please?
 Should I have installed it a different way?

 Thanks,
 Aleksey
 --
 SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
 Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] ClamAV user interface on Ubuntu 7.10 - how to access GUI?

2008-02-21 Thread Sridhar Dhanapalan
On Thu, 21 Feb 2008, Aleksey Tsalolikhin [EMAIL PROTECTED] wrote:
 Hi.  I am not familiar with Ubuntu, but a friend recently upgraded
 from Ubuntu 6 to 7 and I helped him after the upgrade.

 (He got a new system with Ubuntu 7 on it, so it was a fresh install.)

 One of the things I did was run apt-get install clamav to install
 anti-virus on it, per his request, I want to have anti-virus and I
 used to have ClamAV.

 Now he says, In my previous computer I was able to check that the
 security was up to date by going into Applications Clamav but I do not
 see any means to do that on this computer.

 How do I get ClamAV to show up under his applications, please?
 Should I have installed it a different way?

What is your friend using the anti-virus software for? A normal Linux system 
does not need anti-virus software. The main reason to run such software is to 
clean Windows viruses before they can get to Windows machines (e.g. on an 
e-mail server).

For more info:
http://searchenterpriselinux.techtarget.com/tip/0,289483,sid39_gci1288808,00.html

This is separate from maintaining a secure system, but most major distros are 
fairly secure out of the box.


-- 
Your toaster doesn't get a virus. Your television doesn't get a virus.
Why should your computer? http://www.linux.org.au/linux


signature.asc
Description: This is a digitally signed message part.
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] ClamAV user interface on Ubuntu 7.10 - how to access GUI?

2008-02-21 Thread Richard Ibbotson

 Hi




 Now he says, In my previous computer I was able to check that the
 security was up to date by going into Applications Clamav but I do not
 see any means to do that on this computer.


Don't know which desktop you are using but

http://klamav.sourceforge.net/klamavwiki/index.php/Main_Page

sudo apt-get install klamav




 --
 Richard


www.sheflug.org.uk
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Rick Welykochy

Anyone had a play with the Asus micro laptop?

Described here: http://tinyurl.com/ynnn9c

It runs some form of Linux, has no HDD, just 4 GB of flash.
Sounds ideal for travel ... but perhaps the 7 screen is
a bit too small.

Going for about $450 at JB Hifi and less on eBay.


cheers
rickw


--
_
Rick Welykochy || Praxis Services

A polar bear is a rectangular bear after a coordinate transform.
 -- Anon.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


[SLUG] Convert evolution mail filters into procmail recipes?

2008-02-21 Thread Adelle Hartley
Is there already a way of converting mail filters into procmail recipes?

I recently accidentally deleted all my procmail rules.  I made a lot of
mistakes while I was making them.  I'd rather recreate them in
evolution, but not if I can't turn them into procmail rules afterwards.

Adelle.


-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Peter Hardy
On Fri, 2008-02-22 at 16:52 +1100, Rick Welykochy wrote:
 Anyone had a play with the Asus micro laptop?
 
 Described here: http://tinyurl.com/ynnn9c
 
 It runs some form of Linux, has no HDD, just 4 GB of flash.
 Sounds ideal for travel ... but perhaps the 7 screen is
 a bit too small.
 
 Going for about $450 at JB Hifi and less on eBay.

I picked one up about a month ago, while they were still pretty much
exclusive to Myer.

The installed operating system is Xandros with icewm and a custom
desktop interface. I can't comment on it too much because getting what I
wanted out of it seemed too much effort so I installed xubuntu over the
top of it in short order. But my one other (non-technical) friend who
has one absolutely loves the OS.

It's small and light and fairly awesome. The keyboard feels slightly
cramped (the right shift key irritates me no end). The screen resolution
is 1024x600. Again, a little getting used to (the wiki over at
eeeuser.com has a lot of tips for small themes and trimming a lot of
vertical space from firefox and the like), but I personally think it's
pretty good for things like web browsing.

For the price, I think it's a great machine. If anybody wants to have a
poke at it, I'm planning on turning up at the next SLUG meeting.

-- 
Pete

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Martin Visser
On Fri, Feb 22, 2008 at 5:55 PM, Peter Hardy [EMAIL PROTECTED] wrote:
The screen resolution
  is 1024x600.

All the doco says 800×480??

-- 
Regards, Martin

Martin Visser
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Martin Visser
There were dozens at LCA last month - geek envy abounded. They seem very solid.
The Linux Action Show guys did a pretty thorough review in their
latest podcast - http://www.linuxactionshow.com
They are quite amenable to installing other distros if you don't like
the default ( boot off a SD card if you want)
Compiz apparently works a treat.

It seems this form factor (and capability) is neatly filling the gap
between regular notebooks and PDAs that tablets and UMPC have failed
to fill. I'd be pretty confident that they other main vendors will be
quickly trying to come up with competition. (And no, even though I
work for one of them - I have no inside knowledge - I have only been
watching the public ruminations)



On Fri, Feb 22, 2008 at 4:52 PM, Rick Welykochy [EMAIL PROTECTED] wrote:
 Anyone had a play with the Asus micro laptop?

  Described here: http://tinyurl.com/ynnn9c

  It runs some form of Linux, has no HDD, just 4 GB of flash.
  Sounds ideal for travel ... but perhaps the 7 screen is
  a bit too small.

  Going for about $450 at JB Hifi and less on eBay.


  cheers
  rickw


  --
  _
  Rick Welykochy || Praxis Services

  A polar bear is a rectangular bear after a coordinate transform.
   -- Anon.
  --
  SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
  Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html




-- 
Regards, Martin

Martin Visser
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Adrian Chadd
On Fri, Feb 22, 2008, Martin Visser wrote:
 There were dozens at LCA last month - geek envy abounded. They seem very 
 solid.
 The Linux Action Show guys did a pretty thorough review in their
 latest podcast - http://www.linuxactionshow.com
 They are quite amenable to installing other distros if you don't like
 the default ( boot off a SD card if you want)
 Compiz apparently works a treat.
 
 It seems this form factor (and capability) is neatly filling the gap
 between regular notebooks and PDAs that tablets and UMPC have failed
 to fill. I'd be pretty confident that they other main vendors will be
 quickly trying to come up with competition. (And no, even though I
 work for one of them - I have no inside knowledge - I have only been
 watching the public ruminations)

I like them. Its going to be my eventual replacement of my old sony picturebook,
which exists in the same form factor.

That form factor is surprisingly useful in all kinds of places.

Now, if only you could fold the screen all the way back over the keyboard
and read books on it.. :)



Adrian

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Peter Hardy
On Fri, 2008-02-22 at 18:14 +1100, Martin Visser wrote:
 On Fri, Feb 22, 2008 at 5:55 PM, Peter Hardy [EMAIL PROTECTED] wrote:
 The screen resolution
   is 1024x600.
 
 All the doco says 800×480??

Sorry, brain fart.

It is indeed 800x480.

-- 
Pete

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html


Re: [SLUG] Asus Eee 4G 7 Micro Laptop

2008-02-21 Thread Harrison Conlin
On 2/22/08, Rick Welykochy [EMAIL PROTECTED] wrote:
  It runs some form of Linux, has no HDD, just 4 GB of flash.
  Sounds ideal for travel ... but perhaps the 7 screen is
  a bit too small.
Ive owned one since Early January and I've never really found screen
size to be an issue, was great when i was in Melbourne


On 2/22/08, Martin Visser [EMAIL PROTECTED] wrote:
 On Fri, Feb 22, 2008 at 5:55 PM, Peter Hardy [EMAIL PROTECTED] wrote:
  The screen resolution
is 1024x600.


 All the doco says 800×480??

The I can confirm the screen resolution is 800x480


I brought mine to the last SLUG meeting and had many people poke at it
and I will do the same this month (feel free to ask any questions
about it and I will try my best to answer them)
-- 
Harrison Conlin
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html