Re: xauth failure when tunneling over ssh

2008-11-12 Thread Pollywog
On Wednesday 12 November 2008 15:51:42 Elliot Isaacson wrote:


 #UsePAM yes
 #AllowTcpForwarding yes
 #GatewayPorts no
 #X11Forwarding yes
 #X11DisplayOffset 10
 #X11UseLocalhost yes
 #PrintMotd yes
 #PrintLastLog yes
 #TCPKeepAlive yes
 #UseLogin no
 #UsePrivilegeSeparation yes
 #PermitUserEnvironment no
 #Compression delayed
 #ClientAliveInterval 0
 #ClientAliveCountMax 3
 #UseDNS yes
 #PidFile /var/run/sshd.pid
 #MaxStartups 10
 #PermitTunnel no

Shouldn't PermitTunnel be set to yes  ?


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


Re: xauth failure when tunneling over ssh

2008-11-12 Thread Pollywog
On Wednesday 12 November 2008 18:20:00 Elliot Isaacson wrote:
  On Wednesday 12 November 2008 15:51:42 Elliot Isaacson wrote:
   #UsePAM yes
   #AllowTcpForwarding yes
   #GatewayPorts no
   #X11Forwarding yes
   #X11DisplayOffset 10
   #X11UseLocalhost yes
   #PrintMotd yes
   #PrintLastLog yes
   #TCPKeepAlive yes
   #UseLogin no
   #UsePrivilegeSeparation yes
   #PermitUserEnvironment no
   #Compression delayed
   #ClientAliveInterval 0
   #ClientAliveCountMax 3
   #UseDNS yes
   #PidFile /var/run/sshd.pid
   #MaxStartups 10
   #PermitTunnel no
 
  Shouldn't PermitTunnel be set to yes  ?

 Thanks for the suggestion. PermitTunnel has something to do with
 using a specific software network loopback device, tun(4). I don't
 think it has anything to do with forwarding traffic, X11 or
 otherwise, through an ssh tunnel. Just to be sure I tried switching
 that on, but it didn't seem to help.

 This is a reiteration of the problem so no one has to sift though
 the archives to find it:

 $ xhost +

 $ ssh -Y 192.ip.of.freebsdserver
 Warning: No xauth data; using fake authentication data for X11
 forwarding.

 /usr/local/bin/xauth:

and try 'ssh -X' instead of 'ssh -Y'
I use 'ssh -X'

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


Re: xauth failure when tunneling over ssh

2008-11-12 Thread Pollywog
On Wednesday 12 November 2008 18:20:00 Elliot Isaacson wrote:
  On Wednesday 12 November 2008 15:51:42 Elliot Isaacson wrote:
   #UsePAM yes
   #AllowTcpForwarding yes
   #GatewayPorts no
   #X11Forwarding yes
   #X11DisplayOffset 10
   #X11UseLocalhost yes
   #PrintMotd yes
   #PrintLastLog yes
   #TCPKeepAlive yes
   #UseLogin no
   #UsePrivilegeSeparation yes
   #PermitUserEnvironment no
   #Compression delayed
   #ClientAliveInterval 0
   #ClientAliveCountMax 3
   #UseDNS yes
   #PidFile /var/run/sshd.pid
   #MaxStartups 10
   #PermitTunnel no
 
  Shouldn't PermitTunnel be set to yes  ?

 Thanks for the suggestion. PermitTunnel has something to do with
 using a specific software network loopback device, tun(4). I don't
 think it has anything to do with forwarding traffic, X11 or
 otherwise, through an ssh tunnel. Just to be sure I tried switching
 that on, but it didn't seem to help.

 This is a reiteration of the problem so no one has to sift though
 the archives to find it:

 $ xhost +

 $ ssh -Y 192.ip.of.freebsdserver
 Warning: No xauth data; using fake authentication data for X11
 forwarding.

 /usr/local/bin/xauth:



In case you have not done so, you should also check /etc/ssh/ssh_config on the 
client machines.  I had to add something like this on my client machine which 
is Linux:

Host localhost
  HostName 127.0.0.1
  ForwardAgent yes
  ForwardX11 yes
  ForwardX11Trusted yes
  PubkeyAuthentication yes
  PasswordAuthentication yes
  Protocol 2

Host *
   ForwardAgent no
   ForwardX11 no
   ForwardX11Trusted yes
   XAuthLocation /usr/bin/xauth


If you are using gdm on the server, you might try shutting that down for 
testing.  I seem to recall having to modify some setting in gdm that had to do 
with xauth.  I did not make a note of what I did though.



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


Re: xauth failure when tunneling over ssh

2008-11-12 Thread Pollywog
On Wednesday 12 November 2008 18:58:18 Pollywog wrote:
 On Wednesday 12 November 2008 18:20:00 Elliot Isaacson wrote:
   On Wednesday 12 November 2008 15:51:42 Elliot Isaacson wrote:
#UsePAM yes
#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
  
   Shouldn't PermitTunnel be set to yes  ?
 
  Thanks for the suggestion. PermitTunnel has something to do with
  using a specific software network loopback device, tun(4). I don't
  think it has anything to do with forwarding traffic, X11 or
  otherwise, through an ssh tunnel. Just to be sure I tried switching
  that on, but it didn't seem to help.
 
  This is a reiteration of the problem so no one has to sift though
  the archives to find it:
 
  $ xhost +
 
  $ ssh -Y 192.ip.of.freebsdserver
  Warning: No xauth data; using fake authentication data for X11
  forwarding.
 
  /usr/local/bin/xauth:

 In case you have not done so, you should also check /etc/ssh/ssh_config on
 the client machines.  I had to add something like this on my client machine
 which is Linux:

 Host localhost
   HostName 127.0.0.1
   ForwardAgent yes
   ForwardX11 yes
   ForwardX11Trusted yes
   PubkeyAuthentication yes
   PasswordAuthentication yes
   Protocol 2

 Host *
ForwardAgent no
ForwardX11 no
ForwardX11Trusted yes
XAuthLocation /usr/bin/xauth


 If you are using gdm on the server, you might try shutting that down for
 testing.  I seem to recall having to modify some setting in gdm that had to
 do with xauth.  I did not make a note of what I did though.
If you run gdm on the server:

I checked one of my boxes which runs Linux and I have this in 
/etc/gdm/gdm.conf

UserAuthFBDir=/tmp
UserAuthFile=.Xauthority

I don't believe this was set by default, I believe it was commented out on my 
FreeBSD box and it was causing problems until I uncommented the two lines.

You might try running 'ssh -vv hostname'  when connecting from the command 
line if you have not tried that.


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


Re: xauth failure when tunneling over ssh

2008-11-11 Thread Pollywog

On Tuesday 11 November 2008 21:27:38 Elliot Isaacson wrote:
 Hi,

 I've set up X11Forwarding on several linux servers before, but I've
 just wasted a day trying (unsuccessfully) to figure out why I can't
 get it working on freebsd (7.0-RELEASE GENERIC).

 I have not changed the defaults in the sshd_config file.

 One the client computer:

 $ xhost +

 $ ssh -Y 192.ip.of.server
 Warning: No xauth data; using fake authentication data for X11
 forwarding.

 /usr/local/bin/xauth:  creating new authority
 file /home/xxx/.Xauthority
 /usr/local/bin/xauth: (stdin):1:  bad display name unix:10.0
 in remove command
 /usr/local/bin/xauth: (stdin):2:  bad display name unix:10.0
 in add command

 [xxx@ ~] kcalc
 X11 connection rejected because of wrong authentication.
 kcalc: Fatal IO error: client killed

 [xxx@ ~] ls -a .Xauth*
 no results

 Now, when I go to the server and login directly, and do a startx,
 the x server starts fine, but there's still no .Xauthority file in
 the home directory. I find that odd.

 This also looks strange to me:

 [xxx@ ~] ps -aux | grep X
 root1470  0.0  2.7 65456 13668  v0  S 4:01PM   0:01.24
 X :0 -auth /home/xxx/.serverauth.1451 (Xorg)

 [xxx@ ~] ls -a /home/xxx/.serverauth*
 no results

 How could it authenticate with a non-existent file?

 Any pointers in the right direction would be greatly appreciated.

I had the same problem when trying to SSH to the FreeBSD machines from Linux.
If I remember correctly, I had to make a change to ssh_config on the Linux side 
to get things to work:

Host *
  XAuthLocation /usr/bin/xauth

It might also help if you would post sshd_config on the FreeBSD side.

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


Re: SSH Port forwarding when PermitRootLogin==no ?

2008-10-27 Thread Pollywog
On Monday 27 October 2008 17:04:46 Kevin Kinsey wrote:
 Hello,

 I'm (still) trying to work around a limitation I've encountered
 with a new service provider (cf. MTA on non-standard port).

 As root:
  # ssh -L 24:server:52525 server

fails because root logins aren't permitted in
 /etc/sshd_config on the server.

 Also as root:
  # ssh -L 24:server:52525 [EMAIL PROTECTED]

 fails - an terminal session is established, but
 when I telnet localhost:24 I receive this in the
 terminal:

 channel 3: open failed: administratively prohibited: open failed

 I was kinda under the impression this should work, since
 the port on the remote server is a dynamic port.

 Any suggestions how I might get this to work?

I have the same problem with my ISP blocking port 25 inbound and outbound, so 
I use a DNS provider that will relay my email (email for a domain) to me on an 
alternate port.  I don't recall how much this costs me but it is around $40 
yearly.

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


Re: kde4 question

2008-10-06 Thread Pollywog
On Sunday 05 October 2008 19:42:36 Gary Kline wrote:
   Over the past four days I've managed to get my FreeBSD server running 
 KDE
   up by installing kde4.  Now, for some reason, konqueror fails to 
 conntect
   anywhere.

   How can I free up my old kde3 files and get konqueror working again?

