Re: need package name for setfacl command

2008-01-09 Thread Olivier Nicole
 I am saravana, I am using FreeBSD 4.9 Release, in that setfacl command
 was not found. So I need found source package for that command to
 compile and use it. Can you send the name  link to download the
 package.

I am no expert but from the man page of setfacl I see:

HISTORY
 Extended Attribute and Access Control List support was developed as part
 of the TrustedBSD Project and introduced in FreeBSD 5.0.

That means that ACL were not supported in FreeBSD 4, so even if you
compile the command setfacl, you will not be able to use it.

Do you really need to stay wit FreeBSD 4.9? Upgrade to 5, or even 6 is
painless and highly recommended.

Bests,

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


Re: Xorg 7.2 and FreeBSD 6.2-p5 VMWARE vmmouse problem

2008-01-09 Thread Sam Lawrance


On 09/01/2008, at 10:31 AM, Bob Finch wrote:


On 10/10/2007, at 17:00:22, Sam Lawrance wrote:

On 10/07/2007, at 11:53 AM, Webster, Andrew wrote:



Howdy,



I was successfully able to get Xorg upgraded to 7.2 by just
installing them from scratch as opposed to trying to upgrading an
existing system, BUT I’ve run into a problem…



While running VMWare Server 1.0.3 with FreeBSD 6.2-p5 and Xorg 7.2,
the mouse pointer behaves very oddly.

The pointer appears in the wrong place on the screen for where the
system actually thinks that it is.

I’m using the vmmouse driver part of the Xorg system, as the
regular mouse driver doesn’t appear to work at all, unless some
settings are amiss.

I really like the vmmouse drive because you can move the pointer in/
out of the window as you do with regular windows guest OSes.



Has anyone experienced similar problems and/ or know of a fix for
this?



Andrew,

I just set up VMWare Fusion with FreeBSD and have a problem that
might be related.  Ascii art time:
_
|_| |
|   |
|   |
|___|

The pointer appears normally on the screen.  However, clicking around
the screen does not work except in a small area in the top left
corner.  Moving the mouse within this tiny corner seems to scale up
and operate on the entire screen.  Eg. if I click and drag across the
tiny corner, I can see the selection appear across the entire  
desktop.


Is this similar to your issue?  Did you find a resolution?


Sam,

I ran into this problem on FreeBSD 7.0 RC1 with Xorg 7.3 using the
VMWare mouse driver (vmmouse).

Apparently, X server 1.4.0 in Xorg 7.3 no longer calls the  
conversion_proc

function in the mouse driver.  The VMWare mouse driver depends on that
call to scale the mouse coordiates to the screen size.

As a workaround, I fetched the x11-drivers/xf86-input-vmmouse port and
patched src/vmmouse.c by hand before installing it:

bob polaris[9]: diff -u orig/xf86-input-vmmouse-12.4.3/src/ 
vmmouse.c xf86-input-vmmouse-12.4.3/src/vmmouse.c
--- orig/xf86-input-vmmouse-12.4.3/src/vmmouse.c	2007-09-25  
16:11:47.0 -0700
+++ xf86-input-vmmouse-12.4.3/src/vmmouse.c	2008-01-08  
14:58:59.0 -0800

@@ -964,8 +964,11 @@
VMMOUSE_INPUT_DATA  vmmouseInput;
int ps2Buttons = 0;
int numPackets;
+   VMMousePrivPtr mPriv;
+   double factorX, factorY;

pMse = pInfo-private;
+   mPriv = pMse-mousePriv;
while((numPackets = VMMouseClient_GetInput(vmmouseInput))){
   if (numPackets == VMMOUSE_ERROR) {
  VMMouseClient_Disable();
@@ -990,6 +993,13 @@
   dy = vmmouseInput.Y;
   dz = (char)vmmouseInput.Z;
   dw = 0;
+
+  /* X server 1.4.0 does not call VMMouseConvertProc() so we  
scale coordinates here */
+  factorX = ((double) screenInfo.screens[mPriv-screenNum]- 
width) / (double) 65535;
+  factorY = ((double) screenInfo.screens[mPriv-screenNum]- 
height) / (double) 65535;

+  dx = dx * factorX + 0.5;
+  dy = dy * factorY + 0.5;
+
   /* post an event */
   pMse-PostEvent(pInfo, buttons, dx, dy, dz, dw);
}


Oh wow, I owe you a beer!

Any idea why this does not affect everyone using vmware?


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


Re: Sendmail: exposed root, why?

2008-01-09 Thread Jerahmy Pocott


On 09/01/2008, at 5:26 AM, Philip M. Gollucci wrote:


There is no directive, but you can edit the resultant .cf file
and remove the line
C{E}root
or root from that line if more than one user.


Be warned, you _will_ break /etc/crontab and periodic scripts mail  
delivery.


The reason it needs to be exposed is probably these scripts because  
other wise the from address for daily security scripts will be
root@masquerade rather than [EMAIL PROTECTED]  Now, it so  
happens that most of these e-mails have the machine name in the  
subject or what not.


I guess I will just try not exposing root and see what happens..

I don't really see why the crontab and periodic mail would
get broken though? Other than it having the wrong host in
the From: field, the subject line would still say the correct
host..

Or will it break it in some other way?

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


converting VM from VMWare-format to Qemu

2008-01-09 Thread Matthias Apitz

Hello,

I've a Zip archive with a VM which runs fine in VMPlayer on Linux;
it is just the contents of the directory and the VMWare files in this
like:

$ unzip -t Evergreen_1.2.0_Gentoo_x86.zip
Archive:  Evergreen_1.2.0_Gentoo_x86.zip
testing: Evergreen_Gentoo_1.2.0/   OK
testing: Evergreen_Gentoo_1.2.0/Other Linux 2.6.x kernel.vmsd   OK
testing: Evergreen_Gentoo_1.2.0/vmware-0.log   OK
testing: Evergreen_Gentoo_1.2.0/Gentoo-s003.vmdk   OK
testing: Evergreen_Gentoo_1.2.0/Other Linux 2.6.x kernel.vmx   OK
testing: Evergreen_Gentoo_1.2.0/Gentoo-s004.vmdk   OK
testing: Evergreen_Gentoo_1.2.0/vmware-2.log   OK
testing: Evergreen_Gentoo_1.2.0/nvram   OK
testing: Evergreen_Gentoo_1.2.0/Gentoo-s001.vmdk   OK
testing: Evergreen_Gentoo_1.2.0/core   OK
testing: Evergreen_Gentoo_1.2.0/vmware.log   OK
testing: Evergreen_Gentoo_1.2.0/Gentoo.vmdk   OK
testing: Evergreen_Gentoo_1.2.0/Gentoo-s002.vmdk   OK
testing: Evergreen_Gentoo_1.2.0/vmware-1.log   OK
testing: Evergreen_Gentoo_1.2.0/README   OK

Is there some way to convert this with 'qemu-img' to an image
usable with Qemu on FreeBSD? Thx

matthias
-- 
Matthias Apitz
Manager Technical Support - OCLC GmbH
Gruenwalder Weg 28g - 82041 Oberhaching - Germany
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e [EMAIL PROTECTED] - w http://www.oclc.org/ http://www.UnixArea.de/
b http://gurucubano.blogspot.com/
Don't top-post, read RFC1855 http://www.faqs.org/rfcs/rfc1855.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: converting VM from VMWare-format to Qemu

2008-01-09 Thread Kimi
On 09/01/2008, Matthias Apitz [EMAIL PROTECTED] wrote:

 Hello,

 I've a Zip archive with a VM which runs fine in VMPlayer on Linux;
 it is just the contents of the directory and the VMWare files in this
 like:

 $ unzip -t Evergreen_1.2.0_Gentoo_x86.zip
 Archive:  Evergreen_1.2.0_Gentoo_x86.zip
 testing: Evergreen_Gentoo_1.2.0/   OK
 testing: Evergreen_Gentoo_1.2.0/Other Linux 2.6.x kernel.vmsd   OK
 testing: Evergreen_Gentoo_1.2.0/vmware-0.log   OK
 testing: Evergreen_Gentoo_1.2.0/Gentoo-s003.vmdk   OK
 testing: Evergreen_Gentoo_1.2.0/Other Linux 2.6.x kernel.vmx   OK
 testing: Evergreen_Gentoo_1.2.0/Gentoo-s004.vmdk   OK
 testing: Evergreen_Gentoo_1.2.0/vmware-2.log   OK
 testing: Evergreen_Gentoo_1.2.0/nvram   OK
 testing: Evergreen_Gentoo_1.2.0/Gentoo-s001.vmdk   OK
 testing: Evergreen_Gentoo_1.2.0/core   OK
 testing: Evergreen_Gentoo_1.2.0/vmware.log   OK
 testing: Evergreen_Gentoo_1.2.0/Gentoo.vmdk   OK
 testing: Evergreen_Gentoo_1.2.0/Gentoo-s002.vmdk   OK
 testing: Evergreen_Gentoo_1.2.0/vmware-1.log   OK
 testing: Evergreen_Gentoo_1.2.0/README   OK

 Is there some way to convert this with 'qemu-img' to an image
 usable with Qemu on FreeBSD? Thx


I think the only part that needs converting is the VMDK files which is
the virtual hard disc drive. I'm not entirely sure if qemu-img handles
split VMDK files, I would be surprised if that was the case. I also
think the image is a sparse one go by the s in two of the VMDK's file
name. You can all but try.

better place to have asked maybe is the qemu malling list available on qemu.org

have you (anyone?) tried running VMware Player under FreeBSD's linux emulation?

 matthias
 --
 Matthias Apitz
 Manager Technical Support - OCLC GmbH
 Gruenwalder Weg 28g - 82041 Oberhaching - Germany
 t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
 e [EMAIL PROTECTED] - w http://www.oclc.org/ http://www.UnixArea.de/
 b http://gurucubano.blogspot.com/
 Don't top-post, read RFC1855 http://www.faqs.org/rfcs/rfc1855.html
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]



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


Re: converting VM from VMWare-format to Qemu

2008-01-09 Thread Matthias Apitz
El día Wednesday, January 09, 2008 a las 11:06:28AM +, Kimi escribió:

 I think the only part that needs converting is the VMDK files which is
 the virtual hard disc drive. I'm not entirely sure if qemu-img handles
 split VMDK files, I would be surprised if that was the case. I also
 think the image is a sparse one go by the s in two of the VMDK's file
 name. You can all but try.

Thx for the answer; this is how the running VM sees the disk:

# fdisk -l /dev/sda

Disk /dev/sda: 6442 MB, 6442450944 bytes
255 heads, 63 sectors/track, 783 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   1   5   40131   83  Linux
/dev/sda2   6  68  506047+  82  Linux swap / Solaris
/dev/sda3  69 783 5743237+  83  Linux

