Re: HP1320 PCL6

2007-06-08 Thread Thanos Rizoulis

O/H Alexander K. Beros wrote

[...]
I tried a few of the HP drivers, but the one that finally worked was
the deskjet driver (#160 in section 3) -- just for the record, my
precise printer model is: hp LaserJet 1320 PCL 6 (60.41.41.0)


When in doubt of what driver to use, you can almost always select HP 
Laserjet III for generic 300dpi printout. This driver has worked 
perfectly in countless occasions in a wide range of laser printer 
products, not necessarily of HP.


--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Virtualization of FreeBSD

2007-06-08 Thread Thanos Rizoulis

O/H Norberto Meijome έγραψε:

you mean problems with the lnc0 , as seen by FBSD in the VM? interesting, i've
never had any problems, but I run VMWare server under Centos 4.

I'll give the e1000 a try  :) thx for the tip.

send any mail to "[EMAIL PROTECTED]"
  
Under various versions of vmware, lnc0 just choked and caused 
disconnection under the first few seconds in a simple stress situation 
(eg a 4MB file transfer over SSH, or some equal samba file transfer). 
The em driver was the solution to all these problems. If I remember 
correctly, selecting a x64 edition of guest OS or selecting 2 CPU cores, 
provides you directly with em instead of lnc.


My opinion about MS virtual PC is that it gave me the once in a lifetime 
opportunity to capture a full BSOD in bitmap file. I put it as a desktop 
in a public PC, and laughed as everyone kept pressing Ctrl-Alt-Del. I 
dumped MS virtual PC shortly after.


One serious tip about Vmware, is that when selecting disks, you can 
select a *physical* disk instead of a virtual and proceed with 
installation on that physical disk. Or you can keep a freebsd server 
installed on a virtual disk, then connect a physical disk on the same VM 
and dump/restore as you please. It has been tested with over 7GB OS 
installs and works like a charm.


--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Whats eating my cpu ?

2007-06-08 Thread Thanos Rizoulis

O/H Nikos Vassiliadis έγραψε:

Ah it's a virtual machine! Add to /boot/loader.conf kern.hz="100".
This will make the kernel tick 100 time per second. The default is
1000 times per second, which might be a bit high for your virtual
machine "server". Don't know if it's going to affect your situation,
but it's good to set it this way, anyway.

This goes for vmware server too. Although when I am running freebsd 
under vmware in linux,

no changes are necessary and speed is just blazing.

--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Seeking recommendation for anti-spam software

2007-06-06 Thread Thanos Rizoulis

O/H Philip Hallstrom έγραψε:
I am running a mail server using Postfix and Dovecot.  I would like 
to hear people's recommendation for which port to use to add server 
side anti-spam. The problem these days is a richness of choices, so 
it's hard to know port which to try.
How you looked into assp? It looks like a good all-arround solution. I 
say "looks like" because I have only installed it.


Port:   assp-1.2.6
Path:   /usr/ports/mail/assp
Info:   Anti-Spam SMTP Proxy
Maint:  [EMAIL PROTECTED]

WWW:http://assp.sourceforge.net/




--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: enable fetchmail system-wide mode

2007-06-04 Thread Thanos Rizoulis

O/H Simon Barner έγραψε:

Hello Gerard,

  

I had to slightly modify it to work the way I wanted on my system. I
would suggest that you do that 'AFTER' you have gotten it to relatively
the way you want it to.



Are these changes useful for other users, too? If so, please send me
a diff, so I can modify the port.

  

This is a little guide to setting up fetchmail 6.3.8

   cd /usr/ports/mail/fetchmail
   make install clean

   echo 'fetchmail_enable="YES"'>>/etc/rc.conf
   echo 'fetchmail_polling_interval="60"'>>/etc/rc.conf

The above two are mentioned in /usr/local/etc/rc.d/fetchmail

   ee /usr/local/etc/fetchmailrc (initially it is nearly empty)

set invisible
set no bouncemail
set no spambounce
set postmaster [EMAIL PROTECTED]
set syslog
poll pop.mail.yahoo.com
   timeout 40
   proto pop3
   user "username"
   pass "password"
   is [EMAIL PROTECTED]
   fastuidl 1
   fetchlimit 0
   limit 0
   keep
   forcecr

The above options are for a client who wishes to keep messages stored in 
remote POP3 mailboxes. *man fetchmail* for specifics, especially at the 
end where it gives a nice table of availiable commands and fetchmailrc 
options. The MTA handling the local domain is qmail, hence the required 
"forcecr" option.
The timings (60sec per POP3 access) may seem agressive but I contacted 
the ISP and they have no problem with that and the client is happy to 
have nearly "email-chat" sessions. Users or abusers, as long as they pay 
the bucks


   chmod 0700 /usr/local/etc/fetchmailrc
   chown fetchmail:fetchmail /usr/local/etc/fetchmailrc (the 
permissions are already set anyway)

   /usr/local/etc/rc.d/fetchmail start

Also there is a new option I haven't seen before. Suppose that fetchmail 
is sleeping and you want to wake it up *right now* to receive new messages:
  
   /usr/local/etc/rc.d/fetchmail awaken


Watch /var/log/maillog for fetchmail activity.

--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: trouble with samba

2007-06-01 Thread Thanos Rizoulis

O/H Reid Linnemann έγραψε:


The order in rc.conf makes no difference, the order of rc file execution 
 is determined by rcorder(8).


It is nice to learn a new thing every day, thank you!

So this goes deeper than I originally thought. Looking at my 
/usr/local/etc/rc.d/samba I see that:


# PROVIDE: nmbd smbd
# REQUIRE: NETWORKING SERVERS DAEMON ldconfig resolv
# BEFORE: LOGIN
# KEYWORD: shutdown

...so probably some of the services in the REQUIRE line are slow to 
start for our friends' machines and samba detects this and exits with 
Signal 6.
This is well beyond my skills already. I am merely speculating here, 
someone with greater experience should probably look into this.


--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: trouble with samba

2007-06-01 Thread Thanos Rizoulis

O/H Jonathan Horne έγραψε:


samba_enable="YES"
# apcupsd_enable="YES"
cupsd_enable="YES"


A quick search by google says that:
[quote]
Signal 6 is SIGABRT -- see /usr/include/sys/signal.h.  A process dying
with this signal is usually due to it calling the abort(3) function.
That generally indicates that the process itself has found that some
essential pre-requisite for correct function is not available and
voluntarily killing itself, rather than the process being killed by
the kernel because it ran over resource limits or looked at memory
addresses funny or something.
[/quote]

Check the build config for samba3:

cd /usr/ports/net/samba3
make config

Does it include cups support? If yes, then cupsd should start before samba.

--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: trouble with samba

2007-06-01 Thread Thanos Rizoulis

O/H Jonathan Horne έγραψε:
 > /head scratching

Could you post your /etc/rc.conf ?
I have a headless installation of FreeBSD 6.2 p4 and Samba 3.0.24,1
I am just upgrading the installation to 3.0.25,1 I'll check if it makes 
any difference in the logs.


--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Nvidia doesn't start on cryptic errors

2007-05-30 Thread Thanos Rizoulis

O/H Vittorio De Martino έγραψε:

Il Tuesday 29 May 2007 20:11:00 [EMAIL PROTECTED] ha scritto:

What nVidia driver are you trying to install and does your laptop have an
I'm installing the latest snapshot of the port "/usr/ports/x11/nvidia-driver" 
and on my new laptop there is a label saying "graphics by NVIDIA GeForce Go 
7400"


Ciao
Vittorio
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



I would suggest you go to the nvidia site and check which driver version 
supports your chipset. They already have two separate *legacy* lines of 
drivers availiable.
This effectively means that my aged GF4MX440 will not work with the 
latest drivers unless I find out which exact driver version does.


--
RTFM and STFW before anything bad happens
_________
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: connecting user root with ssh

2007-05-29 Thread Thanos Rizoulis

O/H Abdullah Ibn Hamad Al-Marri έγραψε:


Hello,

You can create a user and add the user into the wheel in /etc/group

It's not recommended to ssh to the box using root, use su after you
log to the shell.

If you are insist to ssh as root which is disabled by default in
sshd_config, you can uncomment it, you are warned, do not allow SSH to
your box with user root at all.


...and along the way you will want to install "denyhosts" or key 
authentication...


Having root logon enabled remotely is just asking for trouble.

--
RTFM and STFW before anything bad happens
_________
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Java on the BSD Desktop?

2007-05-29 Thread Thanos Rizoulis

O/H Ghirai έγραψε:


I would say Python would be more suitable (smaller, faster), plus it's
installed by default on quite a few *nix OS.



I would say, use any language you guys want, but I would like the final 
product to be a console-only app, thank you :)