Have you tried running Konqueror from konsole in order to see the errors?
You might also check the proxy settings and make sure your other browsers are 
working properly (Firefox for example).

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


Re: has anyone actually received a bsdmag ?

2008-10-06 Thread Pollywog
On Monday 06 October 2008 21:48:12 matt donovan wrote:
 On Mon, Oct 6, 2008 at 2:14 PM, Gonzalo Nemmi [EMAIL PROTECTED] wrote:
  On Monday 06 October 2008 4:24:47 pm Craig Butler wrote:
   Hi Guys
  
   I have been subscribed to BSD Magazine since the start of September, I
   was hoping to get the first issue sent to me I am still waiting.
  
   Looking on their website they have the second issue published again
   I am waiting to receive it.
  
   I have tried emailing them but have not had any replies.
  
   Has anybody else received their copy ?
  
   Cheers
  
   Craig B
  
   ___
   freebsd-questions@freebsd.org mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to
   [EMAIL PROTECTED]
 
  Good to know that ...
 
  I bought the first issue on .pdf format back when it was release and I
  was seconds away from subscribing for a full year (printed version) until
  I read
  your mail ...
 
  So .. I guess I'll put my subscription on hold until I know for sure that
  they
  do send the mag to your door and that they do it on time ...
 
  Please, let me know how things end up for you.
 
  Regards
  --
  Blessings
  Gonzalo Nemmi
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]

 BSDmagazine is not the same as Linux Magazine they don't follow teh same
 release dates I believe BSDmag is like every 4 months or something you'll
 get one

I bought the most recent issue (it is only the second issue of the magazine) 
at Borders approximately two weeks ago.  The second issue is an issue about 
OpenBSD.

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


Re: inventory software?

2008-08-26 Thread Pollywog
On Tuesday 26 August 2008 07:01:38 Omer Faruk SEN wrote:
   Hello,

 Is there a inventory software in ports tree? What i want is to learn all
 hardware details (ram ,  cpu , mainboard etc. serial numbers and amount of
 them). I need a simple program that does this but couldn't able to find in
 ports tree

 Thanks in advance.

 Regards.

Coincidentally this morning I found this:

http://www.cyberciti.biz/faq/check-ram-speed-linux/

The information there says it works for Linux, UNIX, and BSD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: rc.d ?

2008-08-14 Thread Pollywog
On Friday 15 August 2008 00:21:40 kalin m wrote:
 it's not in /etc/rc.conf...  it's in /etc/default/rc.conf

 like this:

 local_startup=/usr/local/etc/rc.d # startup script dirs.
 script_name_sep=  # Change if your startup scripts' names contain
 spaces
 rc_conf_files=/etc/rc.conf /etc/rc.conf.local

 there is no /etc/rc.conf.local..  i've never used one before

I believe I had to create /etc/rc.conf.local but I have one.

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


Re: rc.d ?

2008-08-14 Thread Pollywog
On Friday 15 August 2008 02:24:27 Malcolm Kay wrote:
 On Fri, 15 Aug 2008 09:31 am, kalin m wrote:
  hi all...
 
  i used to be able to put startup scripts in
  /usr/local/etc/rc.d/. now on a new 7 install i have the
  scripts there but after restart nothing happens

 Most startup scripts now require a line:
  enable_whatever=YES
 in rc.conf before they will run. This is also usually now the
 case also with scripts in /usr/local/etc/rc.d

 Usually comment lines near the beginning of the script
 will elaborate enable_whatever
 [EMAIL PROTECTED]

I put my own settings in /etc/rc.conf.local so that they will not be 
overwritten when I upgrade the system.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PGP export question

2008-08-14 Thread Pollywog
On Friday 15 August 2008 02:54:54 EdwardKing wrote:
 I use gpg 1.4.9,
 $gpg --list-keys
 /home/edward/.gnupg/pubring.gpg

 then I want to export pubkey,
 $gpg -armor --export keyID  pubkey.asc
 gpg:WARNING: nothing exported

 This content of pubkey.asc is empty,why I can't export the pubkey?

try 'gpg --export -a keyID  pubkey.asc'

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


Re: seen in ports and used but dont remember the name ;)

2008-07-30 Thread Pollywog
On Wednesday 30 July 2008 14:22:36 andrew clarke wrote:
 On Wed 2008-07-30 09:31:13 UTC-, DSA - JCR ([EMAIL PROTECTED]) wrote:
  I have used in the past year an utility for terminal that permit me to
  split the terminal in several sesions vertically/horizontally and also
  save and restore the sesion, letting it doing some commands.
 
  I installed from ports, but I dont remember its name. ;-)

 You are probably describing sysutils/screen, although recently I've
 switched to misc/tmux, which works in a similar way.

Either that one or 'splitvt'
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Windows Unix volunteers

2008-06-26 Thread Pollywog
On Thursday 26 June 2008 16:17:19 Zbigniew Szalbot wrote:
 Hello,

 What is a good place to look for volunteers who would like to modify
 Windows source code for an open source software. We have a programme
 that changes wallpapers on your desktop but it is only available for
 Windows.

Is the modification of Windows source code legal?

And yes,  I know that most of us are not lawyers here.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



Re: Cannot open /etc/termcap

2008-06-03 Thread Pollywog
On Wednesday 04 June 2008 03:10:13 Frank Shute wrote:


 A quick fix would be to scp /usr/share/misc/termcap from your home
 machine to ~/.termcap on the remote host.

 Then ssh into remote host and:

 $ echo TERMCAP=$HOME/.termcap  ~/.ssh/environment

 Log out and ssh in again.

 Might work.

In other words, do it with a test account first, so you don't lock yourself 
out of your regular account.  I have locked myself out a few times while 
testing things.

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


Re: Looking for gurus willing to help write Freebsd tutorials

2008-06-02 Thread Pollywog
On Monday 02 June 2008 15:58:55 [EMAIL PROTECTED] wrote:

 I agree completely, it's what got me over to BSD !


I am a little confused.  I just see a sphere with horns on it that reminds 
me of the BSD daemon's head, only made to look less demonic.  Is it 
supposed to be something else?

If it is one of those toys is that what FreeBSD folks really want to project 
as an image?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Need to build a new mail server

2008-05-30 Thread Pollywog
On Friday 30 May 2008 18:09:48 Jeffrey Goldberg wrote:

 exim: If I were setting up a large complicated installation for say an
 ISP or a mail hosting system, exim is what I would use.  I've heard
 people say that they didn't understand the configuration file, but I
 don't see what the problem is.  It is straight forward and direct.
 You just need to remember that in some sections of the configuration
 file, the order of directives matter.  exim also has this built-in
 procmail replacement (exim filters) in its mail delivery.  Of course,
 sieve has largely replaced the need for this.

I have not used Exim with *BSD's but I used it with Debian at one time and it 
was easy to set up.  More recently, the configuration became complicated, at 
least with Debian.

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


Re: Best Java 1.6 JDK for FreeBSD?

2008-05-07 Thread Pollywog
On Wednesday 07 May 2008 15:44:50 Toomas Aas wrote:
 Gunther Mayer wrote:
  Does anybody use 1.6 in production on FreeBSD? What have your
  experiences been?

 Our Tomcat-based website, which currently gets ca 75000 requests per day,
 has been running with native jdk-1.6.0.3p3 for 6 months. I haven't noticed
 any problems

I have not been using it in FreeBSD but I had to downgrade jdk to 1.5 on my 
Ubuntu machine in order to get my browsers to work correctly.  For this 
reason, I would stay away from it in FreeBSD as well, for the time being.

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


Re: Writing userspace device drivers

2008-05-06 Thread Pollywog
On Tuesday 06 May 2008 19:14:37 Christopher Key wrote:
 Hello,

 I'm wanting to write a driver for lirc to allow me to transmit IR
 signals via a Global Caché GC-100.  In essence, this requires me to
 communicate with the GC-100 via TCP in response to ioctls (received?)
 via /dev/lircX.

 Can anyone point me in right direction towards achieving this?  Is it
 possible to do everything in userspace?  Under Linux, there appears to
 be something called FUSD, which allows one to write userspace device
 drivers.  Is there anything similar under FreeBSD?

Do you mean FUSE?  There is FUSE for FreeBSD.  I have used it with EncFS.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mystery Hardware Error

2008-05-04 Thread Pollywog
On Monday 05 May 2008 03:11:52 Al Plant wrote:



 Aloha list,

 I am getting the same error on FreeBSD 7 RELEASE and 8. Current as David
 is. CD's work fine.
 Anybody know what this is?

I have been getting the errors too, whenever I reboot the machine, I find them 
in the logs.  I don't burn CD's on the machine so I don't know if I could.  I 
normally do that on another machine that runs Linux.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't upgrade lsof

2008-04-23 Thread Pollywog
On Wednesday 23 April 2008 18:25:51 Sam Fourman Jr. wrote:
 I also have the same trouble, FreeBSD 7.0 using portupgrade -ar

 Sam Fourman Jr.

I had the same problem and had to remove lsof and one other package so that I 
could upgrade other packages/ports.

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


overnight upgrade interrupted by questions

2008-04-15 Thread Pollywog
I did 'portupgrade -aP' last night but this morning I found that one package 
had some questions for me about how I want to compile the package (wants to 
know which options I want).  This meant that no packages were compiled since 
the cups package asked questions.

Is there a way to circumvent this problem when upgrading with portupgrade?
I know how to avoid this when installing a single port but not how to avoid it 
when upgrading all available packages.


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


Re: finding BSD Unix users

2008-04-08 Thread Pollywog
On Tuesday 08 April 2008 06:38:01 Ted Mittelstaedt wrote:


 A house with a big back deck, a big grill with a full propane tank, and a
 large cooler full of ice and beer will go a long, long way towards finding
 fellow BSD Unix users.  Put an advert on the bulletin board of your
 local community college and start your own group.