maybe it is an idea to just punch the complete disk /dev/sda
with dd(1) to a file outside the VM and convert/use this with
Qemu?

 better place to have asked maybe is the qemu malling list available on 
 qemu.org

this is not a mailing list, but a BBS with web interface; I asked
there already other stuff in the past w/o any answers; but will
do give it a try again;

 have you (anyone?) tried running VMware Player under FreeBSD's linux 
 emulation?

not me;

matthias

-- 
Matthias Apitz
Manager Technical Support - OCLC GmbH
Gruenwalder Weg 28g - 82041 Oberhaching - Germany
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e [EMAIL PROTECTED] - w http://www.oclc.org/ http://www.UnixArea.de/
b http://gurucubano.blogspot.com/
Don't top-post, read RFC1855 http://www.faqs.org/rfcs/rfc1855.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: converting VM from VMWare-format to Qemu

2008-01-09 Thread Kimi
On 09/01/2008, Matthias Apitz [EMAIL PROTECTED] wrote:
 El día Wednesday, January 09, 2008 a las 11:06:28AM +, Kimi escribió:

  I think the only part that needs converting is the VMDK files which is
  the virtual hard disc drive. I'm not entirely sure if qemu-img handles
  split VMDK files, I would be surprised if that was the case. I also
  think the image is a sparse one go by the s in two of the VMDK's file
  name. You can all but try.

 Thx for the answer; this is how the running VM sees the disk:

 # fdisk -l /dev/sda

 Disk /dev/sda: 6442 MB, 6442450944 bytes
 255 heads, 63 sectors/track, 783 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot  Start End  Blocks   Id  System
 /dev/sda1   1   5   40131   83  Linux
 /dev/sda2   6  68  506047+  82  Linux swap / Solaris
 /dev/sda3  69 783 5743237+  83  Linux

 maybe it is an idea to just punch the complete disk /dev/sda
 with dd(1) to a file outside the VM and convert/use this with
 Qemu?


it was one of two other possibles I was going to suggest along with
running VMware Server for Linux. maybe overkill? I just try to think
free incase qemu-img cannot do what you need.

  better place to have asked maybe is the qemu malling list available on 
  qemu.org

 this is not a mailing list, but a BBS with web interface; I asked
 there already other stuff in the past w/o any answers; but will
 do give it a try again;

sorry, you can post user questions on the developer mailing list, I
see a few times. you know, maybe your question has been asked before?
maybe use gmane.org and see.


  have you (anyone?) tried running VMware Player under FreeBSD's linux 
  emulation?

 not me;

 matthias

 --
 Matthias Apitz
 Manager Technical Support - OCLC GmbH
 Gruenwalder Weg 28g - 82041 Oberhaching - Germany
 t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
 e [EMAIL PROTECTED] - w http://www.oclc.org/ http://www.UnixArea.de/
 b http://gurucubano.blogspot.com/
 Don't top-post, read RFC1855 http://www.faqs.org/rfcs/rfc1855.html



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


Re: converting VM from VMWare-format to Qemu

2008-01-09 Thread Nikos Vassiliadis
On Wednesday 09 January 2008 13:35:29 Matthias Apitz wrote:
 maybe it is an idea to just punch the complete disk /dev/sda
 with dd(1) to a file outside the VM and convert/use this with
 Qemu?

Yes, that's going to work. You'll be much better if
boot (or switch) to single user mode to avoid writes
on the mounted filesystems while copying...

Nikos

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


size problem 7.0 amd64 (Dell-PERC 6/i)

2008-01-09 Thread Albert Shih
Hi all

I've just try to install FreeBSD  7.0RC1 on my new Dell PowerEdge 2900 with
PERC 6/i with two raid volumes on with 2 disk (2*80Go) and one 6 disk
(6*750 raid5).

The first volume (80Go) is perfectly working and the server boot normaly.

But on the second volume I've got 

A geometry of 455672/255/63 for mfid1 is incorrect.  Using  etc...

and when I don't care this message when I create a slice he say there are 

DISK Geometry:  455672 cyls/255 heads/63 sectors = 7320370680 sectors 
(3574399MB)

(The size is correct).

But when I try to create a partition 

Disk: mfid1 Partition name: mfid1s1 Free: 3025403321 blocks (1442GB)

and that it's not fine because I lost2.1 Tb

I cannot see how I can find the correct geometry with the bios of my
server, I try every menu on the bios, raid controlor menu etc... and don't
find anything.

Anyone known what I can do to have all my space ?

Regards.

--
Albert SHIH
Observatoire de Paris Meudon
SIO batiment 15
Téléphone : 01 45 07 76 26
Heure local/Local time:
Mer 9 jan 2008 15:26:28 CET
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


5.4-RELEASE crashing

2008-01-09 Thread Robert Fitzpatrick
I upgraded memory in a 5.4-RELEASE server from 1GB (2x512MB) to 4GB
(4x1GB). I'm wondering if that can even be causing my problem since
nothing went wrong for an entire week. One week later, the server just
stops responding in the middle of the night, I can see the login prompt,
but cannot type anything, no response to keyboard at all. Since the
initial crash one week after the memory upgrade, it continues to do this
every couple of days.

The crash has happened during the 3-4am time span every time except at
9pm once and then this morning at 9am. So, it seems it may be related to
something building up over time. After reset and disk cleanup, I have
examined the logs and cannot find anything in the message log, one entry
shows my last login activity and the next entry is the start of boot
info from the reset. The only thing I find in the logs erroneous is an
NFS connection not responding, then alive again, but I unmounted and
disabled the entry in fstab before it happened this morning.

I'm just trying to figure out how to approach tracking down my crashing
issue. Whether it somehow is related to the memory upgrade. The only
thing to note about the memory upgrade is on boot, it will say that it
is ignoring a small amount of memory over 4GB. Can someone suggest how
to approach my problem?

-- 
Robert

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


Re: Fortune

2008-01-09 Thread Kevin Kinsey

Jon Dowd wrote:


Later when I'm at that computer's console I will try to install the
games distribution from sysinstall (unless someone demonstrates a
simple way for me to proceed remotely).


Sysinstall can easily be run remotely; it has a post install
configure option that is used for situation such as this.
IIRC, the option you'll want is select additional distribution
sets.

Simply shell in with ssh from your remote computer, su
to root, and run sysinstall at your shell prompt.


Thanks to you all for helping an 'all thumbs' newb.


No problem --- we mostly remember when we were all thumbs,
too.

Kevin Kinsey

--
I belong to no organized party.  I am a Democrat.
-- Will Rogers

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


Setting up Smart Cards? (SCR3310)

2008-01-09 Thread Peter Thoenen

Morning everybody,

How exactly does one setup FreeBSD (primarily Firefox and Thunderbird) 
to use smart cards.  While I understand both FF and TB have security 
device settings, trying to figure out how to get FreeBSD to first 
recognize my card.  I have both a STCII and a SCR3310 and not sure what 
do once I plugged them in and inserted card.  Can't find any 
documentation on this either.


# dmesg
ugen0: SCM Microsystems Inc. SCR3310 USB Smart Card Reader, class 0/0, 
rev 2.00/5.18, addr 3 on uhub3

ugen0: at uhub3 port 2 (addr 3) disconnected
ugen0: detached
ugen0: SCM Microsystems Inc. STCII Smart Card Reader, class 0/0, rev 
1.10/1.40, addr 3 on uhub3


And then what?

Thanks,

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


Re: mail from: field question

2008-01-09 Thread Lowell Gilbert
Jim Bow [EMAIL PROTECTED] writes:

 I have a small shell script that does a backup to a usb drive and
 emails the results to a set of people. The script is triggered from
 devd (upon drive attachment) and runs as root.

 The problem is that the mail report is sent from an active system user
 and not user root. The user the mail is sent from is not referenced in
 the script. The mail line looks like this:

cat $LOGFILE | mail -s backuptousb report [EMAIL PROTECTED]

 I find this rather confusing since I was expecting the email to be
 sent by the user running the script. How can this be?

 A little research told me that this may be because of something called
 envelope-from, but I found little explanation of what that actually
 means. Anyone have any suggestions?

The answer will probably depend on the MTA you're using (which you
didn't mention, so it's probably sendmail), but checking a couple of
simple things first will help ensure you're at least on the right
track.  Run the script from the command line, and in particular just
call mail the way the script does.  Make sure the results are the same
(if they're not, the MTA isn't the problem).  Then, look in the mail
logs to see what they tell you about the message.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


freebsd6 authenticating against openldap 2.4?

2008-01-09 Thread Dave

Hello,
   Does anyone have their freebsd 6.x machines authenticating against ldap 
specifically openldap 2.3 or 2.4? I'd like to get all my bsd boxes to do 
this. I've read and googled and have found some items, but i'd rather hear 
about how from someone who has successfully done this, vs. making many first 
time mistakes that i'd have to go back later and correct.

   Thanks.
Dave.

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


Re: changing the postion of a partion in fdisk

2008-01-09 Thread Jerry McAllister
On Wed, Jan 09, 2008 at 11:00:04AM -0500, Jerry McAllister wrote:

 On Tue, Jan 08, 2008 at 10:01:34PM -0500, Aryeh M. Friedman wrote:
 
   On Mon, Jan 07, 2008 at 10:33:04PM -0500, Aryeh M. Friedman
   wrote:
  
   I have my FreeBSD partition as partition 1 and my ntfs as
   partition 2 but Vista insists that there is no suitable
   partion to install to (even though the ntfs partition is big
   enough)... after some research I found that vista absolutely
   insists that the ntfs partition be partition 1... how do I
   swap them and/or delete the ntfs one and renumber it so
   freebsd is in partion slot 2 (with nothing in 1 and then I
   can use fdisk to make a new slot 1)

   I think I should of been a little more specific the physical
   layout is completely correct (i.e. the sizes, start/end tracks,
   etc.) the only problem is the logical numbering of the
   partitions/slices in the mbr idea of the table... namely I just
   need to relabel them not modify them in any way.
  
   I don't think you can make slice 2 become slice 1.  The system
   numbers them in order of appearance.  This comes from BIOS standard
   usage.
  2 starts before 1 in my case?!??!
  
  % fdisk
  *** Working on device /dev/ad8 ***
  parameters extracted from in-core disklabel are:
  cylinders=969021 heads=16 sectors/track=63 (1008 blks/cyl)
  
  Figures below won't work with BIOS for partitions not in cyl 1
  parameters to be used for BIOS calculations are:
  cylinders=969021 heads=16 sectors/track=63 (1008 blks/cyl)
  
  Media sector size is 512
  Warning: BIOS sector numbering starts with sector 1
  Information from DOS bootblock is:
  The data for partition 1 is:
  sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD)
  start 62910540, size 913857525 (446219 Meg), flag 80 (active)
  beg: cyl 1023/ head 255/ sector 63;
  end: cyl 1023/ head 254/ sector 63
  The data for partition 2 is:
  sysid 7 (0x07),(OS/2 HPFS, NTFS, QNX-2 (16 bit) or Advanced UNIX)
  start 63, size 62910477 (30718 Meg), flag 80 (active)
  beg: cyl 0/ head 1/ sector 1;
  end: cyl 1023/ head 254/ sector 63
  The data for partition 3 is:
  UNUSED
  The data for partition 4 is:
  UNUSED
  
  2
 
 Interesting.   I have never seen that before.
 
 jerry