--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: make packages

2007-05-28 Thread Thanos Rizoulis

O/H Albert Shih έγραψε:

Hi All

I would like when a make install in any ports the system make a tbz in
/usr/ports/packages/All every time and WITHOUT any option in command line
(because there many people on the server).

Where can I put some option to do that ?


Assuming you are using FreeBSD 6.2 Release:

man ports
http://www.freebsd.org/cgi/man.cgi?query=ports&apropos=0&sektion=0&manpath=FreeBSD+6.2-RELEASE&format=html

You are probably interested in *make package*


--
RTFM and STFW before anything bad happens
_____
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: APCUPSD with Belkin Model F6C900-UNV UPS on FreeBSD 6.2?

2007-05-26 Thread Thanos Rizoulis

O/H L Goodwin έγραψε:

I'm still looking for the right UPS for a server
running FreeBSD 6.2. 


Staples has the Belkin Enterprise Series 900VA UPS
(model F6C900-UNV) on sale for $89.99.

Will apcupsd on FreeBSD 6.2 work with this unit???


Theoretically no 
(http://www.apcupsd.org/manual/Supported_UPSes_Cables.html) unless 
someone with hands-on experience on this unit can say otherwise.



--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: freebsd network fax server?

2007-05-26 Thread Thanos Rizoulis

O/H Anish Mistry έγραψε:

On Thursday 24 May 2007, Dave wrote:

Hello,
I've got a setup using HylaFAX. 


The critical parts of the question about Hylafax are:
a) are you using hylafax server with windows clients? and if yes
b) what cliesnt software are you using to send faxes? (there are dosens 
of them)


I am interested too in such a solution and I am stuck at what client to 
select for windows based machines.


--
RTFM and STFW before anything bad happens
_
Thanos Rizoulis
Electronic Computing Systems Engineer
Larissa, Greece
FreeBSD/PCBSD user
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"