In case it has not been suggested, there is also something called Meetup 
that can help.  http://www.meetup.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Why are some linux users saying that FreeBSD is dying

2008-04-08 Thread Pollywog
On Tuesday 08 April 2008 21:32:01 E. J. Cerejo wrote:
 FreeBSD is a dying OS because netcraft.com confirms it that's the
 argument used some of these guys, and I'm wondering what data are they
 using to make their point!  Even netcraft is running FreeBSD and the
 uptimes section I can see quite a few running FreeBSD and not one linux!
 Is the data from netcraft reliable?

I think perhaps the Linux users who say those things are just trying to get 
people to use Linux, for political reasons and not because Linux is 
necessarily better.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem In Saving inted.conf .

2008-04-07 Thread Pollywog
On Monday 07 April 2008 18:01:18 behnam zahabi wrote:
 Hello
 I have this problem:
 When i make change in ''inted.conf'' (delete ''#'' ) i can't save this file
 (when i want to save, it say unable to create file).

   I think it happens because this file is read only, how can i disable
 this?

If you are using vi or vim to edit the file, I believe putting a ! after the 
command to save the file (do this as the root user or use sudo) will save it.
So instead of :wq in vi, use :wq!

Another way of saving the file is to do (as root)

chmod u+w /etc/inetd.conf

before you edit the file

or 

chmod 600 /etc/inetd.conf

There are many UNIX resources online as well as books that can be useful to 
you in learning UNIX commands.

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


Re: Email problem

2008-04-04 Thread Pollywog
On Friday 04 April 2008 05:33:48 Ruel Luchavez wrote:
 Hi..

 I am having trouble in my email server I spend many hours but i cant fix
 it, hopeu can help me guys
 One of the account i created cant send email in any email address like
 gmail.com I created it the same settings
 with my other account but it doesnt work...is ther a problem on my sever on
 this?

 Your help is greatly needed...THANKS

If you are running Postfix as your MTA, I recommend the Book of Postfix by 
Hildebrandt and Koetter.  It also has a section on getting Courier IMAP 
working and how to get TLS working.  I refer to the book every time I need to 
configure a new Postfix setup.

See Also:

http://www.phparchitecture.com/howto_show.php?id=2

Those won't help much if you are not using Postfix or Courier IMAP.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Does softupdate help squid ?

2008-03-17 Thread Pollywog
On Monday 17 March 2008 19:17:58 Wojciech Puchar wrote:
  Hello
 
  I'm setting up a squid cache (3.0.2) machine FreeBSD 7.0 based and I
  wonder if softupdates could help (make it faster ) or not the cache
  partition ?

 i would say it's absolutely needed.

 anyway - any reason to not use soft updates on every filesystem?

What exactly is a soft update?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB printer

2008-03-13 Thread Pollywog
On Wednesday 12 March 2008 19:37:47 Manolis Kiagias wrote:
 Chuck Robey wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  Gligor Lucian wrote:
  David Kelly [EMAIL PROTECTED] wrote: On Mon, Mar 10, 2008 at 
12:59:38PM -0700, Gligor Lucian wrote:
  Does FreeBSD support a USB printer?
 
  Yes.
 
  You know, while there are printing utils that actually work on FreeBSD, I
  can't personally recommend CUPS.  I keep on trying to get it to work on
  FreeBSD efvery year or so, then I need to go over to one of my other
  systems.  Last one I tried was an Epson Stylus C84, but I've also tried
  HP officejets, and I just can't get locally attached printers to work
  with cups.  I can get them to work with things like apsfilter very well,
  but either someone is going to have to fix the Cups port (it builds, but
  nothing locally runs) or stop recommending it.
 
  Or, does anyone else have it working on FreeBSD?  Sure would like to hear
  about it, but I've been trying for a long time now, with no success.
 
  Thank you very much for your answer.
   All the best, Gligor Lucian.
 
 
 
  -
  Looking for last minute shopping deals?  Find them fast with Yahoo!
  Search. ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
  [EMAIL PROTECTED]

 I have cups working on my system, printing on locally attached USB
 printers. I have followed the instructions in dekstopBSD wiki:

 http://desktopbsd.net/wiki/doku.php?id=doc:printing

 (though I used ports and not packages)

Did you find it necessary to recompile the kernel with ulpt disabled?

I have a HP PSC2110 All-In-One that I can use in Linux (printing and 
scanning) but was unable to get working in FreeBSD.  I believe part of the 
solution is to disable ulpt and recompile the kernel, but I had trouble 
getting hplip to work.  FreeBSD does not have hpoj, which is what I use in 
Linux with this printer.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Deb archives

2008-03-04 Thread Pollywog
On Wednesday 05 March 2008 02:09:25 E. J. Cerejo wrote:
 Is there a way to unpack a deb package in FreeBSD?  I don't see anything in
 the ports to do it!


I don't know if this helps, but deb packages are really ar achives.


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


Re: ssh tunnel question

2008-01-17 Thread Pollywog
On Friday 18 January 2008 04:52:44 Juan Ortega wrote:
 Hi, I installed freeBSD 6.3RC2 on my computer.
 SSH deamon is installed and working.
 On my linux computer I can connect easily ssh -D 8080 myserver.com
 and use it as SOCKS for firefox as proxy server.
 But on windows I cant using putty, I can make it local like -L in linux
 but i cant make it dynamic, i tried it but all i get is the proxy server
 is refusing connections in firefox. It works on all linux pcs but not
 windows, same error msg. I disabled firewall and still not working.
 wats wrong with it?

In Firefox, are you using SOCKS4 when connecting?  Try SOCKS4.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: HOW-TO get Flash7 working!

2008-01-05 Thread Pollywog
On Saturday 05 January 2008 22:06:27 Aryeh M. Friedman wrote:


 I am using 8-current (amd64) and found all I needed to do was install
 www/linux-flashplugin7 then do a nspluginwrapper -v -a -i and flash
 works fine (as far I can tell)...   does this add any functionality I
 am not aware of?  (namely some sites seem to partially load like the
 graphs at whos.among.us [the easiest way to test this is go to the
 site in my signature then click on the 3rd icon at the bottom and then
 click on graphs])

Does one download the flashplugin for Linux (version 7) from the Macromedia 
website?  I was unable to install it from within FreeBSD because the 
necessary files are not available.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Why aren't more secure download options offered?

2007-12-31 Thread Pollywog
On Monday 31 December 2007 04:25:05 [EMAIL PROTECTED] wrote:
 Hello FreeBSD representative,

 I am new to the FreeBSD community. In the past I have typically installed
 a linux variant in my home systems, but recently decided to give FreeBSD a
 try since I could not find a distribution that fit my needs.

 I believe that fbsd is a good platform, but have found some areas that I'd
 like to point out. They are both rooted in the idea of a secure file
 transfer and file validation.

 Why isn't checksum information provided for packages? These are found in
 this directory:
 ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/6.2-RELEASE/packages/

There are checksums for the ISO images.  For example:

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.2  has the 
checksums.


 I can't seem to find any documentation anywhere. 

You are looking for documentation for FreeBSD?
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/  is a good place to 
start.  I have only been using FreeBSD for a few months, so I ordered the 
book Absolute FreeBSD and I got it over the weekend.  It has a lot of 
information useful to new users.  If you don't know if you want to spend the 
money, you might find the first edition in your local library.  The second 
edition was released recently.

 These are for all of the 
 .tbz packages. The information is provided for every file except for
 these. Also, instead of the ftp protocol, why don't you offer download
 options like https? I am sure that many people are interested in such an
 option.

I don't know the answer to that question.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Why aren't more secure download options offered?

2007-12-31 Thread Pollywog
On Monday 31 December 2007 04:25:05 [EMAIL PROTECTED] wrote:
 Hello FreeBSD representative,


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


Re: corporate backers of freebsd

2007-12-31 Thread Pollywog
On Monday 31 December 2007 18:10:55 Gary Smithe wrote:


 In short, here's my question:

 Canonical, RedHat, IBM, Novell, and a slew of others are funding /
 supporting Linux development and pushing some of that development into
 the free community, so that all can benefit from full-time developers
 and the money that supports them.

This is true but on the flip side, Linux has become a target of the patent 
trolls (Microsoft and SCO to name two) and thus far they have left FreeBSD 
alone.  This was one thing that prompted me to try FreeBSD and to not depend 
exclusively on one OS solution.  I am just an individual user but this was 
still important to me.

BTW you may have read that SCO has been delisted by NASDAQ   :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portupgrade problem with openldap23-server upgrade

2007-12-25 Thread Pollywog
I did a portupgrade but when the time comes to upgrade openldap23-server 
(FreeBSD 6.2) I get this:

Stop in /usr/ports/net/openldap23-server.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.12586.86 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=openldap-server-2.3.38 
UPGRADE_PORT_VER=2.3.38 make reinstall
---  Restoring the old version
pkg_add: package 'openldap-server-2.3.38' conflicts with 
openldap-client-2.3.39
pkg_add: -f specified; proceeding anyway
** Fix the installation problem and try again.
[Updating the pkgdb format:bdb_btree in /var/db/pkg ... - 892 packages found 
(-0 +1) . done]
Total Paste Views: 1 — Trackback (0) — PermaLink — Remove Paste

How do I fix this conflict between openldap server and client?


BTW I am unable to remove either openldap server or client because they are 
required by other ports.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SSH through port forwarding

2007-12-17 Thread Pollywog

Make sure the ISP is not blocking port 22.  If they block it, you will need to 
change the SSH port in sshd_config and then set the router to forward the 
port to the server's internal IP address.  It's a good idea to change the 
port anyway, in order not to be obvious to script kiddies.


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


Re: Question

2007-12-16 Thread Pollywog
On Monday 17 December 2007 04:27:03 Norberto Meijome wrote:


 FBsd isn't windows - go ahead and do it - if u can get the new HD and hook
 it up to the old box,  go into single user mode , partition the new disk as
 you wish, mount each partition at a time and transfer the data.

I understood that he wanted to move the drive to the new machine.
How would one do that?  I think it would just work unless the drive is very 
unusual.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: (postfix) SPAM filter?

2007-12-12 Thread Pollywog
On Thursday 13 December 2007 03:35:00 Duane Hill wrote:


 It has been pretty low maintenance. I am in the process of evaluating
 the possibility of using amavis-new.

I used amavis-new on a Linux system and lost the ability to have per-user 
settings.  I had to go with a systemwide setting and I don't know if amavis 
allows per-user configuration.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-09 Thread Pollywog
On Sunday 09 December 2007 04:32:21 Pollywog wrote:
 On Sunday 09 December 2007 04:06:29 Predrag Punosevac wrote:
  HPLIP works like a charm on FreeBSD
  http://dsteinbrook.googlepages.com/hpliponfreebsd

 Thanks for that, unfortunately it indicates that this is going to be more
 difficult for me than I thought, because I will need to recompile my kernel
 and I have not done this in FreeBSD yet.

I recompiled the kernel and it was much easier than in Linux.  When the moment 
of truth came, the machine did boot.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


question about ordering of lines in rc.conf

2007-12-09 Thread Pollywog
It appears that the order of the *_enable=YES lines in /etc/rc.conf is 
important.  I am looking at a HOWTO for HPLIP in which the author suggests 
adding two lines in a certain order.

Since I recently had a problem with jabberd starting before myslq was ready to 
accept connections and I just found that  jabberd_enable=YES precedes 
mysql_enable=YES in my rc.conf, I am wondering whether order is important.
Can anyone provide an answer?

I solved the problem I was having with jabberd but in a different way.


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


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Saturday 08 December 2007 20:39:06 Predrag Punosevac wrote:
 I was just looking at the documentation on SANE web-site about network
 scanning
 and I noticed that /etc/services on my i386 does not include line like

 sane-port  6566/tcp  # SANE network scanner daemon

 which is used by saned (Sane Network Daemon to enable scanning over the
 network).
 The /etc/inetd.conf file is also missing line (of course should be
 commented by default)

 sane-port  stream  tcp  nowait  saned.saned  /usr/local/sbin/saned saned

 The handbook is  also  mute  about  the  scanning over the network.

 Is anybody using scanners on the network on FreeBSD? Handbook article
 should also be appended.
 I might try to play with it and see how it goes. I could contribute the
 documentation if the community has interest in it.


I wanted to do this but I could not find a package for it.  In Linux, I use 
sane-utils to do this.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Sunday 09 December 2007 02:17:21 Predrag Punosevac wrote:

 Saned (Sane Daemon)  is included in the standard distribution of
 sane-backhands. I checked sane-utils on the Debian web-site and seems it
 is just idiotic GUI.


I was using Debian and I now use Ubuntu and FreeBSD.  The sane-utils package 
contains files that I edit in order to have the ability to scan from any 
machine on my LAN that runs Linux.  The files are /etc/sane.d/dll.conf and 
also saned.conf and net.conf in the same directory.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Sunday 09 December 2007 03:26:19 Predrag Punosevac wrote:


 Then look the /usr/local/etc/sane.d You already have all files you need
 to have.


 Debian is known for fine grinding of packages so I would not be
 surprised that they divided generic sane-backhand package in several part.
 That is a very good practice but unfortunately FreeBSD does not have
 that man power and the user base to do the same.

 Would you be so kind than to write how to for network scanning. It would
 be very good if you could append Handbook article about scanning. I have
 no clue whom you should contact with the offer to contribute the article
 for Handbook.

I have not done this in FreeBSD, only Linux.  I have a printer that requires 
HPOJ, which I don't believe is available for FreeBSD.  My printer is a 
Hewlett-Packard PSC 2110 All-in-one and it is a USB printer.  Someone told 
me that HPLIP is what I should use but I was unable to get it to work with my 
printer.

I believe I used instructions I found at Marcel Gagne's website to get network 
scanning working in Linux.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Sunday 09 December 2007 03:26:19 Predrag Punosevac wrote:
 Pollywog wrote:
  On Sunday 09 December 2007 02:17:21 Predrag Punosevac wrote:
  Saned (Sane Daemon)  is included in the standard distribution of
  sane-backhands. I checked sane-utils on the Debian web-site and seems it
  is just idiotic GUI.
 
  I was using Debian and I now use Ubuntu and FreeBSD.  The sane-utils
  package contains files that I edit in order to have the ability to scan
  from any machine on my LAN that runs Linux.  The files are
  /etc/sane.d/dll.conf and also saned.conf and net.conf in the same
  directory.

 Then look the /usr/local/etc/sane.d You already have all files you need
 to have.


 Debian is known for fine grinding of packages so I would not be
 surprised that they divided generic sane-backhand package in several part.
 That is a very good practice but unfortunately FreeBSD does not have
 that man power and the user base to do the same.

 Would you be so kind than to write how to for network scanning. It would
 be very good if you could append Handbook article about scanning. I have
 no clue whom you should contact with the offer to contribute the article
 for Handbook.

Since it has been some time since I tried to get HPLIP to work with my 
computer, I am going to attempt it again.  If I am successful, I will post 
something about it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Sunday 09 December 2007 04:06:29 Predrag Punosevac wrote:

 I thought we were discussing sane-backhands and network scanning.

Don't I need HPLIP in order to get my printer (scanning) to work?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SANE Network Daemon question

2007-12-08 Thread Pollywog
On Sunday 09 December 2007 04:06:29 Predrag Punosevac wrote:


 HPLIP works like a charm on FreeBSD
 http://dsteinbrook.googlepages.com/hpliponfreebsd

Thanks for that, unfortunately it indicates that this is going to be more 
difficult for me than I thought, because I will need to recompile my kernel 
and I have not done this in FreeBSD yet.

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


Re: jabberd will not start on reboot, only starts manually

2007-12-04 Thread Pollywog
On Tuesday 04 December 2007 15:11:32 Daniel Bye wrote:


 Try removing the # BEFORE: LOGIN line from the jabberd control script.
 I haven't tested it, but from a cursory glance at the respective control
 scripts, it feels like a sane first guess...

What exactly does this do?  It worked.

I first tried adding 'sleep 2' to the script as suggested in another reply.  I 
thought that would work, but it did not.

thanks to all who replied.

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


Re: BSDstats: Stand up and be counted! -- November Statistics

2007-12-04 Thread Pollywog
On Tuesday 04 December 2007 05:55:17 Marc G. Fournier wrote:


 For FreeBSD users, you just need to install /usr/ports/sysutils/bsdstats to
 set things up.

Is it recommended to do this on more than one home machine running FreeBSD, or 
just one of them?

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


Re: jabberd will not start on reboot, only starts manually

2007-12-04 Thread Pollywog
On Tuesday 04 December 2007 18:28:42 Daniel Bye wrote:


 Check out the manual for rcorder(8), and look at the CAPITALISED files in
 /etc/rc.d.

 Essentially, LOGIN is a dummy service - it is used to control startup
 of services that should start late in the boot process. The jabberd control
 script told rcorder(8) that it should run *before* the LOGIN service,
 but the MySQL control script tells rcorder(8) that it wants to run
 *after* the LOGIN service. So although you had REQUIRE: mysql in jabberd's
 script, it was still getting run before MySQL. I guess. ;-)

 You can determine what order things get run by doing

  # rcorder /etc/rc.d/* /usr/local/etc/rc.d/*

 Anyway, glad it worked. You might want to get in touch with the jabberd
 maintainer and see if he is willing to make the change permanent.