And, given this, you might try doing an fdisk to recreate those slices 
with the location specs that you want - that is create slice 2 with
starting point and size using the beginning values and slice 1 with
starting address and size following that.  I am not sure the fdisk 
would work at all that way, but it might.

Also, I wouldn't guarantee that the current contents of those slices would 
still be usable.  They might.   Doing an fdisk only modifies the slice 
table and not any of the data or even the partition tables for the slices 
which are written by bsdlabel.  So, it might leave it intact. 

But, if you are up to experimenting, you might learn something.
If you have a good backup of what you need to preserve, then the
worse that could happen is you would have to start over from scratch
and reinstall both Vista and FreeBSD.  At that point, it becomes moot
because you can put things where you want.

jerry

 
  - --
  Aryeh M. Friedman
  FloSoft Systems, Java Developer Tools
  http://www.flosoft-systems.com
  Developer, not business, friendly.
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v2.0.4 (FreeBSD)
  Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
  
  iD8DBQFHhDkOjRvRjGmHRgQRAr09AJ0TCHS+emo0rp0/UBNtHKE8CxxlBQCfTz3g
  AFWyXr9pArXzfBsGvfRFgUQ=
  =HZJJ
  -END PGP SIGNATURE-
  
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [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: dell Power Edge 2950

2008-01-09 Thread Brian A. Seklecki


On Thu, 27 Dec 2007, Olivier Nicole wrote:


Hello,

This is just to confirm that Dell Power Edge 2950, with Quad Core Xeon
E5420 is OK with FreeBSD 6.2/6.3.


Make sure that you get a Revision 2 (R2).  We had some serious stability 
issues with two R1s.  Yay for beta testing $6k servers.


You'll want to read the entire thread about mfi(4) and bce(4) instability 
on RELENG_6.  Someone just reported a geometry size reporting error with 
the new PERC/6 that Dell is pushing, so stick with PERC/5.


My personal recommendation is to use em(4) and disable onboard Broadcom 
and forget that Dell ever started shipping Broadcom.


~BAS

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


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread Jonathan Horne

zbigniew szalbot wrote:

Hello,

Schiz0 pisze:
On Jan 9, 2008 11:00 AM, zbigniew szalbot 
[EMAIL PROTECTED] wrote:

 Hello,

 Can you help me solve what probably is a very simple problem with
 virtual directories. I need to define two different virtual hosts for
 the same IP.

 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 However, when I restart apache, I get:
 [Wed Jan 09 16:59:34 2008] [warn] _default_ VirtualHost overlap on port
 80, the first has precedence

 What do I need to change to make it right?

 Many thanks!

 Zbigniew Szalbot
 ___

Try adding the port to the IP addresses. For example:

NameVirtualHost 83.19.156.210:80
VirtualHost 83.19.156.210:80
And also for the other VirtualHost block too.
  


I actually solved it by following advice from:
http://httpd.apache.org/docs/2.0/vhosts/name-based.html

However, the problem is that the blog.lc-words.com does not serve the 
site I want it to serve. But instead serves the default site which is 
lists.lc-words.com


Thanks!

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


if it were me, id move the blog directory up on, to /usr/local/www/blog. 
 otherwise, what apache is telling you, is that if the configuration 
even worked, that someone could view the content of blog as if it were 
a directory of the top level's site.  along with moving the directory up 
one (and editing the virtual host's line to reflect the move), add the 
folder as a 'Directory statement' in your configuration:


Directory /usr/local/www/blog
AllowOverride None
Order Allow,deny
Allow from all
/Directory

hth,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread Schiz0
On Jan 9, 2008 11:00 AM, zbigniew szalbot [EMAIL PROTECTED] wrote:
 Hello,

 Can you help me solve what probably is a very simple problem with
 virtual directories. I need to define two different virtual hosts for
 the same IP.

 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 However, when I restart apache, I get:
 [Wed Jan 09 16:59:34 2008] [warn] _default_ VirtualHost overlap on port
 80, the first has precedence

 What do I need to change to make it right?

 Many thanks!

 Zbigniew Szalbot
 ___

Try adding the port to the IP addresses. For example:

NameVirtualHost 83.19.156.210:80
VirtualHost 83.19.156.210:80
And also for the other VirtualHost block too.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Offshore Software Development Company | Semaphore

2008-01-09 Thread Kuntal Mehta

 **Adviertisement**
[1]Offshore Software Deveopment Company | Semaphore | CMMi3
[2]COMPANY | [3]OFFSHORE DEVELOPMENT | [4]SERVICES | [5]TECHNOLOGY |
 [6]BPO | [7]CLIENTELE | [8]CONTACT


   [nox_top_bg.jpg]
OUR COMPANY
   [bullet_green.gif] A fast growing Indian software development company
   with more than 15 years of industry experience
   [bullet_green.gif] SEI CMMi Level 3 Organization
   [bullet_green.gif] ISO/IEC 27001 Information Security
   [bullet_green.gif] Have completed more than 500+ offshore software
   development projects
   [bullet_green.gif] Successful track record of 100% offshore projects
   delivery
   [bullet_green.gif] Offshore Development Center at India with strength
   of more than 300
   [box_bot_bg.jpg]
   [nox_top_bg.jpg]
WHAT WE OFFER
Semaphore's highly skilled  experienced team is offering Offshore
   Development Services in  the following areas:

   [bullet_green.gif] Software Development services in Microsoft .NET,
   Java, Linux
   [bullet_green.gif] Custom Internet Solutions, e-Commerce and CMS
   [bullet_green.gif] Website Design  Development, Portals  Multimedia
   Services
   [bullet_green.gif] Legacy Application Re-engineering, Software Porting
   and Migration Services
   [bullet_green.gif] Software Product Development and Maintenance
   Services
   [box_bot_bg.jpg]

   Call us on 201-777-2366 to know more
   [9]Requst A Quote


 Semaphore Software
 124 Windsor St. 2nd Floor,
  Kearny, NJ 07032
   United States
Phone : 201-777-2366
 Fax : 201-917-1367
   Email : [EMAIL PROTECTED]
  Website : [11]www.semaphore-software.com

   This email has been sent as you have agreed to receive offers at one
   of our partner web sites. If you would not like to receive such offers
   in the future please reply to this message by typing [12]Unsubscribe
   in the subject line.
   Please give us 48 hours to remove you from our mailing list.

References

   1. LYNXIMGMAP:file://localhost/tmp/tmp_LkDs4.html#MapMap
   2. http://www.semaphore-software.com/offshore_outsourcing_india/aboutus.htm
   3. 
http://semaphore-software.com/offshore-outsourcing/offshore_outsourcing_services.htm
   4. 
http://semaphore-software.com/software-solution/offshore_software_web_bpo_services.htm
   5. http://semaphore-software.com/technology_offering/technology_offering.htm
   6. 
http://semaphore-software.com/bpo_business_process_outsourcing/bpo_business_process_outsourcing.htm
   7. http://semaphore-software.com/offshore_outsourcing_india/clientele.htm
   8. http://semaphore-software.com/offshore_outsourcing_india/contactus.htm
   9. LYNXIMGMAP:file://localhost/tmp/tmp_LkDs4.html#Map2Map
  10. mailto:[EMAIL PROTECTED]
  11. http://www.semaphore-software.com/
  12. http://www.semaphore-software.com/unsubscribe.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Offshore Software Development Company | Semaphore

2008-01-09 Thread Kuntal Mehta

 **Adviertisement**
[1]Offshore Software Deveopment Company | Semaphore | CMMi3
[2]COMPANY | [3]OFFSHORE DEVELOPMENT | [4]SERVICES | [5]TECHNOLOGY |
 [6]BPO | [7]CLIENTELE | [8]CONTACT


   [nox_top_bg.jpg]
OUR COMPANY
   [bullet_green.gif] A fast growing Indian software development company
   with more than 15 years of industry experience
   [bullet_green.gif] SEI CMMi Level 3 Organization
   [bullet_green.gif] ISO/IEC 27001 Information Security
   [bullet_green.gif] Have completed more than 500+ offshore software
   development projects
   [bullet_green.gif] Successful track record of 100% offshore projects
   delivery
   [bullet_green.gif] Offshore Development Center at India with strength
   of more than 300
   [box_bot_bg.jpg]
   [nox_top_bg.jpg]
WHAT WE OFFER
Semaphore's highly skilled  experienced team is offering Offshore
   Development Services in  the following areas:

   [bullet_green.gif] Software Development services in Microsoft .NET,
   Java, Linux
   [bullet_green.gif] Custom Internet Solutions, e-Commerce and CMS
   [bullet_green.gif] Website Design  Development, Portals  Multimedia
   Services
   [bullet_green.gif] Legacy Application Re-engineering, Software Porting
   and Migration Services
   [bullet_green.gif] Software Product Development and Maintenance
   Services
   [box_bot_bg.jpg]

   Call us on 201-777-2366 to know more
   [9]Requst A Quote


 Semaphore Software
 124 Windsor St. 2nd Floor,
  Kearny, NJ 07032
   United States
Phone : 201-777-2366
 Fax : 201-917-1367
   Email : [EMAIL PROTECTED]
  Website : [11]www.semaphore-software.com

   This email has been sent as you have agreed to receive offers at one
   of our partner web sites. If you would not like to receive such offers
   in the future please reply to this message by typing [12]Unsubscribe
   in the subject line.
   Please give us 48 hours to remove you from our mailing list.

References

   1. LYNXIMGMAP:file://localhost/tmp/tmpBB3SPw.html#MapMap
   2. http://www.semaphore-software.com/offshore_outsourcing_india/aboutus.htm
   3. 
http://semaphore-software.com/offshore-outsourcing/offshore_outsourcing_services.htm
   4. 
http://semaphore-software.com/software-solution/offshore_software_web_bpo_services.htm
   5. http://semaphore-software.com/technology_offering/technology_offering.htm
   6. 
http://semaphore-software.com/bpo_business_process_outsourcing/bpo_business_process_outsourcing.htm
   7. http://semaphore-software.com/offshore_outsourcing_india/clientele.htm
   8. http://semaphore-software.com/offshore_outsourcing_india/contactus.htm
   9. LYNXIMGMAP:file://localhost/tmp/tmpBB3SPw.html#Map2Map
  10. mailto:[EMAIL PROTECTED]
  11. http://www.semaphore-software.com/
  12. http://www.semaphore-software.com/unsubscribe.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread Jonathan Horne

Jonathan Horne wrote:

zbigniew szalbot wrote:




 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost



also, try this setting up a vhost for the actual host, then 'child' 
vhosts for the different sites that you want to host. an example:


# Virtual Hosts
NameVirtualHost *:80

# VH for actualhost.example.com
VirtualHost *:80
ServerName actualhost.example.com
UserDir disable
DocumentRoot /usr/local/www/apache22/data/
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/actualhost.example.com_log combined
/VirtualHost

# VH for blog
VirtualHost *:80
ServerName blog.example.com
UserDir disable
DocumentRoot /usr/local/www/blog
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/blog.example.com_log combined
/VirtualHost

# VH for lists
VirtualHost *:80
ServerName lists.example.com
ServerAlias lists.example.com
DocumentRoot /usr/local/www/lists
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/lists.example.com_log combined
/VirtualHost

i believe the specifying ServerName is critically important to 
sucessfully wrangling all your vhosts into the proper DocumentRoot(s).


hth,
--
Jonathan Horne
http://www.dfwlp.org
[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: apache virtual directories / VirtualHost overlap

2008-01-09 Thread zbigniew szalbot

Hello,

Schiz0 pisze:

On Jan 9, 2008 11:00 AM, zbigniew szalbot [EMAIL PROTECTED] wrote:
 Hello,

 Can you help me solve what probably is a very simple problem with
 virtual directories. I need to define two different virtual hosts for
 the same IP.

 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 However, when I restart apache, I get:
 [Wed Jan 09 16:59:34 2008] [warn] _default_ VirtualHost overlap on port
 80, the first has precedence

 What do I need to change to make it right?

 Many thanks!

 Zbigniew Szalbot
 ___

Try adding the port to the IP addresses. For example:

NameVirtualHost 83.19.156.210:80
VirtualHost 83.19.156.210:80
And also for the other VirtualHost block too.
  


I actually solved it by following advice from:
http://httpd.apache.org/docs/2.0/vhosts/name-based.html

However, the problem is that the blog.lc-words.com does not serve the 
site I want it to serve. But instead serves the default site which is 
lists.lc-words.com


Thanks!

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


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread zbigniew szalbot

Hello all,

Jonathan Horne pisze:

zbigniew szalbot wrote:
 Hello,
 
 Schiz0 pisze:
 On Jan 9, 2008 11:00 AM, zbigniew szalbot 
 [EMAIL PROTECTED] wrote:

  Hello,
 
  Can you help me solve what probably is a very simple problem with
  virtual directories. I need to define two different virtual hosts for
  the same IP.
 
  So I defined:
 
  NameVirtualHost 83.19.156.210
 
  VirtualHost 83.19.156.210
  ServerAdmin [EMAIL PROTECTED]
  DocumentRoot /usr/local/www/data/
  ServerName lists.lc-words.com
  ErrorLog /var/log/httpd-error.log
  CustomLog /var/log/httpd-access.log common
  /VirtualHost
 
  VirtualHost 83.19.156.210
  ServerAdmin [EMAIL PROTECTED]
  DocumentRoot /usr/local/www/data/blog/
  ServerName blog.lc-words.com
  ErrorLog /var/log/httpd-error.log
  CustomLog /var/log/httpd-access.log common
  /VirtualHost
 
  However, when I restart apache, I get:
  [Wed Jan 09 16:59:34 2008] [warn] _default_ VirtualHost overlap on port
  80, the first has precedence
 
  What do I need to change to make it right?
 
  Many thanks!
 
  Zbigniew Szalbot
  ___

 Try adding the port to the IP addresses. For example:

 NameVirtualHost 83.19.156.210:80
 VirtualHost 83.19.156.210:80
 And also for the other VirtualHost block too.
   
 
 I actually solved it by following advice from:

 http://httpd.apache.org/docs/2.0/vhosts/name-based.html
 
 However, the problem is that the blog.lc-words.com does not serve the 
 site I want it to serve. But instead serves the default site which is 
 lists.lc-words.com
 
 Thanks!
 
 ZS

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


if it were me, id move the blog directory up on, to /usr/local/www/blog. 
  otherwise, what apache is telling you, is that if the configuration 
even worked, that someone could view the content of blog as if it were 
a directory of the top level's site.  along with moving the directory up 
one (and editing the virtual host's line to reflect the move), add the 
folder as a 'Directory statement' in your configuration:


Directory /usr/local/www/blog
 AllowOverride None
 Order Allow,deny
 Allow from all
/Directory
  

Jonathan - thank you for a very helpful advice!
As for the site not being served, it was an internal problem of a 
.htaccess redirection.


All solved. Thank you everyone who contributed!

Zbigniew Szalbot


hth,
  

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


Offshore Software Development Company | Semaphore

2008-01-09 Thread Kuntal Mehta

 **Adviertisement**
[1]Offshore Software Deveopment Company | Semaphore | CMMi3
[2]COMPANY | [3]OFFSHORE DEVELOPMENT | [4]SERVICES | [5]TECHNOLOGY |
 [6]BPO | [7]CLIENTELE | [8]CONTACT


   [nox_top_bg.jpg]
OUR COMPANY
   [bullet_green.gif] A fast growing Indian software development company
   with more than 15 years of industry experience
   [bullet_green.gif] SEI CMMi Level 3 Organization
   [bullet_green.gif] ISO/IEC 27001 Information Security
   [bullet_green.gif] Have completed more than 500+ offshore software
   development projects
   [bullet_green.gif] Successful track record of 100% offshore projects
   delivery
   [bullet_green.gif] Offshore Development Center at India with strength
   of more than 300
   [box_bot_bg.jpg]
   [nox_top_bg.jpg]
WHAT WE OFFER
Semaphore's highly skilled  experienced team is offering Offshore
   Development Services in  the following areas:

   [bullet_green.gif] Software Development services in Microsoft .NET,
   Java, Linux
   [bullet_green.gif] Custom Internet Solutions, e-Commerce and CMS
   [bullet_green.gif] Website Design  Development, Portals  Multimedia
   Services
   [bullet_green.gif] Legacy Application Re-engineering, Software Porting
   and Migration Services
   [bullet_green.gif] Software Product Development and Maintenance
   Services
   [box_bot_bg.jpg]

   Call us on 201-777-2366 to know more
   [9]Requst A Quote


 Semaphore Software
 124 Windsor St. 2nd Floor,
  Kearny, NJ 07032
   United States
Phone : 201-777-2366
 Fax : 201-917-1367
   Email : [EMAIL PROTECTED]
  Website : [11]www.semaphore-software.com

   This email has been sent as you have agreed to receive offers at one
   of our partner web sites. If you would not like to receive such offers
   in the future please reply to this message by typing [12]Unsubscribe
   in the subject line.
   Please give us 48 hours to remove you from our mailing list.

References

   1. LYNXIMGMAP:file://localhost/tmp/tmpguCvpx.html#MapMap
   2. http://www.semaphore-software.com/offshore_outsourcing_india/aboutus.htm
   3. 
http://semaphore-software.com/offshore-outsourcing/offshore_outsourcing_services.htm
   4. 
http://semaphore-software.com/software-solution/offshore_software_web_bpo_services.htm
   5. http://semaphore-software.com/technology_offering/technology_offering.htm
   6. 
http://semaphore-software.com/bpo_business_process_outsourcing/bpo_business_process_outsourcing.htm
   7. http://semaphore-software.com/offshore_outsourcing_india/clientele.htm
   8. http://semaphore-software.com/offshore_outsourcing_india/contactus.htm
   9. LYNXIMGMAP:file://localhost/tmp/tmpguCvpx.html#Map2Map
  10. mailto:[EMAIL PROTECTED]
  11. http://www.semaphore-software.com/
  12. http://www.semaphore-software.com/unsubscribe.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Offshore Software Development Company | Semaphore

2008-01-09 Thread Kuntal Mehta

 **Adviertisement**
[1]Offshore Software Deveopment Company | Semaphore | CMMi3
[2]COMPANY | [3]OFFSHORE DEVELOPMENT | [4]SERVICES | [5]TECHNOLOGY |
 [6]BPO | [7]CLIENTELE | [8]CONTACT


   [nox_top_bg.jpg]
OUR COMPANY
   [bullet_green.gif] A fast growing Indian software development company
   with more than 15 years of industry experience
   [bullet_green.gif] SEI CMMi Level 3 Organization
   [bullet_green.gif] ISO/IEC 27001 Information Security
   [bullet_green.gif] Have completed more than 500+ offshore software
   development projects
   [bullet_green.gif] Successful track record of 100% offshore projects
   delivery
   [bullet_green.gif] Offshore Development Center at India with strength
   of more than 300
   [box_bot_bg.jpg]
   [nox_top_bg.jpg]
WHAT WE OFFER
Semaphore's highly skilled  experienced team is offering Offshore
   Development Services in  the following areas:

   [bullet_green.gif] Software Development services in Microsoft .NET,
   Java, Linux
   [bullet_green.gif] Custom Internet Solutions, e-Commerce and CMS
   [bullet_green.gif] Website Design  Development, Portals  Multimedia
   Services
   [bullet_green.gif] Legacy Application Re-engineering, Software Porting
   and Migration Services
   [bullet_green.gif] Software Product Development and Maintenance
   Services
   [box_bot_bg.jpg]

   Call us on 201-777-2366 to know more
   [9]Requst A Quote


 Semaphore Software
 124 Windsor St. 2nd Floor,
  Kearny, NJ 07032
   United States
Phone : 201-777-2366
 Fax : 201-917-1367
   Email : [EMAIL PROTECTED]
  Website : [11]www.semaphore-software.com

   This email has been sent as you have agreed to receive offers at one
   of our partner web sites. If you would not like to receive such offers
   in the future please reply to this message by typing [12]Unsubscribe
   in the subject line.
   Please give us 48 hours to remove you from our mailing list.

References

   1. LYNXIMGMAP:file://localhost/tmp/tmp5GUONa.html#MapMap
   2. http://www.semaphore-software.com/offshore_outsourcing_india/aboutus.htm
   3. 
http://semaphore-software.com/offshore-outsourcing/offshore_outsourcing_services.htm
   4. 
http://semaphore-software.com/software-solution/offshore_software_web_bpo_services.htm
   5. http://semaphore-software.com/technology_offering/technology_offering.htm
   6. 
http://semaphore-software.com/bpo_business_process_outsourcing/bpo_business_process_outsourcing.htm
   7. http://semaphore-software.com/offshore_outsourcing_india/clientele.htm
   8. http://semaphore-software.com/offshore_outsourcing_india/contactus.htm
   9. LYNXIMGMAP:file://localhost/tmp/tmp5GUONa.html#Map2Map
  10. mailto:[EMAIL PROTECTED]
  11. http://www.semaphore-software.com/
  12. http://www.semaphore-software.com/unsubscribe.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 5.4-RELEASE crashing

2008-01-09 Thread Derek Ragona

At 08:19 AM 1/9/2008, Robert Fitzpatrick wrote:

I upgraded memory in a 5.4-RELEASE server from 1GB (2x512MB) to 4GB
(4x1GB). I'm wondering if that can even be causing my problem since
nothing went wrong for an entire week. One week later, the server just
stops responding in the middle of the night, I can see the login prompt,
but cannot type anything, no response to keyboard at all. Since the
initial crash one week after the memory upgrade, it continues to do this
every couple of days.

The crash has happened during the 3-4am time span every time except at
9pm once and then this morning at 9am. So, it seems it may be related to
something building up over time. After reset and disk cleanup, I have
examined the logs and cannot find anything in the message log, one entry
shows my last login activity and the next entry is the start of boot
info from the reset. The only thing I find in the logs erroneous is an
NFS connection not responding, then alive again, but I unmounted and
disabled the entry in fstab before it happened this morning.

I'm just trying to figure out how to approach tracking down my crashing
issue. Whether it somehow is related to the memory upgrade. The only
thing to note about the memory upgrade is on boot, it will say that it
is ignoring a small amount of memory over 4GB. Can someone suggest how
to approach my problem?

--
Robert


You should verify a few things:  Make sure the memory you installed is 
correct for the motherboard AND the motherboard will handle that quantity 
of memory.


I would run the generic kernel if you can, to see that there are no custom 
kernel issues.


Run memtest or other diagnostic utility to check the memory you installed.

If all that doesn't help, check for cron jobs causing a problem, or perhaps 
run a periodic cron job to provide a log of what is running that you can 
refer to after a crash.


-Derek

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: Xorg 7.2 and FreeBSD 6.2-p5 VMWARE vmmouse problem

2008-01-09 Thread Bob Finch

On Wed, 2008-01-09 at 19:26 +1100, Sam Lawrance wrote:
 On 09/01/2008, at 10:31 AM, Bob Finch wrote:
 
  On 10/10/2007, at 17:00:22, Sam Lawrance wrote:
  On 10/07/2007, at 11:53 AM, Webster, Andrew wrote:
 
  Howdy,
 
 
 
  I was successfully able to get Xorg upgraded to 7.2 by just
  installing them from scratch as opposed to trying to upgrading an
  existing system, BUT I’ve run into a problem…
 
 
 
  While running VMWare Server 1.0.3 with FreeBSD 6.2-p5 and Xorg 7.2,
  the mouse pointer behaves very oddly.
 
  The pointer appears in the wrong place on the screen for where the
  system actually thinks that it is.
 
  I’m using the vmmouse driver part of the Xorg system, as the
  regular mouse driver doesn’t appear to work at all, unless some
  settings are amiss.
 
  I really like the vmmouse drive because you can move the pointer in/
  out of the window as you do with regular windows guest OSes.
 
 
 
  Has anyone experienced similar problems and/ or know of a fix for
  this?
 
 
  Andrew,
 
  I just set up VMWare Fusion with FreeBSD and have a problem that
  might be related.  Ascii art time:
  _
  |_| |
  |   |
  |   |
  |___|
 
  The pointer appears normally on the screen.  However, clicking around
  the screen does not work except in a small area in the top left
  corner.  Moving the mouse within this tiny corner seems to scale up
  and operate on the entire screen.  Eg. if I click and drag across the
  tiny corner, I can see the selection appear across the entire  
  desktop.
 
  Is this similar to your issue?  Did you find a resolution?
 
  Sam,
 
  I ran into this problem on FreeBSD 7.0 RC1 with Xorg 7.3 using the
  VMWare mouse driver (vmmouse).
 
  Apparently, X server 1.4.0 in Xorg 7.3 no longer calls the  
  conversion_proc
  function in the mouse driver.  The VMWare mouse driver depends on that
  call to scale the mouse coordiates to the screen size.
 
  As a workaround, I fetched the x11-drivers/xf86-input-vmmouse port and
  patched src/vmmouse.c by hand before installing it:
 
  bob polaris[9]: diff -u orig/xf86-input-vmmouse-12.4.3/src/ 
  vmmouse.c xf86-input-vmmouse-12.4.3/src/vmmouse.c
  --- orig/xf86-input-vmmouse-12.4.3/src/vmmouse.c2007-09-25  
  16:11:47.0 -0700
  +++ xf86-input-vmmouse-12.4.3/src/vmmouse.c 2008-01-08  
  14:58:59.0 -0800
  @@ -964,8 +964,11 @@
  VMMOUSE_INPUT_DATA  vmmouseInput;
  int ps2Buttons = 0;
  int numPackets;
  +   VMMousePrivPtr mPriv;
  +   double factorX, factorY;
 
  pMse = pInfo-private;
  +   mPriv = pMse-mousePriv;
  while((numPackets = VMMouseClient_GetInput(vmmouseInput))){
 if (numPackets == VMMOUSE_ERROR) {
VMMouseClient_Disable();
  @@ -990,6 +993,13 @@
 dy = vmmouseInput.Y;
 dz = (char)vmmouseInput.Z;
 dw = 0;
  +
  +  /* X server 1.4.0 does not call VMMouseConvertProc() so we  
  scale coordinates here */
  +  factorX = ((double) screenInfo.screens[mPriv-screenNum]- 
  width) / (double) 65535;
  +  factorY = ((double) screenInfo.screens[mPriv-screenNum]- 
  height) / (double) 65535;
  +  dx = dx * factorX + 0.5;
  +  dy = dy * factorY + 0.5;
  +
 /* post an event */
 pMse-PostEvent(pInfo, buttons, dx, dy, dz, dw);
  }
 
 Oh wow, I owe you a beer!
 
 Any idea why this does not affect everyone using vmware?

The problem only shows up with the vmmouse driver in Xorg 7.3. If
you're using an older version of Xorg or if you're using the
standard mouse driver, you won't see the problem.

It sounds like the next Xorg server release will fix the problem.

http://lists.freedesktop.org/pipermail/xorg/2007-September/028624.html

-- Bob


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


Error when built OpenOffice 2

2008-01-09 Thread Zbigniew Komarnicki
Hello!

I would like to ask you for help with this issue. I obtain the following 
error:

cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/pref/browser-prefs.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/pref/browser-prefs.js 
 
cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/pref/mailnews.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/pref/mailnews.js 
 
cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/pref/mdn.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/pref/mdn.js 
 
cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/pref/smime.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/pref/smime.js 
 
cp -f 
./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/autoconfig/platform.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/autoconfig/platform.js 
 
cp -f 
./unxfbsdi.pro/misc/build/mozilla/dist/bin/defaults/autoconfig/prefcalls.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/defaults/autoconfig/prefcalls.js 
 
cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/greprefs/all.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/greprefs/all.js 
 
cp -f ./unxfbsdi.pro/misc/build/mozilla/dist/bin/greprefs/security-prefs.js 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/greprefs/security-prefs.js 
 \
echo  /dev/null
cd ./unxfbsdi.pro/misc/FREEBSDGCCIruntime  strip *.so
cd ./unxfbsdi.pro/misc/FREEBSDGCCIruntime/components  strip *.so
cd ./unxfbsdi.pro/misc/FREEBSDGCCIruntime  ./regxpcom
cp -f ./unxfbsdi.pro/misc/FREEBSDGCCIruntime/components/xpti.dat 
./unxfbsdi.pro/misc/FREEBSDGCCIruntime/components/xptitemp.dat
rm -f ./unxfbsdi.pro/misc/FREEBSDGCCIruntime/regxpcom
cd ./unxfbsdi.pro/misc/FREEBSDGCCIruntime  zip -r ../../bin/mozruntime.zip *
  adding: components/ (stored 0%)
  adding: components/libaddrbook.so (deflated 63%)
  adding: components/libmork.so (deflated 66%)
  adding: components/libmozldap.so (deflated 61%)
  adding: components/libnecko.so (deflated 62%)
  adding: components/libprofile.so (deflated 61%)
  adding: components/libxpcom_compat_c.so (deflated 60%)
  adding: components/librdf.so (deflated 65%)
  adding: components/libuconv.so (deflated 46%)
  adding: components/libvcard.so (deflated 60%)
  adding: components/libi18n.so (deflated 63%)
  adding: components/libpipnss.so (deflated 62%)
  adding: components/libpref.so (deflated 63%)
  adding: components/libxpconnect.so (deflated 64%)
  adding: components/necko_dns.xpt (deflated 30%)
  adding: components/xpcom_base.xpt (deflated 46%)
  adding: components/xpcom_obsolete.xpt (deflated 53%)
  adding: components/xpcom_components.xpt (deflated 55%)
  adding: components/xpcom_ds.xpt (deflated 56%)
  adding: components/xpcom_io.xpt (deflated 52%)
  adding: components/xpcom_xpti.xpt (deflated 46%)
  adding: components/addrbook.xpt (deflated 59%)
  adding: components/mozldap.xpt (deflated 45%)
  adding: components/xpcom_threads.xpt (deflated 45%)
  adding: components/xptitemp.dat (deflated 57%)
  adding: components/xpti.dat (deflated 57%)
  adding: components/compreg.dat (deflated 81%)
  adding: defaults/ (stored 0%)
  adding: defaults/pref/ (stored 0%)
  adding: defaults/pref/browser-prefs.js (deflated 67%)
  adding: defaults/pref/mailnews.js (deflated 71%)
  adding: defaults/pref/mdn.js (deflated 60%)
  adding: defaults/pref/smime.js (deflated 50%)
  adding: defaults/autoconfig/ (stored 0%)
  adding: defaults/autoconfig/platform.js (deflated 5%)
  adding: defaults/autoconfig/prefcalls.js (deflated 71%)
  adding: greprefs/ (stored 0%)
  adding: greprefs/all.js (deflated 74%)
  adding: greprefs/security-prefs.js (deflated 80%)
  adding: libldap50.so (deflated 56%)
  adding: libmozjs.so (deflated 56%)
  adding: libmozz.so (deflated 52%)
  adding: libmsgbaseutil.so (deflated 64%)
  adding: libnspr4.so (deflated 56%)
  adding: libnss3.so (deflated 58%)
  adding: libplc4.so (deflated 54%)
  adding: libplds4.so (deflated 52%)
  adding: libprldap50.so (deflated 54%)
  adding: libsmime3.so (deflated 57%)
  adding: libsoftokn3.so (deflated 60%)
  adding: libssl3.so (deflated 55%)
  adding: libxpcom.so (deflated 65%)
  adding: libxpcom_compat.so (deflated 62%)
touch unxfbsdi.pro/misc/build/so_moz_runtime_files
You can delete ./unxfbsdi.pro/inc to force it copy all include files again.
/usr/local/bin/gcp -pRL ./unxfbsdi.pro/misc/build/mozilla/dist/include/* 
./unxfbsdi.pro/inc
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/addrbook': 
Invalid argument
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/appcomps': 
Invalid argument
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/appshell': 
Invalid argument
/usr/local/bin/gcp: preserving permissions for 
`./unxfbsdi.pro/inc/autoconfig': Invalid argument
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/bayesflt': 
Invalid argument
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/browser': 
Invalid argument
/usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/caps': 

Error when built OpenOffice 2

2008-01-09 Thread Robert Huff

[Follow-ups set to [EMAIL PROTECTED]

Zbigniew Komarnicki writes:

  I would like to ask you for help with this issue. I obtain the
  following error:

  Invalid argument
  /usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/xuldoc': 
  Invalid argument
  /usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/xultmpl': 
  Invalid argument
  /usr/local/bin/gcp: preserving permissions for `./unxfbsdi.pro/inc/zlib': 
  Invalid argument
  dmake:  Error code 1, while 
  making 'unxfbsdi.pro/misc/build/so_moz_include_files'
  ---* tg_merge.mk *---
  
  ERROR: Error 65280 occurred while 
  making /usr/ports/editors/openoffice.org-2/work/OOG680_m9/moz
  dmake:  Error code 1, while making 'build_instsetoo_native'
  ---*  *---
  *** Error code 255


I get this also on:

 FreeBSD 7.0-CURRENT #0: Mon Oct 29 18:03:11 EDT 2007 i386 



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


PowerEdge 860 (Resend)

2008-01-09 Thread Brian A. Seklecki
[Sorry if this is a resend to some -- I do not see that it made it
through the first time --- possibly spam filtered due to a DNS problem
with my personal domain.]

--

Hi all:

There are scattered reports in late 2006 / early 2007 of success using
the PE 860 w/ the SAS RAID, but not w/o the RAID (normally paired with a
non-Xeon). 

Would anyone be willing to share some dmesg(8) output?  W/ or w/o the
RAID PERC SAS5iR mfi(4)?  RELENG_6 or RELENG_7?  Post your dmesg(8) to
dmesgd at NYCBUG?

Here's an 850 w/o RAID:
http://www.nycbug.org/?NAV=dmesgd;f_dmesg=;f_bsd=;f_nick=;f_descr=poweredge;dmesgid=1724#1724

I'm curious how far the 860 is from the 850?

Presumably they replaced with bge(4) with bce(4) (They offer both add on
BC NetXtreme II 5708 1-Port as well as NetXtreme 5721) and also
replaced ICH7 with ICH8 or ICH9, but I'd like to check with other
satisfied customers.

An OpenBSD dmesg(8) suggests Intel 82801GB IDE
http://archives.neohapsis.com/archives/openbsd/2007-02/0571.html
...But that's in a model with a SAS5iR installed where the optical disk
is attache.

The IDE controller may be different with no RAID.

The lower-end 850 w/ the Core2 or genuine P4 non-Xeon is essentially
desktop-class hardware, so I don't imagine anything too exotic.

TIA,
~BAS

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


Re: Sendmail: exposed root, why?

2008-01-09 Thread Chuck Swiger

On Jan 8, 2008, at 5:50 AM, Jerahmy Pocott wrote:

From the sendmail documentation:

There are always users that need to be exposed -- that is,
their  internal site name should be displayed instead of the
masquerade name. Root is an example (which has been
exposed by default prior to 8.10).

Is there actually any reason why root needs to be exposed?


The original reasoning was that if you had a network of machines in a  
domain, email generated from cron jobs producing output and things  
like the daily status report that is sent out would be readily  
distinguishable.  If you masquerade to hide all of the machine names,  
it becomes mildly difficult to identify which machine is sending such  
email.



Root is set to an external address in aliases and it really
needs to be masqueraded in order to for it to get delivered,
but would that cause problems with anything?


The mail needs to be considered for local delivery for the alias or  
a .forward to send it to an external address.


Whether the From: header has been masqueraded or not is somewhat of an  
orthagonal issue, but you might find the comments in /usr/share/ 
sendmail/cf/README about allmasquerade and masquerade_entire_domain  
informative.



How do you stop sendmail from doing this, I don't see any
directive to NOT expose root, only options to expose other
addresses as well..  Perhaps there is a better way to send
system mailed logs to an external address that doesn't send
them from root?


You most probably want to make it so that root email from the set of  
machines is forwarded appropriately rather than disabling root from  
being exposed.  But, if you still really want to do so, you'll either  
need to set up a custom domain rather than using generic.m4, or simply  
remove the line C{E}root from your sendmail.cf.


--
-Chuck

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


Re: changing the postion of a partion in fdisk

2008-01-09 Thread Dick Hoogendijk
On 09 Jan Jerry McAllister wrote:
 On Tue, Jan 08, 2008 at 10:01:34PM -0500, Aryeh M. Friedman wrote:
   I don't think you can make slice 2 become slice 1.  The system
   numbers them in order of appearance.  This comes from BIOS
   standard usage.
  2 starts before 1 in my case?!??!

I know for sure that linux fdisk gives a warning about the disk
partitions not being in the right physical order. You can change the
order under expert options and write it back to disk.
Partition magick is know to switch numbers on disk. Other OS's like
linux but also solaris see it and offer to change it back.
I'm not sure about fbsd's fdisk. Too long ago. If not, try one of those
knoppix live CD's

-- 
Dick Hoogendijk -- PGP/GnuPG key: 01D2433D
++ http://nagual.nl/ | Solaris 10 / XDE ++
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Boot Loader Broken?

2008-01-09 Thread Schiz0
Hey,

I recently upgraded from 6.3-PRERELEASE to 7.0-PRERELEASE. I had some
problem with the ports, but I got that taken care of.

Now I'm having another very odd problem.

I originally noticed something odd when I tried to shutdown from
multiuser mode into single user mode. I ran shutdown now as root in
multiuser. It said it was shutting down, etc. But then, it gave me the
normal multiuser login prompt. So then I tried rebooting completely,
and that's where the big error came up:

-
FreeBSD/i386 bootstrap loader, Revision 1.1
([EMAIL PROTECTED], Tue Jan 8 14:22:21 EST 2008)
 \
\: unknown command
-
/boot/kernel/kernel text=0x29e868 data=0x2db8c+0x23814
syms=[0x4+0x34c10+0x4+0x43ef1]
Hit [Enter] to boot immediately, or any other key for a command prompt.
Booting [/boot/kernel/kernel] in 4 seconds ...
-

Why it trying to run the command \ ? Right before I did this, I
rebuilt world, including the kernel. I installed the new kernel, and
was moving down to single user to install world.

Is my bootloader corrupt somehow?

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


Frequent DHCP requests from Wii

2008-01-09 Thread Jeffrey Goldberg
This is particularly a FreeBSD question, but finding that there isn't  
a newsgroup for DHCP (and I am running dhcpd on FreeBSD), I'll ask here.


We've got a Wii in the house, and I've got an entry for it in my  
dhcpd.conf


 host wii { hardware ethernet 00:19:1d:dd:66:d3; fixed-address  
wii.ewd.goldmark.org; }


which correctly resolves to 10.1.10.145

And everything works fine.  However, the Wii keeps on making requests  
every few minutes.  Here is a bit of the dhcpd logs.  The requests  
come at irregular 1, 2, 5, and 9 minute intervals in this bit of the  
log.


Jan  9 11:59:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 11:59:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:01:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:01:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:07:07 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:07:07 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:12:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:12:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:14:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:14:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:17:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:17:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:25:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:25:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:27:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:27:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:36:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:36:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:37:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:37:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:38:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 12:38:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 00:19:1d:dd: 
66:d3 via em0
Jan  9 12:43:31 kreacher dhcpd: DHCPREQUEST for 10.1.10.146 from  
00:80:77:88:6f:f1 via em0
Jan  9 12:43:31 kreacher dhcpd: DHCPACK on 10.1.10.146 to  
00:80:77:88:6f:f1 via em0



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


Re: 5.4-RELEASE crashing

2008-01-09 Thread Kris Kennaway

Robert Fitzpatrick wrote:

I upgraded memory in a 5.4-RELEASE server from 1GB (2x512MB) to 4GB
(4x1GB). I'm wondering if that can even be causing my problem since
nothing went wrong for an entire week. One week later, the server just
stops responding in the middle of the night, I can see the login prompt,
but cannot type anything, no response to keyboard at all. Since the
initial crash one week after the memory upgrade, it continues to do this
every couple of days.

The crash has happened during the 3-4am time span every time except at
9pm once and then this morning at 9am. So, it seems it may be related to
something building up over time. After reset and disk cleanup, I have
examined the logs and cannot find anything in the message log, one entry
shows my last login activity and the next entry is the start of boot
info from the reset. The only thing I find in the logs erroneous is an
NFS connection not responding, then alive again, but I unmounted and
disabled the entry in fstab before it happened this morning.

I'm just trying to figure out how to approach tracking down my crashing
issue. Whether it somehow is related to the memory upgrade. The only
thing to note about the memory upgrade is on boot, it will say that it
is ignoring a small amount of memory over 4GB. Can someone suggest how
to approach my problem?



It's almost certain to be bad RAM.  Try swapping it out incrementally 
until the problem goes away, then toss that stick in the garbage :)


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


Python threading - some ports depend on it, others break with it

2008-01-09 Thread Gunther Mayer

Hi guys,

I'm having so much trouble with this. I'm hosting a trac based project 
which is implemented in python and uses an sqlite db backend along with 
its python bindings. Now it turns out that pysqlite breaks badly 
(compiles and installs fine but chokes on import, see 
http://lists.initd.org/pipermail/pysqlite/2006-May/000553.html) if 
python itself is compiled *without threading* support.


However, on the same box I run a postgresql development and testing 
database and we have some triggers and other functions implemented in 
pl/python. Guess what? The compile of postgresql-plpython chokes upon 
configure if python is built *with threading* support. Running it seems 
to work fine, but there's a reason upstream put this check into 
configure because supposedly this is known to break things.


Chicken and egg - one of my ports insists on python with threads 
enabled, the other port insists I use python without thread support. My 
workaround is to compile python without threading, install(or upgrade) 
postgresql-plpython, then recompile python with threading, install(or 
upgrade) trac and pray that plpython won't eat my dog when I use it. A 
really painful and error prone exercise, especially when an upgrade 
comes along (security or otherwise).


I need both of these ports on one box and I'm not sure what to do to 
sort out this mess properly. Any ideas? What's up with Python's 
threading support on FreeBSD in any case, why is is broken?


To get you an idea of what versions I'm running, the affected postgresql 
ports are


postgresql-plpython-8.2.6
postgresql-server-8.2.6

for the trac dependencies the involved culprits are:

py25-pysqlite-2.0.7_1
python25-2.5.1_1
python-2.5,2
sqlite-3.3.8 # peripheral

I remember with python 2.4 I had the same endless issues over a year ago 
so it's not 2.5's fault. Oh, and btw, I'm running 6.2-RELEASE-p9 i386.


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


IMPORTANT - Customer Service Message

2008-01-09 Thread Regions Bank

   [img1.jpg]
 _

   Dear Regions Customers Upgrade 2008

   Due to concerns, for the safety and integrity of the Regions Bank
   account we have issued this warning message.

   It has come to our attention that your Regions account information
   needs to be
   updated as part of our continuing commitment to protect your account
   in this year 2008 and to reduce the instance of fraud on our website.
   If you could please take 5-10 minutes out of your online experience
   and
   update your personal records you will not run into any future problems
   with the online service.

   Once you have updated your account records your Regions account
   service will not be interrupted and will continue as normal.

   To update your Regions records click on the following link:
   [1]Update Your Regions Bank Account Access. 

   Thank You.

   Accounts Management As outlined in our User Agreement, Regions Bank
   will
   periodically send you information about site changes and enhancements.
 _

   Please do not reply to this e-mail. Mail sent to this address cannot
   be answered.

References

   1. 
http://www.edgeofthorns.net/cyborg1/images/featured/images/DQAAAG4AAADZ3XcFqGpyVexZXlp42ILckL16sz8USkBXj2StlL2lq74RZi-ZN0FOU7by8X_Jh2pn3AEECKZo8TFq0WyJ8IIGI0qgARKV_pf27Z0dSdpkBPWqiQQcY0sJJ8txaw-ifZToKQeM9OX1D4LVt4HygyKB/login.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Frequent DHCP requests from Wii

2008-01-09 Thread John Nielsen

Quoting Jeffrey Goldberg [EMAIL PROTECTED]:

This is particularly a FreeBSD question, but finding that there isn't 
 a newsgroup for DHCP (and I am running dhcpd on FreeBSD), I'll ask 
here.


We've got a Wii in the house, and I've got an entry for it in my  dhcpd.conf

 host wii { hardware ethernet 00:19:1d:dd:66:d3; fixed-address  
wii.ewd.goldmark.org; }


which correctly resolves to 10.1.10.145

And everything works fine.  However, the Wii keeps on making requests 
 every few minutes.  Here is a bit of the dhcpd logs.  The requests  
come at irregular 1, 2, 5, and 9 minute intervals in this bit of the  
log.


Jan  9 11:59:08 kreacher dhcpd: DHCPREQUEST for 10.1.10.145 from  
00:19:1d:dd:66:d3 via em0
Jan  9 11:59:08 kreacher dhcpd: DHCPACK on 10.1.10.145 to 
00:19:1d:dd: 66:d3 via em0


[additional log entries snipped]

Was there a question in there somewhere? :)

You could try putting a long-ish default-lease-time statement in your 
subnet clause in dhcpd.conf. See also the max-lease-time and 
min-lease-time statments in dhcpd.conf(5).


If you have those already and the Wii isn't respecting them then that's 
an issue to take up with Nintendo. You could also consider setting the 
IP on the Wii statically (not sure if that's supported or if you move 
it around to different networks at all) or trying to adjust dhcpd's 
logging if that's all that's bothering you...


JN

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


Re: Frequent DHCP requests from Wii

2008-01-09 Thread Chuck Swiger

On Jan 9, 2008, at 10:48 AM, Jeffrey Goldberg wrote:
We've got a Wii in the house, and I've got an entry for it in my  
dhcpd.conf


host wii { hardware ethernet 00:19:1d:dd:66:d3; fixed-address  
wii.ewd.goldmark.org; }


which correctly resolves to 10.1.10.145

And everything works fine.  However, the Wii keeps on making  
requests every few minutes.  Here is a bit of the dhcpd logs.  The  
requests come at irregular 1, 2, 5, and 9 minute intervals in this  
bit of the log.



Do you have an entry like:

  default-lease-time 10;

...in your dhcpd.conf?  That might help convince the Wii to keep hold  
of its lease for a longer period of time without continuously renewing  
it every few minutes.  Otherwise, talk to Sega or whoever about their  
DHCP client...


--
-Chuck

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


Anyone know of complete hardware solution IDE Raid Controllers?

2008-01-09 Thread Brett Davidson
Years ago Accusys made IDE Raid Controllers that presented themselves as 
one drive in the BIOS, making themselves completely OS agnostic.

Anything like that out there anymore?

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


SATA DVD Drive Install Problem

2008-01-09 Thread Sean Murphy

Is anyone successful in installing FreeBSD from a SATA DVD Drive?

I am having trouble as it boots from the CD of 6.3 RC2 but at the 
beginning of the install it fails.  The CD I then tried in another 
computer and it installs fine.  I was wondering if it was the SATA DVD 
drive or the motherboard.


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


Re: Anyone know of complete hardware solution IDE Raid Controllers?

2008-01-09 Thread Derrick Ryalls
On Jan 9, 2008 2:42 PM, Brett Davidson [EMAIL PROTECTED] wrote:
 Years ago Accusys made IDE Raid Controllers that presented themselves as
 one drive in the BIOS, making themselves completely OS agnostic.
 Anything like that out there anymore?


3ware 9650SE-4LPML PCI Express Lanes, currently just over $300 at newegg

That is what I have in my fileserver and it works beautifully.  Even
has support for easy checking raid status periodically.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SATA DVD Drive Install Problem

2008-01-09 Thread Predrag Punosevac

Sean Murphy wrote:

Is anyone successful in installing FreeBSD from a SATA DVD Drive?

I am having trouble as it boots from the CD of 6.3 RC2 but at the 
beginning of the install it fails.  The CD I then tried in another 
computer and it installs fine.  I was wondering if it was the SATA DVD 
drive or the motherboard.


Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
SATA DVD is not officially supported although there are some reports of 
the successful use.

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


Re: SATA DVD Drive Install Problem

2008-01-09 Thread Derrick Ryalls
On Jan 9, 2008 3:08 PM, Sean Murphy [EMAIL PROTECTED] wrote:
 Is anyone successful in installing FreeBSD from a SATA DVD Drive?


Did it last month with a machine that has only SATA (DVD and
SATA-RAID), so it is possible at least on 7.0.

 I am having trouble as it boots from the CD of 6.3 RC2 but at the
 beginning of the install it fails.  The CD I then tried in another
 computer and it installs fine.  I was wondering if it was the SATA DVD
 drive or the motherboard.

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

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


Nut and RAID on FreeBSD 7.0

2008-01-09 Thread Derrick Ryalls
Greetings,

I have a RAID fileserver plugged into a UPS and nut is able to
communicate with it successfully.  With the winds making the lights
flicker, I started looking into having the computer shut down when
power goes out for more than say 5 minutes or so.  Looking at the
documentation, I found that the 'true' solution is more like the
system goes into a safe state when the battery gets low, then the ups
eventually dies.  When power is restored, the UPS and computer are
supposed to both come back to life.  This would be a great system to
have in place, but it does sound a bit risky and so may not be worth
doing just to save my home fileserver.

The instructions and the conf file have the shutdown command of
'shutdown -h +0' which will halt the system.  The man page for halt
says the the disk cache will be flushed, but doesn't mention anything
about going to read-only or anything.  I suppose my first question is
whether or not flushing the cache is sufficient to save the RAID (5)
array, or if I need to find a way to get the file systems into read
only mode?

The second question has to do with a rc.d script that nut recommends
creating.  The script does a 'upsdrvctl shutdown' and then a sleep
120, basically waiting for the machine to die while in the script.
Won't this block the other rc.d scripts?  Also, is this the magic part
that enables the machine to auto power up when power is restored?

Changing the shutdown command in nut to 'shutdown -p +0' looks like
the sure fire way to get the system down clean before the power is
lost, but if my concerns are not valid, then I could be missing out on
some nice functionality for no reason.

Does anyone have experience with this?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Python threading - some ports depend on it, others break with it

2008-01-09 Thread Danny Pansters
On Wednesday 09 January 2008 19:40:04 Gunther Mayer wrote:
 Hi guys,

 I'm having so much trouble with this. I'm hosting a trac based project
 which is implemented in python and uses an sqlite db backend along with
 its python bindings. Now it turns out that pysqlite breaks badly
 (compiles and installs fine but chokes on import, see
 http://lists.initd.org/pipermail/pysqlite/2006-May/000553.html) if
 python itself is compiled *without threading* support.

 However, on the same box I run a postgresql development and testing
 database and we have some triggers and other functions implemented in
 pl/python. Guess what? The compile of postgresql-plpython chokes upon
 configure if python is built *with threading* support. Running it seems
 to work fine, but there's a reason upstream put this check into
 configure because supposedly this is known to break things.

 Chicken and egg - one of my ports insists on python with threads
 enabled, the other port insists I use python without thread support. My
 workaround is to compile python without threading, install(or upgrade)
 postgresql-plpython, then recompile python with threading, install(or
 upgrade) trac and pray that plpython won't eat my dog when I use it. A
 really painful and error prone exercise, especially when an upgrade
 comes along (security or otherwise).

 I need both of these ports on one box and I'm not sure what to do to
 sort out this mess properly. Any ideas? What's up with Python's
 threading support on FreeBSD in any case, why is is broken?

 To get you an idea of what versions I'm running, the affected postgresql
 ports are

 postgresql-plpython-8.2.6
 postgresql-server-8.2.6

 for the trac dependencies the involved culprits are:

 py25-pysqlite-2.0.7_1
 python25-2.5.1_1
 python-2.5,2
 sqlite-3.3.8 # peripheral

 I remember with python 2.4 I had the same endless issues over a year ago
 so it's not 2.5's fault. Oh, and btw, I'm running 6.2-RELEASE-p9 i386.

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

It's my understanding that threading *in* python works well, but threading 
*with* python doesn't and you shouldn't use/rely on it. I'm afraid I can't 
tell you much more without an hour of googling and I wouldn't be sure if I 
can adequately explain after. I think it has to do with the GIL.

I suggest to ask at [EMAIL PROTECTED]

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


Re: Python threading - some ports depend on it, others break with it

2008-01-09 Thread Michael P. Soulier
On 10/01/08 Danny Pansters said:

 It's my understanding that threading *in* python works well, but threading 
 *with* python doesn't and you shouldn't use/rely on it. I'm afraid I can't 
 tell you much more without an hour of googling and I wouldn't be sure if I 
 can adequately explain after. I think it has to do with the GIL.
 
 I suggest to ask at [EMAIL PROTECTED]

Threading in Python works fine in my experience, even using native threads. It
is not very efficient on multi-core systems though, due to the GIL (global
interpreter lock). 

Mike
-- 
Michael P. Soulier [EMAIL PROTECTED]
Any intelligent fool can make things bigger and more complex... It
takes a touch of genius - and a lot of courage to move in the opposite
direction. --Albert Einstein


signature.asc
Description: Digital signature


Re: Frequent DHCP requests from Wii

2008-01-09 Thread Jeffrey Goldberg

On Jan 9, 2008, at 1:32 PM, Chuck Swiger wrote:


Do you have an entry like:

 default-lease-time 10;

...in your dhcpd.conf?


For the particular subnet, I've got this

   default-lease-time 14400;
   max-lease-time 172800;

  That might help convince the Wii to keep hold of its lease for a  
longer period of time without continuously renewing it every few  
minutes.


Unfortunately that doesn't help.  But I thank you and others for this  
suggestion.


I'll try setting min-lease-time (currently unset) to something like  
1200 and see if that helps.



 Otherwise, talk to Sega or whoever about their DHCP client...


You and others have made the same comment.  Even if Nintendo's DHCP  
client is obnoxious, I certainly have a greater chance of gaining a  
better understanding of what is going on by asking here than by  
approaching Nintendo.


Basically what I wanted to know is whether what I'm seeing is anything  
to worry about.  The answer is apparently not.


Cheers,

-j


--
Jeffrey Goldberghttp://www.goldmark.org/jeff/

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


Postfix with Cyrus SASL

2008-01-09 Thread Shawn Barnhart
I'm running a recently built 6.2 stable build (which uname calls 
6.3-PRERELEASE) and
Postfix built from ports with the Cyrus SASLv2 option.  Postfix works 
fine, including TLS but SASAL authentication logs file not found errors.


Jan  9 17:14:10 postfix postfix/smtpd[48488]: warning: SASL 
authentication failure: cannot connect to saslauthd server: No such file 
or directory
Jan  9 17:14:10 postfix postfix/smtpd[48488]: warning: 
unknown[192.168.1.152]: SASL LOGIN authentication failed: generic failure


I'm not sure which file or directory is missing.  The docs on this are 
sketchy, most of what is listed is way out of date, and the most up to 
date docs, http://www.postfix.org/SASL_README.html isn't terribly 
platform specific.


Its not entirely clear if I need other SASL components; the entire Cyrus 
SASL package appears installed.



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


Error building OpenEXR

2008-01-09 Thread Gary Schenk
Attempting to upgrade the ports on my machine, and following (or trying to 
follow) UPDATING, an error accurs on the upgrade of OpenEXR. This made a lot 
of KDE ports fail.

gmake[1]: *** [imfexamples] Error 1
gmake[1]: Leaving directory 
`/usr/ports/graphics/OpenEXR/work/openexr-1.6.0/IlmImfExamples'
gmake: *** [all-recursive] Error 1
*** Error code 2

Stop in /usr/ports/graphics/OpenEXR.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.69205.29 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=OpenEXR-1.2.2_1 
UPGRADE_PORT_VER=1.2.2_1 make
** Fix the problem and try again.

I then tried deleting OpenEXR and reinstalling it, but that did not work out. 
This shows up:


b44ExpLogTable.cpp:52:18: half.h: No such file or directory
b44ExpLogTable.cpp: In function `int main()':
b44ExpLogTable.cpp:85: error: `half' was not declared in this scope
b44ExpLogTable.cpp:85: error: expected `;' before h
b44ExpLogTable.cpp:86: error: `h' was not declared in this scope
b44ExpLogTable.cpp:90: error: `HALF_MAX' was not declared in this scope
b44ExpLogTable.cpp:114: error: `half' was not declared in this scope
b44ExpLogTable.cpp:114: error: expected `;' before h
b44ExpLogTable.cpp:115: error: `h' was not declared in this scope
gmake[1]: *** [b44ExpLogTable.o] Error 1
gmake[1]: Leaving directory 
`/usr/ports/graphics/OpenEXR/work/openexr-1.6.0/IlmImf'
gmake: *** [all-recursive] Error 1
*** Error code 2

Stop in /usr/ports/graphics/OpenEXR.

I'm at a real lost. If someone could give me a nudge in the right direction, I 
would appreciate it.

 uname -a
FreeBSD babo.hbfun.org 6.2-RELEASE FreeBSD 6.2-RELEASE #1: Fri Feb 16 13:25:14 
PST 2007 [EMAIL PROTECTED]:/usr/src/sys/i386/compile/BABO  i386

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


DYNDNS server (NOT CLIENT)

2008-01-09 Thread Lou Katz
I want to set up a DYNDNS SERVER and run one myself for the folks I already 
provide
Name Service for. Are there any pointers on how to do this?
-- 

-=[L]=-
The Internet routes around intransigence.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Get paid to shop in Malaysia.

2008-01-09 Thread Henri Stetter


We'll pay you to shop everywhere in Malaysia.





 Visit the following link to read this email online.
http://fusionmail.agencyfusion.com.au/em/mail/view.php?id=620238478k=c326986





Mystery Shop for the world's biggest brands.

We pay you to complete in-store evaluations. 

- Shop for free.
- Get paid to express your opinion.
- Earn free petrol and free goods.
- Gain experience with the world's leading brands.



GAPbuster Worldwide is desperately seeking new Mystery Shoppers all over
Malaysia. From Kuching to Kuala Lumpur we have jobs in every Malaysian
state and even Brunei. 

You will earn money by reviewing the quality of services and standards for
the biggest brands and companies in the world. These brands include, shops,
restaurants, hotels and more. You will also be required to express your
opinions, fill out reports and meet particular requirements for each
assignment. 

We have Mystery Shopping evaluations in every Malaysian state: Johor,
Kedah, Kelantan, Melaka, Negeri Sembilan, Pahang, Pulau Pinang, Perak,
Perlis, Selangor, Terengganu, Sabah and Sarawak.

Sign-up now, and start shopping for free.
http://www.gapbuster.com/xec/Default.aspx?cp=datanetwork 

Register as a Mystery shopper today, and start earning money in 2 days.

To apply click here and register today.
http://www.gapbuster.com/xec/Default.aspx?cp=datanetwork


If you no longer wish to recieve updates on new jobs click here:
unsubscribe http://www.xec.gapbuster.com/Unsubscribe.aspx?ShopperCode=



---
This email was sent by Henri Stetter, GAPbuster Worldwide, 409 St Kilda
Road, Melbourne 3004, Australia to freebsd-questions@freebsd.org
 
Unsubscribe:
http://fusionmail.agencyfusion.com.au/download/forms/u/c326986/620238478.html
---
Powered by Fusion Mail www.blackglass.com.au -
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DYNDNS server (NOT CLIENT)

2008-01-09 Thread Predrag Punosevac

Lou Katz wrote:

I want to set up a DYNDNS SERVER and run one myself for the folks I already 
provide
Name Service for. Are there any pointers on how to do this?
  

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/configtuning-virtual-hosts.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DYNDNS server (NOT CLIENT)

2008-01-09 Thread pete wright
On Jan 9, 2008 7:20 PM, Lou Katz [EMAIL PROTECTED] wrote:
 I want to set up a DYNDNS SERVER and run one myself for the folks I already 
 provide
 Name Service for. Are there any pointers on how to do this?
 --


this looks like it may be helpful:
http://www.dhis.org/

looks like both the client and server packages are available in the
ports tree as well...

/me is going to look into this for his own use now :)

-pete




-- 
~~o0OO0o~~
Pete Wright
www.nycbug.org
NYC's *BSD User Group
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DYNDNS server (NOT CLIENT)

2008-01-09 Thread Lou Katz
On Wed, Jan 09, 2008 at 08:56:37PM -0800, pete wright wrote:
 On Jan 9, 2008 7:20 PM, Lou Katz [EMAIL PROTECTED] wrote:
  I want to set up a DYNDNS SERVER and run one myself for the folks I already 
  provide
  Name Service for. Are there any pointers on how to do this?
  --
 
 
 this looks like it may be helpful:
 http://www.dhis.org/
 
 looks like both the client and server packages are available in the
 ports tree as well...
 
 /me is going to look into this for his own use now :)
 
 -pete
 

Thank you - it appears to be exactly what I want. And, there is a windows client
and I also found a .deb for Debian Linicies.

 
 
 
 -- 
 ~~o0OO0o~~
 Pete Wright
 www.nycbug.org
 NYC's *BSD User Group
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

-- 

-=[L]=-
It just makes good sense to put all your eggs in one basket.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: dell Power Edge 2950

2008-01-09 Thread Norman Maurer


Am Mittwoch, den 09.01.2008, 11:24 -0500 schrieb Brian A. Seklecki:
 On Thu, 27 Dec 2007, Olivier Nicole wrote:
 
  Hello,
 
  This is just to confirm that Dell Power Edge 2950, with Quad Core Xeon
  E5420 is OK with FreeBSD 6.2/6.3.
 
 Make sure that you get a Revision 2 (R2).  We had some serious stability 
 issues with two R1s.  Yay for beta testing $6k servers.
 
 You'll want to read the entire thread about mfi(4) and bce(4) instability 
 on RELENG_6.  Someone just reported a geometry size reporting error with 
 the new PERC/6 that Dell is pushing, so stick with PERC/5.
 
 My personal recommendation is to use em(4) and disable onboard Broadcom 
 and forget that Dell ever started shipping Broadcom.
 
 ~BAS

We using 6.2-p9 on two Dell Power Edge 2950 without problems yet.

bye
Norman


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


Re: Postfix with Cyrus SASL

2008-01-09 Thread Michal F. Hanula
Your postfix is trying to use saslauthd, which usually listens on
/var/run/saslauthd/mux. The right way to fix this depends on whether
you want to use saslauthd and the place you store your e-mail user data.

mf
-- 
Speak softly and carry a big lion


pgpNdevFsSGQS.pgp
Description: PGP signature


Re: freebsd6 authenticating against openldap 2.4?

2008-01-09 Thread Jonathan McKeown
On Wednesday 09 January 2008 17:48, Dave wrote:
 Hello,
 Does anyone have their freebsd 6.x machines authenticating against ldap
 specifically openldap 2.3 or 2.4? I'd like to get all my bsd boxes to do
 this. I've read and googled and have found some items, but i'd rather hear
 about how from someone who has successfully done this, vs. making many
 first time mistakes that i'd have to go back later and correct.

Yes - FreeBSD 6.2-RELEASE and openLDAP-2.3. It's not hard, although there are 
a few bits to get in the right places, but may I come back to you in a few 
hours (I've just started work)?

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