Thanks for the explanation.  I had gone to the ##freebsd channel on Freenode 
for help and had been told to run 

# rcorder /etc/rc.d/* /usr/local/etc/rc.d/*

This showed that I had succeeded in getting jabber to start after mysql, but 
things were still not working properly.  I will email the jabberd maintainer 
about my experience.

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


jabberd will not start on reboot, only starts manually

2007-12-03 Thread Pollywog
I am running FreeBSD 6.2 with Jabberd installed from ports:
jabberd-2.1.18


When I reboot the machine, jabberd will not start, but it will start if I 
manually restart it with /usr/local/etc/rc.d/jabberd restart

/var/log/messages shows:

jabberd/c2s[989]: mysql: connection to database failed: Can't connect to local 
MySQL server through socket '/tmp/mysql.sock' (2)
jabberd/c2s[989]: failed to initialize auth module 'mysql'

I added 'mysql' to the REQUIRED line in the startup script for jabberd but 
this did not solve the problem.  It still appears as though jabberd attempts 
to connect to mysql before mysql is ready for the connection.

Can anyone assist with this problem?

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


Re: top posting (off-topic)

2007-11-22 Thread Pollywog
On Thursday 22 November 2007 21:22:50 Brent Jones wrote:
 Sorry if this is a bit off topic for this list, but it seem to be a
 comment that comes up very regularly; please don't top post...

 I for one prefer top posting, as usually I have read a particular thread
 enough times that I like to cut to the chase and read the new input
 without having to scroll down, sometimes navigating an endless nesting
 of   For me, reading through top posted replies saves time and
 effort.  If I happened to miss something in the conversation I can
 scroll down to find it.

 Anyone else feel the same?

Since most people don't like top-posting, I try not to do it except 
occasionally in personal email.  I don't do it on mailing lists.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Postfix, dns, and hosts.allow

2007-11-14 Thread Pollywog
On Wednesday 14 November 2007 05:01:58 jekillen wrote:
 Hello:
 I have a question about Postfix and
 hosts.allow:
 Sendmail and exim are mentioned in the
 file and I assume that Sendmail would
 refer to Postfix sendmail as well as Sendmail.
 But Since Postfix runs smtp.d, how would I
 do Postfix in hosts.allow?

I believe you would refer to it as smtp if that is what you have 
in /etc/services


 I also have a question about how postfix
 would resolve names outside of the local
 domain, Does it use resolve.conf, hosts.equiv,
 nsswitch or does it need a local name server.

The nameserver does not need to be local.  It can use the ones in resolv.conf
Make sure you use numeric hosts in resolv.conf   I know that is obvious but I 
have seen people put textual hostnames in the file and then wonder why it 
does not work.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[OFFTOPIC] Re: One Laptop Per Child

2007-11-12 Thread Pollywog
On Monday 12 November 2007 19:06:28 Chuck Robey wrote:

 I wish it wasn't this way.  Maybe it's just in the schools I visited?
 If so, anyone have a better experience?  Until I hear of some, I won't
 contribute to any computers for kids deal, because  it only benefits
 big computer companies, who sell the machines, not the kids.

It is true that the companies that sell computers and software benefit, but 
the same could be said of companies that sell state-approved textbooks to 
schools (if you have seen those textbooks you know what I mean), the 
companies that sell shoes for sports, etc.  There is one large software 
company that gives some software to schools and then gets a tax cut even 
though it benefits down the line when those kids grow up to buy that 
company's software because that is the software they know.

I still think it is better for kids to know how to use computers, even if a 
few business people also benefit.

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


multiple autoconf versions

2007-11-05 Thread Pollywog
I am running FreeBSD 6.2 and I discovered that I have four versions of 
autoconf installed.

autoconf-2.13.000227_6 Automatically configure source code on many Un*x 
platforms
autoconf-2.53_4 Automatically configure source code on many Un*x platforms
autoconf-2.59_3 Automatically configure source code on many Un*x platforms
autoconf-2.61_2 Automatically configure source code on many Un*x platforms


Should I remove any of them?  I know that in Linux, having more than one 
version of autoconf can cause problems, but I am not certain of what to do 
here.

thanks

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


Re: KDE bookmarks??

2007-11-05 Thread Pollywog
On Tuesday 06 November 2007 00:34:50 Gary Kline wrote:
 Folks,

 As some of you know, i was configuring kkonquereor because it has
 a link to the festival tts tool.  I let myself get careless with firefox;
 bookmarked sites went in any-whichway.  With konq, I began creating
 directories to which I added simial site, etc.


 I did save /home/kline when my ne system began having troubles.  Now i
 am looking for the dozens of carefully added and edited URL's.  I can't
 find the KDE Stuff anywhere.  I can find kbookmark, but it's empty in my
 old/former /home/kline/* tree.   Anybody know where else i should be
 looking?

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


Re: KDE bookmarks??

2007-11-05 Thread Pollywog
On Tuesday 06 November 2007 00:34:50 Gary Kline wrote:
 Folks,

 As some of you know, i was configuring kkonquereor because it has
 a link to the festival tts tool.  I let myself get careless with firefox;
 bookmarked sites went in any-whichway.  With konq, I began creating
 directories to which I added simial site, etc.


 I did save /home/kline when my ne system began having troubles.  Now i
 am looking for the dozens of carefully added and edited URL's.  I can't
 find the KDE Stuff anywhere.  I can find kbookmark, but it's empty in my
 old/former /home/kline/* tree.   Anybody know where else i should be
 looking?

If you are looking for Firefox bookmarks, try ~/.mozilla/firefox/
I have another directory there that begins with what appear to be random 
alphanumeric characters follwed by .default/   My bookmarks are in that 
directory.

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


Re: Is there a way to compare what is in the ports tree with what is installed?

2007-11-04 Thread Pollywog
On Monday 05 November 2007 02:04:39 Robert Huff wrote:
 Brett Davidson writes:
   ie. If I had a particular version of the ports tree on a server,
   how could I check to see if any of the programs in that tree were
   actually installed?
 
   Is there a simple command or sequence of commands to do this?

   dir /var/d/pkg | grep portname

My Linux systems have a dir command but my FreeBSD does not.
Is there something I need to install?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: reverse grep

2007-11-03 Thread Pollywog
On Sunday 04 November 2007 00:12:45 [EMAIL PROTECTED] wrote:
 How is it possible to select lines that do NOT match a specific pattern?

grep -v

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


Re: telnet mydomain.ild 465 : connection closed

2007-10-30 Thread Pollywog
On Tuesday 30 October 2007 09:18:17 dhaneshk k wrote:

 telnet localhost 465
 Trying ::1...
 telnet: connect to address ::1: Connection refused
 Trying 127.0.0.1...
 Connected to localhost.sun.iosn.net.
 Escape character is '^]'.
    upto this line oly  I am getting out putnot showing the line 
 220 host.domain.tld ESMTP Postfix

 Q1 :   when I tested with the EHLO test.com  command  telnet connection
 closed immediatelywhy this  ?

Look at /etc/hosts

The line that is at the top is in IPv6 format?
If so, move it down so it appears below the line that says:

127.0.0.1   localhost


I think that will fix the problem.

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


Re: telnet mydomain.ild 465 : connection closed

2007-10-30 Thread Pollywog
On Tuesday 30 October 2007 09:18:17 dhaneshk k wrote:

 telnet localhost 465
 Trying ::1...
 telnet: connect to address ::1: Connection refused
 Trying 127.0.0.1...
 Connected to localhost.sun.iosn.net.
 Escape character is '^]'.
    upto this line oly  I am getting out putnot showing the line 
 220 host.domain.tld ESMTP Postfix

 Q1 :   when I tested with the EHLO test.com  command  telnet connection
 closed immediatelywhy this  ?

Look at /etc/hosts

The line that is at the top is in IPv6 format?
If so, move it down so it appears below the line that says:

127.0.0.1   localhost

(I sent this a while ago but it did not appear to have actually been sent; 
apologies if it posts twice)


I think that will fix the problem.

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


Re: telnet mydomain.ild 465 : connection closed

2007-10-30 Thread Pollywog
On Tuesday 30 October 2007 09:18:17 dhaneshk k wrote:

 telnet localhost 465
 Trying ::1...
 telnet: connect to address ::1: Connection refused
 Trying 127.0.0.1...
 Connected to localhost.sun.iosn.net.
 Escape character is '^]'.
    upto this line oly  I am getting out putnot showing the line 
 220 host.domain.tld ESMTP Postfix

 Q1 :   when I tested with the EHLO test.com  command  telnet connection
 closed immediatelywhy this  ?

Look at /etc/hosts

The line that is at the top is in IPv6 format?
If so, move it down so it appears below the line that says:

127.0.0.1   localhost

(I sent this a while ago but it did not appear to have actually been sent; 
apologies if it posts twice)


I think that will fix the problem.

I have sent this twice, but I never saw it post.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can login using root password, but not remotely with SSH

2007-10-22 Thread Pollywog
On Monday 22 October 2007 17:42:44 Daniel Bye wrote:
 On Mon, Oct 22, 2007 at 02:21:04AM -0500, W. D. wrote:
  Brand new install of FreeBSD 6.2.  Can't log in with PuTTY.
 
  Remote PuTTY:
  Access denied Using keyboard-interactive authentication.
 
  At computer terminal:
  PAM authentication error for root from 192.168.XXX.XXX
 
  Any ideas?

 Default behaviour in FreeBSD is for SSH to disallow root login.
 You can change that in /etc/ssh/sshd_config, but it's probably not a
 good idea. The sshd_config man page will tell you how, if you really
 want to.

I do it sometimes, using

PermitRootLogin without-password

This does not mean it will accept root logins without any authentication.  It 
means it will accept a passphrase and not a password.  Once I am done, I 
change it back to No and reload sshd.

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


xmh port in 6.2

2007-10-17 Thread Pollywog
I am doing an upgrade of ports in FreeBSD 6.2 and apparently xmh is no longer 
part of the Ports collection, but when I saw yes to remove it, portmanager 
complains that it is required by xorg and xfce.  What is the problem here, 
anyone know?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: xmh port in 6.2

2007-10-17 Thread Pollywog
On Wednesday 17 October 2007 15:16:53 Pollywog wrote:
 I am doing an upgrade of ports in FreeBSD 6.2 and apparently xmh is no
 longer part of the Ports collection, but when I saw yes to remove it,
 portmanager complains that it is required by xorg and xfce.  What is the
 problem here, anyone know?

That came out wrong.

When I say yes to the removal of xmh, portmanager complains it is required 
by those other ports.

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


Re: Ipod software

2007-10-14 Thread Pollywog
On Monday 15 October 2007 00:05:08 Rem P Roberti wrote:
 Thanks for the suggestions.  I am trying out gtkpod now, and it seems to
 work fine, although I wish that there was a non/gui type program.

 BTW, is it possible to convert mp3 files that were purchased originally
 from the Apple store via iTunes so that they could be used on non/iTunes
 players?

iTunes files have DRM protection, so the short answer is that it can't be 
done.

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


Re: best spam filter port(s) for postfix?

2007-10-01 Thread Pollywog
On Monday 01 October 2007 22:18:00 Chuck Swiger wrote:
 On Oct 1, 2007, at 6:54 PM, Philip Hallstrom wrote:
  By far the best anti-spam tool I've used with Postfix is policyd-
  weight.
  mail/postfix-policyd-weight
 
  Agreed. +1. Me too.

 Seconded (or thirded :).

 policyd-weight is much smaller than amavisd-new or SpamAssassin (it
 tends to run a couple of ~7 MB RSIZE processes, rather than a bunch
 of 45 - 80MB RSIZE), and it's caching of RBL/DNSBL lookups means it
 can handle and offload a bunch of queries that the others would do.

I didn't know about this one.  Is the installation and use documented 
somewhere?  (In case I can't find anything on Google).


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


Re: best spam filter port(s) for postfix?

2007-10-01 Thread Pollywog
On Monday 01 October 2007 22:48:09 Pollywog wrote:
 On Monday 01 October 2007 22:18:00 Chuck Swiger wrote:
  On Oct 1, 2007, at 6:54 PM, Philip Hallstrom wrote:
   By far the best anti-spam tool I've used with Postfix is policyd-
   weight.
   mail/postfix-policyd-weight
  
   Agreed. +1. Me too.
 
  Seconded (or thirded :).
 
  policyd-weight is much smaller than amavisd-new or SpamAssassin (it
  tends to run a couple of ~7 MB RSIZE processes, rather than a bunch
  of 45 - 80MB RSIZE), and it's caching of RBL/DNSBL lookups means it
  can handle and offload a bunch of queries that the others would do.

 I didn't know about this one.  Is the installation and use documented
 somewhere?  (In case I can't find anything on Google).

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


Re: question about Postfix

2007-10-01 Thread Pollywog
On Tuesday 02 October 2007 02:50:24 jekillen wrote:
 Hello;
 I have a quick question about Postfix.
 When I install Free BSD and have it
 include Postfix  from packages, does
 the install process completely replace
 Sendmail with Postfix, or do I still have
 to replace Sendmail with Postfix separately?
 Thanks in advance


You have to edit /etc/rc.conf so that Postfix actually works.

postfix_enable=YES
sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=NO
sendmail_msp_queue_enable=NO

This is what I have and it works for me.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: best spam filter port(s) for postfix?

2007-09-30 Thread Pollywog
On Sunday 30 September 2007 20:28:23 Derek Ragona wrote:
 At 03:20 PM 9/30/2007, Joe in MPLS wrote:
 I'm running 6.2-STABLE with postfix with cyrus-sasl, imap-uw  horde for
 mail. I'd like to stop depending on clients(Thunderbird  PDAs) for
 primary spam control (especially because our PDAs don't do any). AV
 scanning would be a plus too.
 
 ...jgm

 I use mailscanner with sendmail which uses spamassasin with clamav.  All
 from the ports.

I used Mailscanner at one time, but it is not recommended for use with Postfix 
because mail can be lost.  It never happened to me, but it has happened to 
others.  I believe the Postfix website mentions these problems.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: best spam filter port(s) for postfix?

2007-09-30 Thread Pollywog
On Sunday 30 September 2007 21:03:06 Roland Smith wrote:
 On Sun, Sep 30, 2007 at 03:20:58PM -0500, Joe in MPLS wrote:
  I'm running 6.2-STABLE with postfix with cyrus-sasl, imap-uw  horde for
  mail. I'd like to stop depending on clients(Thunderbird  PDAs) for
  primary spam control (especially because our PDAs don't do any). AV
  scanning would be a plus too.

 I've been using bogofilter for some years now, and it works very well
 once you've trained it properly. I'm calling it from procmail just
 before the mail is delivered, but that's because my desktop has just a
 single local user. Bogofilter comes with a 'integrating-with-postfix'
 document that shows you how to call it from postfix directly.

I call Bogofilter from Procmail and I did not know it could be called directly 
from Postfix.  I use Bogofilter and Spamassassin and very little spam gets 
through undetected.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Getting vim to work correctly.

2007-09-28 Thread Pollywog
On Friday 28 September 2007 06:05:49 Jay Chandler wrote:
 Eric Schuele wrote:
  On 09/27/2007 21:01, Jay Chandler wrote:
  Howdy.
 
  Sorry to keep hitting the list with questions today, but does anyone
  know how to get the home, delete, end, page up, etc. keys working
  correctly in vim?
 
  It works in Linux, drives me nuts in FreeBSD...
 
  They work perfectly fine here.  How is it you expect those keys to
  behave?  Define working correctly.

 When in insert mode, and pagedown is pressed, the letter the cursor is
 over is capitalized, and the editor is removed from insert mode, as an
 example.

 PageUp capitalizes the letter next to it, and again removes me from
 insert mode.

 Home randomly capitalizes letters and shifts the cursor to the next letter.

 Insert decapitalizes the letter the cursor is over.

 Weird behavior like this...

 I was mistaken in that this is in vim-- this is in the natural version
 of vi that ships with the base OS.

 This is happening from PuTTY in default setting mode on a Windows box--
 my MacBook is relatively better behaved.

If you also run Linux, you can copy your ~/.vimrc or the systemwide one to 
your FreeBSD as ~/.vimrc and that should fix the problem.  Also export your 
editor as vim in your ~/.bashrc.  In addition, I make an alias so that when I 
use 'vi' as a command, I get 'vim' and not what FreeBSD uses as vi by 
default.  I had the same problems that you report.


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


Re: courier-imap

2007-09-26 Thread Pollywog
On Wednesday 26 September 2007 18:22:09 Bill Banks wrote:
 When I try to login , in my maillog it saids no such file. How do I tell
 it to use /etc/passwd


Which file is missing?  I recently installed Courier-Imap on FreeBSD and some 
file was missing but I don't recall which one.  Make 
sure /usr/local/etc/authlib/authdaemonrc has a line that looks like this

authmodulelist=authuserdb authpam authmysql

You should have at least authuserdb and authpam listed.

Also do 'touch /usr/local/etc/courier-imap/shared/index' because Courier will 
complain if the file is missing, though it will still work.  I have to do 
that in Debian as well because the index file is missing.

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


Re: Confusion on SSH and PAM

2007-09-26 Thread Pollywog
On Wednesday 26 September 2007 11:02:26 Rakhesh Sasidharan wrote:
 CyberLeo Kitsana wrote:
  Rakhesh Sasidharan wrote:
  Any ideas or nudges in the right direction as to why this is happening?
  Looks like I've understood the interaction between SSH and PAM wrong
  here, so would appreciate some enlightenment.
 
  According to my understanding of the SSH protocol, you're continually
  asked because an authentication failure is not a fatal error.
 
  When authenticating an SSH session, a list of mutually supported methods
  is compiled (public-key, challenge-response, S/Key,
  keyboard-interactive, plaintext) and the client cycles through the list
  based on what it thinks is most likely to work.
 
  It's perfectly acceptable for a client to attempt password
  authentication before public-key, or even interleave them. All the
  server can do is say yay or nay to an attempt with a restricted method,
  because it cannot know if the next attempt may utilize an allowed method.
 
  After the requisite three or five failed attempts (depending on the
  server config), it may send a general failure code (too many failed
  attempts) and disconnect the client at it's discretion.

 Here's another oddity I encountered today.

 If PermitRootLogin is set to forced-commands-only, my understanding is
 the SSHD will permit root logins if a command to be executed is given. But
 that doesn't seem to be the case in practice! I have keys setup for root
 to login, but instead of letting me in with those keys, SSHD ignores them,
 passes me to PAM for password prompting (three times) and the denies me
 out! Very strange.

 I even setup a Match User clause for root and specified a command to
 run. Still, SSHD refuses to let me in with/ without key and for a specific
 command.

PermitRootLogin without-password  won't allow what you want to do?
To use it, you have to set up a passphrase (public key).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sed question...

2007-09-25 Thread Pollywog
On Tuesday 25 September 2007 22:21:48 Giorgos Keramidas wrote:


 A word of caution there...

 If you plan to use GNU/Linux manpages for learning sed(1) be _very_
 cautious for GNU/Linux-specific parts.  There are subtle, yet possibly
 important differences between GNU/Linux sed and BSD sed.


I am generally aware that sometimes there are differences between the 
utilities used with Linux and their BSD counterparts.  As for the differences 
themselves, do they exist because someone has reinvented the utilities or 
is there perhaps another reason?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Is your Thunderbird OK?

2007-09-24 Thread Pollywog
On Monday 24 September 2007 07:19:49 Byung-Hee HWANG wrote:
 Hi there,

 Just been wondering about this for long weeks. I have some complain
 Thudnerbird's the speed when it start up on FreeBSD. Its speed is very
 slow. While thunderbird start up, I go to brew coffee. Aside from that,
 Thunderbird is the best MUA, indeed.

I have not noticed this speed issue with Thunderbird.  I use kmail for the 
most part but now and then some mail is not visible in kmail and appears to 
be just headers with no message body, and in those cases I use Thunderbird to 
read those emails that I can't see in kmail.  Thunderbird comes up as fast as 
kmail does.  The only problem that I do have with Thunderbird is that it 
sometimes says that I have the maximum number of connections (I use IMAP) 
open.  kmail never says that.

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


Re: Why is sendmail in the core of FreeBSD?

2007-09-22 Thread Pollywog
On Saturday 22 September 2007 19:27:36 Giorgos Keramidas wrote:

 That's because there's no such thing as a newbie Sendmail user.

 Nobody stays a newbie long enough if they configure Sendmail properly

That is why I use Postfix.  I would not go from Postfix to Sendmail because it 
would make life difficult.  I would not go to qmail because as someone else 
said, it would be like going back to the stone age  :)

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


Re: GAIM??

2007-09-19 Thread Pollywog
On Thursday 20 September 2007 01:33:38 Gary Kline wrote:
   Folks,

   On my ubuntu srver I've used gaim for quite awhile.   When I
   looked for it with locate on my new server the file said it was
   going away by fall.  Is there ea new, improved port?

   gary

Isn't the new name for Gaim pidgin ?
Perhaps it will be under that name.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: GAIM??

2007-09-19 Thread Pollywog
On Thursday 20 September 2007 02:16:53 Gary Kline wrote:

http://sourceforge.net/projects/gaim/

   thanks to all you gents... i was going to ask why the name change but
   it'll probly be with the src, luke.  (.5-hearted ha ha)

I read somewhere that AOL asked for the name change.

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


Re: Telnet smtp

2007-09-16 Thread Pollywog
On Sunday 16 September 2007 16:28:02 Bill Banks wrote:
 How do I turn on telnet for smtp? Im installing qmail


Telnet for SMTP?  Are you trying to connect to port 25 (SMTP) using a telnet 
client for testing purposes?  Don't install telnetd (telnet server), just use 
a telnet client:

telnet hostname 25

If the SMTP server is running and not blocked by a firewall, you should be 
able to connect to it that way on port 25.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: remote [ssh] Backspace] key gives me ^?

2007-09-14 Thread Pollywog
On Saturday 15 September 2007 01:01:03 Gary Kline wrote:
   Sometimes when I ssh from a remote server and edit a file with
   vi, my [Backspace keys] are not interpretered correctly.
   Instead of erasing characters and backing up one byte and
   clearing that character my cursor moves forward.

   Example: typing This as thos and backspacing to the 'o'
   I'll see thos^?^?Can anybody 'splain what idiot thing i'm
   doing wrong and how to fix it?

   tia,

   gary

Does this also happen when you use vim?
I wonder if you are really using vi and not ee or some other editor.
I had many problems with vi so I did 'touch .vimrc' in my home directory

cd ~
touch .vimrc

I use vim rather than vi and if I remember correctly, when I first installed 
FreeBSD, 'vi' was actually a symlink to 'ee'.  I might be wrong about that.


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


Re: hosts is ignored

2007-09-12 Thread Pollywog
On Wednesday 12 September 2007 07:46:15 Erich Dollansky wrote:
 Hi,

 Peter Boosten wrote:
  Erich Dollansky wrote:
  Hi,
 
  I have the feeling to be blind but I cannot find out why my FreeBSD 6.2
  machine ignores hosts.
 
  host.conf says
 
  hosts
  dns
 
  What is host.conf used for? Never heard of it.
 
  Put the following line in your resolv.conf
 
  lookup file bind

 no change.

 Hosts is still fully ignored.

And the permissions for /etc/hosts ?  I know it's a dumb question but 
something like this happened to me once and I discovered that something had 
changed file permissions so it was not readable.  It happened to me in Linux 
but it's still worth a check.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


a small problem with /etc/hosts in FreeBSD 6.2

2007-09-12 Thread Pollywog
in my hosts file, I have a line that looks like this:

::1localhost localhost.mydomain.com


Is this line for IPv6 or is there some other reason for its presence?  It 
causes occasional problems, so I commented it out and I kept a similar line 
that points to 127.0.0.1

An example of the problems it sometimes causes is that if I telnet to 
localhost at port 25 I get this:

Trying ::1...
telnet: connect to address ::1: Connection refused
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: a small problem with /etc/hosts in FreeBSD 6.2

2007-09-12 Thread Pollywog
On Wednesday 12 September 2007 15:47:15 Wojciech Puchar wrote:
  in my hosts file, I have a line that looks like this:
  ::1localhost localhost.mydomain.com
 
  Is this line for IPv6 or is there some other reason for its presence?  It
  causes occasional problems, so I commented it out and I kept a similar
  line that points to 127.0.0.1

 there should be 2 lines

 ::1   localhost localhost.my.domain

 127.0.0.1 localhost localhost.my.domain


Yes, there are, but it is the first line that causes the error.  I suppose I 
could transpose them rather than comment out the first line.
I had not thought to try that.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: a small problem with /etc/hosts in FreeBSD 6.2

2007-09-12 Thread Pollywog
On Wednesday 12 September 2007 16:10:54 Derek Ragona wrote:


 Are you running ipv6?  If not just comment that line out.

I am not running ipv6 and I thought I did not need that line, so I have 
commented it out.

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


Re: ssh forwarding question

2007-09-11 Thread Pollywog
On Tuesday 11 September 2007 17:30:55 Bob Johnson wrote:


 It should have already been in /etc/defaults/rc.conf.  So the mystery
 to be solved is why it was not there (or what you had in /etc/rc.conf
 that overrode it, maybe). When you installed FBSD, did you do a
 standard install or one of the expert installs?

 And of course, since it was 7.0, you can expect things to be broken
 once in a while. It is what most of the world would call beta code.
 The quick fix is to put the required line in either
 /etc/defaults/rc.conf or /etc/rc.conf. Normally you would never edit
 /etc/defaults/rc.conf, but that line should have been in it.

I did a standard install and was not able to use ssh forwarding from this 
machine.  I upgraded to 7 and was still unable to do it.  I had to have 
messed something up during my initial install.  My other machine runs 6.2 and 
did not have this problem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: chmod / files and directories

2007-09-10 Thread Pollywog
On Monday 10 September 2007 16:31:35 Shantanoo Mahajan wrote:
 On 10-Sep-07, at 9:40 PM, Daniel Bye wrote:
  On Mon, Sep 10, 2007 at 05:06:07PM +0100, Daniel Bye wrote:
  On Mon, Sep 10, 2007 at 05:56:12PM +0200, Zbigniew Szalbot wrote:
  Hello,
 
  I did read man chmod but I am not really wiser. Is there an
  option to
  recursively set 755 permissions for directories and 644 for files?
  When I just issue
  chmod -R 755 /usr/local/www/data/wp/
  then all files and directories under wp/ are given permissions 755
  which is not what I want.
  I can do it manually but since there are manyt subdirectories I
  thought I would make my life easier. Many thanks in advance!
 
  Sorry, that *should* have been:
 
# find /usr/local/www/data/wp -type d -exec chmod 755 {} \;
# find /usr/local/www/data/wp -type f -exec chmod 644 {} \;

 # find /usr/local/www/data/wp -type f -exec chmod 644 '{}' \;
 # find /usr/local/www/data/wp -type d -exec chmod 755 '{}' \;

Why the single quotes around the {}  ?  I don't think I have seen that before 
and I want to understand it before I save it in my notes.  I have often 
wanted to perform the same task but I did not know if there was a way.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sadly, my tinker-time has run out....

2007-09-10 Thread Pollywog
On Monday 10 September 2007 22:21:58 doug wrote:
 On Mon, 3 Sep 2007, Pollywog wrote:

 I am using tightvnc-1.2.9_1 on FreeBSD and the windows versions of tightvnc
 on win2k and windows XP Pro. On FreeBSD I only have used vncviewer running
 the server on the winders boxes. I am using FreeBSD 6.2. The only issue I
 had was the screen quality with XP Pro which went away with the latest
 version of the tightvnc windows software. On Mac OS/X I am running Vine VNC
 from Redstone Software.

 The thing that I have not tried is going from windows/mac to FreeBSD, using
 ssh for that. Is that the issue for you?

The issue for me was connecting from FreeBSD to FreeBSD, but it is working 
now.  The problem was that on the FreeBSD laptop from which I was connecting, 
the lo0 interface was not actually up.  If I set the IP address 127.0.0.1 to 
lo0 and then tried to connect via SSH, it worked.  I fixed the problem with a 
small edit  of /etc/rc.conf



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


Re: ssh forwarding question

2007-09-10 Thread Pollywog
On Monday 10 September 2007 22:39:53 doug wrote:
 On Mon, 3 Sep 2007, Beech Rintoul wrote:
  On Monday 03 September 2007, Pollywog said:
  On Tuesday 04 September 2007 00:13:13 Pollywog wrote:
  On Monday 03 September 2007 23:08:45 Predrag Punosevac wrote:
  Pollywog wrote:
  bind: Can't assign requested address
  channel_setup_fwd_listener: cannot listen to port: 15901
  Could not request local forwarding.
 
  It seems to me that you have a problem with a firewall. Look at
  your own message. It looks like port 15901 is closed for
  listening.
 
  Here is another clue.  Something seems to be wrong with the
  loopback:
 
  lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
  inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4
  inet6 ::1 prefixlen 128
  ripple# ping localhost
 
  Yes that was the problem.  I did this:
 
  ifconfig lo0 127.0.0.1 netmask 255.0.0.0
 
  Make sure you have this line in /etc/rc.conf:
 
  ifconfig_lo0=inet 127.0.0.1

 This is new with 7.0?  I have the above in none of many rc.conf's 4.11 --

Yes, this is a laptop running FreeBSD 7
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sadly, my tinker-time has run out....

2007-09-10 Thread Pollywog
On Monday 10 September 2007 23:42:43 Pollywog wrote:
 On Monday 10 September 2007 22:21:58 doug wrote:
  On Mon, 3 Sep 2007, Pollywog wrote:
 
  I am using tightvnc-1.2.9_1 on FreeBSD and the windows versions of
  tightvnc on win2k and windows XP Pro. On FreeBSD I only have used
  vncviewer running the server on the winders boxes. I am using FreeBSD
  6.2. The only issue I had was the screen quality with XP Pro which went
  away with the latest version of the tightvnc windows software. On Mac
  OS/X I am running Vine VNC from Redstone Software.
 
  The thing that I have not tried is going from windows/mac to FreeBSD,
  using ssh for that. Is that the issue for you?

 The issue for me was connecting from FreeBSD to FreeBSD, but it is working
 now.  The problem was that on the FreeBSD laptop from which I was
 connecting, the lo0 interface was not actually up.  If I set the IP address
 127.0.0.1 to lo0 and then tried to connect via SSH, it worked.  I fixed the
 problem with a small edit  of /etc/rc.conf

My 6.2 system never had this problem, only the laptop running FreeBSD 7 had 
the problem.  It is possible I messed something up during the initial install 
or when I updated.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: snapshot is corrupt

2007-09-08 Thread Pollywog
On Saturday 08 September 2007 13:58:24 Jeffrey Goldberg wrote:
 I just got the following when trying a portsnap.  Any ideas?
 I really don't understand how portsnap works, so for me the error
 message isn't that useful.


 $ sudo portsnap fetch update
 Password:
 Looking up portsnap.FreeBSD.org mirrors... 4 mirrors found.
 Fetching snapshot tag from portsnap3.FreeBSD.org... done.
 Fetching snapshot metadata... done.
 Updating from Fri Sep  7 04:51:41 CDT 2007 to Sat Sep  8 05:50:59 CDT
 2007.
 Fetching 4 metadata patches... done.
 Applying metadata patches... done.
 Fetching 0 metadata files... done.
 Fetching 1285 patches.
 102030405060708090100110120.
 ...
 13014015016017018019020021022023
 0240250260270280290300310320330.
 ...
 34035036037038039040041042043044
 0450460470480490500510520530540.
 ...550560570580590 done.
 Applying patches... done.
 Fetching 708 new ports or files... /usr/sbin/portsnap: cannot open
 e34b76c53bfd361a3defe2a9a884c0aa4f10da8b845ddf8e991fc419b3109f09.gz:
 No such file or directory
 snapshot is corrupt.

This is what I would do...

as root, 

cd /usr/ports/

rm -rf *  (make sure you are in /usr/ports/ when you do this)

portsnap fetch  (this will take a while)

portsnap extract

After that, you only need to do 'portsnap update' when you want to update the 
ports and it should not take too long if you have updated them recently.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Burn ape music to CD

2007-09-06 Thread Pollywog
I was waiting for someone else to ask, but nobody has, so here goes...

What is ape music?  I take it there is nothing simian about it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: bash on login.

2007-09-06 Thread Pollywog
On Thursday 06 September 2007 15:06:02 Albert Shih wrote:
 Hi all

 I'm using bash for standard shell, what I don't understand is when I'm
 connect by ssh on my server the bash don't parse .bashrc file.

 But if in the bash session I type «bash» this time the .bashrc is use.

 How can I make the .bashrc file is read when I connect by ssh ?

I source it in ~/.bash_profile:

# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi


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


Re: loopback won't enable automatically

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 04:48:53 Ian Smith wrote:
 On Wed, 5 Sep 2007 01:47:47 + Pollywog [EMAIL PROTECTED] wrote:
   I have to manually set the loopback interface after each reboot on one
   machine (it is a laptop):
  
   ifconfig lo0 127.0.0.1 netmask 255.0.0.0
  
   Then everything is fine.
  
   I added ifconfig_lo0=127.0.0.1 netmask 255.0.0.0  to /etc/rc.conf
   but for unknown reasons it now looks like this and I still need to set
   lo0 manually after reboots:
  
   ifconfig_lo0=inet 127.0.0.1 netmask 255.0.0.0
  
   Any ideas?  I am running FreeBSD 7

 I noticed before when you posted your ifconfig with missing localhost
 IPv4 address.  You shouldn't have had to add it to rc.conf in the first
 place, as you should find this line existing in /etc/defaults/rc.conf:

 ifconfig_lo0=inet 127.0.0.1   # default loopback device configuration.

 Check that nothing has messed with /etc/defaults/rc.conf, and also that
 you have no later ifconfig_lo0 entry in rc.conf.  The last one found
 there is the one that applies, later entries overriding earlier ones.

 Apart from that, I can't imagine what might be deleting your default
 localhost configuration, unless you're using rc.local?  Otherwise I'd be
 searching any active scripts in /usr/local/etc/rc.d/ for any oddnesses
 that may hae been installed by some port or other?

 Cheers, Ian

I am not using rc.local and I will check /etc/defaults/rc.conf
I forgot to check there first.

thanks

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


Re: loopback won't enable automatically

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 04:48:53 Ian Smith wrote:
 On Wed, 5 Sep 2007 01:47:47 + Pollywog [EMAIL PROTECTED] wrote:
   I have to manually set the loopback interface after each reboot on one
   machine (it is a laptop):
  
   ifconfig lo0 127.0.0.1 netmask 255.0.0.0
  
   Then everything is fine.
  
   I added ifconfig_lo0=127.0.0.1 netmask 255.0.0.0  to /etc/rc.conf
   but for unknown reasons it now looks like this and I still need to set
   lo0 manually after reboots:
  
   ifconfig_lo0=inet 127.0.0.1 netmask 255.0.0.0
  
   Any ideas?  I am running FreeBSD 7

 I noticed before when you posted your ifconfig with missing localhost
 IPv4 address.  You shouldn't have had to add it to rc.conf in the first
 place, as you should find this line existing in /etc/defaults/rc.conf:

 ifconfig_lo0=inet 127.0.0.1   # default loopback device configuration.

 Check that nothing has messed with /etc/defaults/rc.conf, and also that
 you have no later ifconfig_lo0 entry in rc.conf.  The last one found
 there is the one that applies, later entries overriding earlier ones.

 Apart from that, I can't imagine what might be deleting your default
 localhost configuration, unless you're using rc.local?  Otherwise I'd be
 searching any active scripts in /usr/local/etc/rc.d/ for any oddnesses
 that may hae been installed by some port or other?

 Cheers, Ian
I did find it in /etc/default/rc.conf:

ifconfig_lo0=inet 127.0.0.1   # default loopback device configuration.



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


Re: loopback won't enable automatically [SOLVED]

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 07:25:42 Pollywog wrote:
 On Wednesday 05 September 2007 04:48:53 Ian Smith wrote:
  On Wed, 5 Sep 2007 01:47:47 + Pollywog [EMAIL PROTECTED] 
wrote:
I have to manually set the loopback interface after each reboot on one
machine (it is a laptop):
   
ifconfig lo0 127.0.0.1 netmask 255.0.0.0
   
Then everything is fine.
   
I added ifconfig_lo0=127.0.0.1 netmask 255.0.0.0  to /etc/rc.conf
but for unknown reasons it now looks like this and I still need to set
lo0 manually after reboots:
   
ifconfig_lo0=inet 127.0.0.1 netmask 255.0.0.0
   
Any ideas?  I am running FreeBSD 7
 
  I noticed before when you posted your ifconfig with missing localhost
  IPv4 address.  You shouldn't have had to add it to rc.conf in the first
  place, as you should find this line existing in /etc/defaults/rc.conf:
 
  ifconfig_lo0=inet 127.0.0.1   # default loopback device configuration.
 
  Check that nothing has messed with /etc/defaults/rc.conf, and also that
  you have no later ifconfig_lo0 entry in rc.conf.  The last one found
  there is the one that applies, later entries overriding earlier ones.
 
  Apart from that, I can't imagine what might be deleting your default
  localhost configuration, unless you're using rc.local?  Otherwise I'd be
  searching any active scripts in /usr/local/etc/rc.d/ for any oddnesses
  that may hae been installed by some port or other?
 
  Cheers, Ian

 I did find it in /etc/default/rc.conf:

 ifconfig_lo0=inet 127.0.0.1   # default loopback device configuration.

I found the problem.  lo0 was not listed in network_interfaces in rc.conf
Adding it fixed the problem.

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


Re: loopback won't enable automatically [SOLVED]

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 11:48:12 Daniel Bye wrote:
 On Wed, Sep 05, 2007 at 07:35:26AM +, Pollywog wrote:
   I did find it in /etc/default/rc.conf:
  
   ifconfig_lo0=inet 127.0.0.1   # default loopback device
   configuration.
 
  I found the problem.  lo0 was not listed in network_interfaces in rc.conf
  Adding it fixed the problem.

 Do you have this line in your /etc/defaults/rc.conf?

 network_interfaces=auto   # List of network interfaces (or auto).

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


Re: loopback won't enable automatically [SOLVED]

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 14:36:04 Craig Boston wrote:
 On Wed, Sep 05, 2007 at 12:48:12PM +0100, Daniel Bye wrote:
  Given your problems, I am highly suspicious that something has spammed
  your /etc/defaults/rc.conf...

 Or a mergemaster gone wrong (or forgotten to be run).

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


Re: loopback won't enable automatically

2007-09-05 Thread Pollywog
On Wednesday 05 September 2007 16:12:07 Roland Smith wrote:
 On Wed, Sep 05, 2007 at 01:47:47AM +, Pollywog wrote:
  I have to manually set the loopback interface after each reboot on one
  machine (it is a laptop):
 
  ifconfig lo0 127.0.0.1 netmask 255.0.0.0
 
  Then everything is fine.
 
  I added ifconfig_lo0=127.0.0.1 netmask 255.0.0.0  to /etc/rc.conf
  but for unknown reasons it now looks like this and I still need to set
  lo0 manually after reboots:

 Have you tried setting network_interfaces? Here's the relevant part of
 my rc.conf:

 # Network settings
 network_interfaces=lo0 rl0 rl1
 ifconfig_lo0=inet 127.0.0.1
 ifconfig_rl0=inet 10.0.0.150/24 polling
 ifconfig_rl1=inet 192.168.0.1/24 polling

Yes, that is how I fixed the problem, but I don't know why the problem 
occurred in the first place, since in /etc/default/rc.conf I have:

network_interfaces=auto

Setting network_interfaces=lo0 vr0 in /etc/rc.conf fixed the problem


thanks


 HTH,
   Roland


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


loopback won't enable automatically

2007-09-04 Thread Pollywog
I have to manually set the loopback interface after each reboot on one machine 
(it is a laptop):

ifconfig lo0 127.0.0.1 netmask 255.0.0.0

Then everything is fine.

I added ifconfig_lo0=127.0.0.1 netmask 255.0.0.0  to /etc/rc.conf
but for unknown reasons it now looks like this and I still need to set lo0 
manually after reboots:

ifconfig_lo0=inet 127.0.0.1 netmask 255.0.0.0


Any ideas?  I am running FreeBSD 7
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: doubts about the freebsd devil

2007-09-04 Thread Pollywog
On Wednesday 05 September 2007 04:10:50 Erich Dollansky wrote:
 Hi,

 Ted Mittelstaedt wrote:
  Them's fighting words - don't you realize an entire subgroup of the
  FreeBSD developers spent untold amounts of time and effort setting up
  a rigged contest to attempt to convince the userbase that there was
  such a difference, in order to replace the logo with a round red sex
  toy?

 oh no.

 I always thought this glow in the eyes of women when mentioning FreeBSD
 came from the operating system's performance.


I think I must reconsider my position and admit there is a substantial 
difference between a logo and a mascot.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >