Re: What is sppp and how can I use it to set up PPP over Ethernet?

2006-04-18 Thread Nikos Vassiliadis
On Wednesday 19 April 2006 09:06, User Elisej wrote:
> What is sppp and how can I use it to set up PPP over Ethernet? 

That's not what you want for PPPoE. For PPPoE you can use ppp(8) or
net/mpd, which is the ppp daemon I choose(and i believe many others).
ppp(8) is very simple to setup, mpd is quite simple and quite lighter(mpd 
handles only the connnection's initiliazation, the rest(more or less) is 
kernel-based. That's not the case with ppp(8))

Nikos

>
> I have read sppp(4) and spppcontrol(8) but these two is too superficial.
>
> Elisej Babenko
> [EMAIL PROTECTED]
> ___
> 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]"


pf problem with table

2006-04-18 Thread Reinhold Platzoeder
Hi

I have a problem with FreeBSD 6 and pf
I am trying to load a 1.7M file in to pf using a tables
but I get this error

/etc/pf.conf:22: cannot define table p2pblock: Cannot allocate memory
pfctl: Syntax error in config file: pf rules not loaded

the table config in pf.conf is
table  persist file "/etc/pfdata/blocklist-p2p"
block in log quick on $ext_if from  to any

I have tried it on two different machines and both gives me the same
error 

everything works when I comment these two lines out

Any ideas as to what i'm doing wrong?

Thanks

-- 
Reinhold Platzoeder

[EMAIL PROTECTED]
[EMAIL PROTECTED]

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


Re: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Igor Robul
On Wed, Apr 19, 2006 at 10:06:52AM +0400, Igor Robul wrote:
> I have used squirrelmail too, but now I use hastymail:
>  http://hastymail.sourceforge.net/
> 
> It has cleaner interface (from my point of view of course :-) ), and all
> features I need.
Also it is our corporate webmail system for same reason :-)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How do uninstall a package and all it's dependencies ?

2006-04-18 Thread Christer Solskogen

Low Kian Seong wrote:

Dear all,

Been digging around but never really found the answer to this one, say if i
install xfce4 package and then later I want to uninstall xfce4 and *all*
it's dependencies, how do i do it ?

Thank you all in advance.
___


You may want to check out sysutils/pkg_rmleaves.

--
cso

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


Re: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Igor Robul
On Tue, Apr 18, 2006 at 08:42:20AM -0500, Jonathan Horne wrote:
> ive used squirrelmail for quite a while, and i just want to make sure i
> have my mind as open as possible here.  are there any other choices for
> webmail that are about as easy as SM to configure, but offer a better user
> interface or experience?
Hello!
I have used squirrelmail too, but now I use hastymail:
 http://hastymail.sourceforge.net/

It has cleaner interface (from my point of view of course :-) ), and all
features I need.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


What is sppp and how can I use it to set up PPP over Ethernet?

2006-04-18 Thread User Elisej
What is sppp and how can I use it to set up PPP over Ethernet?

I have read sppp(4) and spppcontrol(8) but these two is too superficial.

Elisej Babenko
[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: How do you tell pkg_add to just download the packages ?

2006-04-18 Thread Duane Whitty

Low Kian Seong wrote:

Dear all,

I come from a debian background, and in debian you can pass an argument to
apt-get to tell it to download all the packages first without installing
them first, is there a similar argument that I can pass to pkg_add ( I want
to use binaries ) or are there other tools I can use ?

Thanks.
___
  

Hi,

Try portupgrade(1)  (man 1 portupgrade)

# cd /usr/ports
# portupgrade -NFPPv  name-of-package

This says this may be a new installation "N"
Go get the files (packages), do not install anything "F"
Use packages only, fail if packages not available "PP" (important to use 
two upper-case Ps here)

Be verbose "v"

If you also want to fetch dependencies you can add -R.  This will 
recurse through all

the dependencies the new package needs

# cd /usr/ports
# portupgrade -NFPPRv  name-of-package

Best Regards,

Duane Whitty
--
[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: How do you tell pkg_add to just download the packages ?

2006-04-18 Thread Kris Anderson


--- Low Kian Seong <[EMAIL PROTECTED]> wrote:

> Dear all,
> 
> I come from a debian background, and in debian you
> can pass an argument to
> apt-get to tell it to download all the packages
> first without installing
> them first, is there a similar argument that I can
> pass to pkg_add ( I want
> to use binaries ) or are there other tools I can use
> ?
> 
> Thanks.
> ___
> freebsd-questions@freebsd.org mailing list
>
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 
pkg_add -n says Do not actually install a package,
just report the steps that would be taken if it was.
But it doesn't say what it will do, so you can give
that a try.

Another thing to try is make fetch-recursive in one of
the items listed in the ports tree you would like to
fetch. Find a small package with only a couple of
dependencies and see if make fetch-recursive indeed
just fetches items and not install (I stried it with
Zope3). It downloaded the two packages but didn't
install them.

Hope that helps.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


How do you tell pkg_add to just download the packages ?

2006-04-18 Thread Low Kian Seong
Dear all,

I come from a debian background, and in debian you can pass an argument to
apt-get to tell it to download all the packages first without installing
them first, is there a similar argument that I can pass to pkg_add ( I want
to use binaries ) or are there other tools I can use ?

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


Re: How do uninstall a package and all it's dependencies ?

2006-04-18 Thread Kris Anderson


--- Low Kian Seong <[EMAIL PROTECTED]> wrote:

> Dear all,
> 
> Been digging around but never really found the
> answer to this one, say if i
> install xfce4 package and then later I want to
> uninstall xfce4 and *all*
> it's dependencies, how do i do it ?
> 
> Thank you all in advance.
Try man pkg_delete. Last option is -r. 

Give pkg_delete -r and the name of the pkg to delete.

Hope that helps.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


How do uninstall a package and all it's dependencies ?

2006-04-18 Thread Low Kian Seong
Dear all,

Been digging around but never really found the answer to this one, say if i
install xfce4 package and then later I want to uninstall xfce4 and *all*
it's dependencies, how do i do it ?

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


Installing Free over linux installation

2006-04-18 Thread Aguiar Magalhaes
Hi list,

Using standard installation (sysinstall), I'm trying
to install the FreeBSD 6.0 in the machine where exist
a old linux installation (The linux will be full
replaced)

In the fdisk stage, I've created /, swap, /var, /usr
and /home slices, but when I confirm, I've received a
error message about the swap slice:

"Unable to find device node for /dev/ad0s1b in /dev!
The creation of filesystem will be aborted"

What is it ? How can I fix it ?

Thanks,

Aguiar 



___ 
Abra sua conta no Yahoo! Mail: 1GB de espaço, alertas de e-mail no celular e 
anti-spam realmente eficaz. 
http://br.info.mail.yahoo.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Installing Free over linux

2006-04-18 Thread Parv
I lost the OP, so replying to this ...

in message <[EMAIL PROTECTED]>,
wrote Gayn Winters thusly...
>
> > [mailto:[EMAIL PROTECTED] On Behalf Of Aguiar
> > Magalhaes
> > Sent: Tuesday, April 18, 2006 1:00 PM
> > To: freebsd-questions@freebsd.org
> > Subject: Installing Free over linux
...
> > I'm trying to install the FreeBSD 6.0 where exist a
> > old linux (It will be full replaced)
> > 
> > I'm receiving a error message about de swap slice:
> > 
> > Unable to find device node for /dev/ad0s1b in /dev!
> > The creation of filesystem will be aborted
...
> It sounds like you didn't allocate a swap partition during the
> installation when you were asked to allocate partitions on ad0s1.
> If you don't take the defaults, then you must allocate swap space
> explicitly.  This should be done on partition b, i.e. on ad0s1b.

Hi Aguiar,

I was installing FreeBSD 6.0-BETA4 a few moments ago, and saw the
same problem.  I was adjusting the partitions (not slices), somehow
it seems the sysinstall (or the underlying subsystem) seemed to have
forgotten about the swap partition.

Anyway, i re-sliced the disk and repartitioned the subsequent slice
w/ partitions sizes already calculated.  This time i had no problem.

Mind you that i installed from the same disc previously on a
different computer, and missing swap node message did not come up
while adjusting the partition size multiple times.  Whatever ...


  - Parv

-- 

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


Booting into an installed software raid system

2006-04-18 Thread valentin_nils
Hello FreeBSD users,

I am happilly installing FreeBSD systems (remotely), however there is one thing
which I would like to get solved, hopefully the one or the other can help me
out.

Anyway here the story goes:

I have setup a sample FreeBSD system (Software Raid 1) on the devices /dev/ad2
and /dev/ad4.

I reboot the system and want to leave the FreeBSD system in the CDrom drive for
later use, but boot from the software mirrored FreeBSD installation (on the
HDD).

How do I do this ?

0) I could use the KVM and set the motherboards bios'es boot option, but lets
ignore that for a moment ;-)

1) In the Bootloader menu I am choosing Option "6 - Loading a command prompt"

2) I could probably use the Fixit option in the install CD


So for now, lets explore 1) a bit more

I load the necessary kernel and the modules.

f.e. load geom_mirror

lsdev will show me as devices "cd0", "disk1s1xxx", "disk2s1xxx"

Note that the "real" device name used should be actually f.e. "/dev/ad2s1xxx"
and "/dev/ad4s1xxx"

How can I boot from here into f.e. /dev/gm0s1xxx ?

(ad2 and ad4 are defined as gm0 in the original setup)

Any suggestion welcome.

Best regards

Nils Valentin


- 転送メールは以上です -

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


Re: USB MODEM

2006-04-18 Thread FreeBSD MailingLists
Yes, I checked for tty, cua and ucom devices.  none of which are present.
I rechecked the dmesg and here is the full kernel message when i attache the
modem

ucom0: OMRON OMRON ME5614U2 DATA FAX MODEM, rev 1.10/1.00, addr 2, iclass
2/2
ucom0: data interface 1, has CM over data, has break
ucom0: Could not find data bulk in
device_attach: ucom0 attach returned 6

Here is what shows up when I do a usbdevs -v

addr 1: full speed, self powered, config 1, UHCI root hub(0x),
Intel(0x), rev 1.00
 port 1 powered
 port 2 powered
Controller /dev/usb1:
addr 1: full speed, self powered, config 1, UHCI root hub(0x),
Intel(0x), rev 1.00
 port 1 addr 2: full speed, power 260 mA, config 1, OMRON ME5614U2 DATA FAX
MODEM(0x0049), OMRON(0x0590), rev 1.00
 port 2 powered
Controller /dev/usb2:
addr 1: high speed, self powered, config 1, EHCI root hub(0x),
Intel(0x), rev 1.00
 port 1 powered
 port 2 powered
 port 3 powered
 port 4 powered


Any suggestions would be appreciated.

TIA,
Tomoki


On 18 Apr 2006 10:20:21 -0400, Lowell Gilbert <
[EMAIL PROTECTED]> wrote:
>
> "FreeBSD MailingLists" <[EMAIL PROTECTED]> writes:
>
> > I purchased a usb modem recently and connected it to my FreeBSD box to
> see
> > if it is compatible.
> > I have recompiled my kernel with
> > device ucom
> > device umodem
> >
> > When I connect the modem I get the following kernel message.
> >
> > ucom0: OMRON OMRON ME5614U2 DATA FAX MODEM, rev 1.10/1.00, addr 2,
> iclass
> > 2/2
> > ucom0: data interface 1, has CM over data, has break
> > ucom0: Could not find data bulk in
> >
> > Is there anyway to get this modem working with FreeBSD?
>
> Do you know it isn't?
> Have you checked whether it created any terminal devices?
> [I've forgotten exactly what the tty-like device name is.]
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to do this?

2006-04-18 Thread Noah Silverman

Look at the apache server.
There is .htaccess and other methods of limiting who can see the page.

-N


On Apr 18, 2006, at 5:39 PM, Gary Kline wrote:



Is it  possible to set up a GUI app on my web site where
only a few people could http to and irc chat with me?  This
page would not be published.  Something like ymessenger,
only private.  If this seems like a dumb question, it'd
because I know virtually zip about things-irc.

thanks in advance!

gary




--  
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public  
service Unix


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




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


Please confirm your request to join MewBkd

2006-04-18 Thread Yahoo! Groups

Hello [EMAIL PROTECTED],

We have received your request to join the MewBkd 
group hosted by Yahoo! Groups, a free, easy-to-use community service.

This request will expire in 7 days.

TO BECOME A MEMBER OF THE GROUP: 

1) Go to the Yahoo! Groups site by clicking on this link:
   
http://groups.yahoo.com/i?i=A7Evtr8bljqqi_tRk-65aoMTEbA&e=questions%40freebsd%2Eorg
 

  (If clicking doesn't work, "Cut" and "Paste" the line above into your 
   Web browser's address bar.)

-OR-

2) REPLY to this email by clicking "Reply" and then "Send"
   in your email program

If you did not request, or do not want, a membership in the
MewBkd group, please accept our apologies
and ignore this message.

Regards,

Yahoo! Groups Customer Care

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 

 






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


How to do this?

2006-04-18 Thread Gary Kline

Is it  possible to set up a GUI app on my web site where 
only a few people could http to and irc chat with me?  This 
page would not be published.  Something like ymessenger,
only private.  If this seems like a dumb question, it'd 
because I know virtually zip about things-irc.

thanks in advance!

gary




-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

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


Re: mouse scroll up problem

2006-04-18 Thread Reinhold Platzoeder
On Wed, 19 Apr 2006 05:23:23 +0600
[EMAIL PROTECTED] wrote:

> > I have FreeBSD 6.0-RELEASE and optical Microsoft IntelliMouse 
> > Explorer, USB native, plugged to PS/2 port via it's own
> > USB->PS/2 adaptor.
> > When I scroll my mouse wheel up in X11 it acts like "scroll up
> > + left button one/double-click". For example, in Opera,
> > Firefox. In MS Windows mouse works correctly.
> 
>  I am running the same mouse in the same way on the same release. 
> >>>
> >>> I have changed settings as Pete advised. Both variants (old and
> >>> new) are working (scrolling) but described effect remains.
> >>> Why I think that scrolling up works as "scroll + left click": for 
> >>> example, in Opera scrolling up at the top of document (when real 
> >>> scroll is impossible) result in marking the word under cursor and 
> >>> appearing context menu for very short time.
> >>
> >> I've been having the same problem since updating to Xorg 6.9.0 two 
> >> months ago. Before that, this problem did not exist for me. Here
> >> are a couple examples of what I see with use:
> >>
> > I know it's only a workaround and not a solution, but at least
> > until you're able to get the rodent behaving the way you like, you
> > can change the setting in Thunderbird preferences.
> > 
> > In v1.5:
> > Edit --> Preferences --> Advanced
> > [Check box]  Wait XX seconds before marking a message as read
> > (2nd item down)
> 
> Effect disappears when mouse is plugged to USB port directly, without 
> adapter. Besides that with ums(4) buttons 6 and 7 works although it
> has the same affect as button 1.
> But there is no ability to power off USB port at the moment it seems
> (http://lists.freebsd.org/pipermail/freebsd-usb/2005-December/001756.html). 
> PS/2 advantage: 'killall moused' results in turning mouse off, for
> USB it doesn't.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Maybe this might help you 
These are my usb mouse settings 

/etc/rc.conf
moused_enable="NO"

/etc/X11/xorg.conf
Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "Auto"
Option  "Device" "/dev/sysmouse"
EndSection

~/.xinitrc
xmodmap -e "pointer = 1 2 3 4 5 8 9 6 7 10 11"

With this config I have no problems
except that when I spin my mouse wheel really fast in firefox or opera
it opens a new page when it goes over a link

All I do now is to scroll more patiently if I want to move fast from the
top of a page to the bottom I use the keyboard

-- 
Reinhold Platzoeder

[EMAIL PROTECTED]
[EMAIL PROTECTED]

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


RE: Installing Free over linux

2006-04-18 Thread Gayn Winters
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Aguiar Magalhaes
> Sent: Tuesday, April 18, 2006 1:00 PM
> To: freebsd-questions@freebsd.org
> Subject: Installing Free over linux

> Hi list,
> 
> I'm trying to install the FreeBSD 6.0 where exist a
> old linux (It will be full replaced)
> 
> I'm receiving a error message about de swap slice:
> 
> Unable to find device node for /dev/ad0s1b in /dev!
> The creation of filesystem will be aborted
> 
> How can I fix it ?
> 
> Aguiar 

First, welcome to FreeBSD.  

It sounds like you didn't allocate a swap partition during the
installation when you were asked to allocate partitions on ad0s1.   If
you don't take the defaults, then you must allocate swap space
explicitly.  This should be done on partition b, i.e. on ad0s1b.

I suggest you do your first install taking all of the defaults.  If you
choose a "minimal installation" it will go very quickly.  After you get
one installation variant of FreeBSD running, you can experiment with
alternate variants of the partitioning of ad0s1.  Check each
installation with

#disklabel ad0s1

Each variant will require a swap partition.  

The Handbook and FAQs are excellent and should be your primary
references for awhile. There is a link to each on www.freebsd.org. Don't
be afraid to click the Newbies button; it will lead you to many fine web
sites with tutorials.  A couple days ago someone recommended
http://www.a1poweruser.com/ which looked good enough to me to bookmark.
If you have a lot of Linux experience, it is a good site.

Best of luck,

-gayn

Bristol Systems Inc.
714/532-6776
www.bristolsystems.com 



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


Re: mouse scroll up problem

2006-04-18 Thread applecom
I have FreeBSD 6.0-RELEASE and optical Microsoft IntelliMouse 
Explorer, USB native, plugged to PS/2 port via it's own USB->PS/2 
adaptor.
When I scroll my mouse wheel up in X11 it acts like "scroll up + 
left button one/double-click". For example, in Opera, Firefox. In 
MS Windows mouse works correctly.


I am running the same mouse in the same way on the same release. 


I have changed settings as Pete advised. Both variants (old and new) 
are working (scrolling) but described effect remains.
Why I think that scrolling up works as "scroll + left click": for 
example, in Opera scrolling up at the top of document (when real 
scroll is impossible) result in marking the word under cursor and 
appearing context menu for very short time.


I've been having the same problem since updating to Xorg 6.9.0 two 
months ago. Before that, this problem did not exist for me. Here are a 
couple examples of what I see with use:


I know it's only a workaround and not a solution, but at least until 
you're able to get the rodent behaving the way you like, you can change 
the setting in Thunderbird preferences.


In v1.5:
Edit --> Preferences --> Advanced
[Check box]  Wait XX seconds before marking a message as read
(2nd item down)


Effect disappears when mouse is plugged to USB port directly, without 
adapter. Besides that with ums(4) buttons 6 and 7 works although it has 
the same affect as button 1.

But there is no ability to power off USB port at the moment it seems
(http://lists.freebsd.org/pipermail/freebsd-usb/2005-December/001756.html). 
PS/2 advantage: 'killall moused' results in turning mouse off, for USB 
it doesn't.

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


Re: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Øyvind Skaar


Use hastymail (http://hastymail.sf.net/) and really like it. For simple
webmail its the best I have  seen.

Horde is really good, but it might be overkill for your needs, don't
like Squirrelmail, but that is just personal preference.


ø



--
Øyvind Skaar | [EMAIL PROTECTED] | 482 78 480 | http://odots.org
http://last.fm/user/%67%69%7A%7A%6C%6Fn | http://43things.com/person/%C3%B8s
6865792c207768617420646f20796f75206b6e6f772c
796f752772652061206e65726420746f6f202e2e

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


OT: Curious behavior today

2006-04-18 Thread Bob Goodman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

>ive been working on a pair of test boxes today, and 2 daemons in a
row,
>have installed from ports without the .sh on the end of their
startup
>script.
>
>ive done tons of installs on these test boxes, what am i all of a
>sudden
>doing wrong?  the only thing im doing different is (what i thinkn
is >just)
>syntax.
>
>before:
>cd /usr/ports/mail/dovecot
>make install distclean
>
>now:
>cd /usr/ports/mail/dovecot; make install distclean

>saslthaud did the same thing just a while a go.  this happend on 2
>boxes
>simultaneously!
>
>thanks,
>Jonathan Horne

A question off topic: what would you say about dovecot
in terms of performance?

Bob Goodman
-BEGIN PGP SIGNATURE-
Note: This signature can be verified at https://www.hushtools.com/verify
Version: Hush 2.5

wkYEARECAAYFAkRFX0AACgkQAQ09syE0bn7slQCgrNMQCdGx7hFWvcrSkS5GCcKPVMgA
n27QCMV0F02OiCEfK24a1G+Bg8ye
=gIhb
-END PGP SIGNATURE-




Concerned about your privacy? Instantly send FREE secure email, no account 
required
http://www.hushmail.com/send?l=480

Get the best prices on SSL certificates from Hushmail
https://www.hushssl.com?l=485

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


Re: wrired-wireless if_bridge question

2006-04-18 Thread dick hoogendijk
On 18 Apr Fabian Keil wrote:
> dick hoogendijk <[EMAIL PROTECTED]> wrote:
> > After adding the WiFi card this whould be:
> > defaultrouter="82.74.2.1"
> > hostname="lothlorien.nagual.st"
> > ifconfig_rl0="inet 82.74.2.186 netmask 255.255.254.0"
> > ifconfig_rl1="inet 192.168.11.1 netmask 255.255.255.0"
> > ifconfig_ath0="ssid airport01 media autoselect mode 11g mediaopt \
> > hostap wepmode on wepkey `cat /etc/wepkey` channel 1 up"
> > cloned_interfaces="bridge0"
> > ifconfig_bridge0="addm ath0 addm rl1 up"
> 
> You didn't specify the default wepkey, but the syntax looks
> OK to me.

> BTW don't bridge your wireless and wired networks if you don't have to.
> If your only goal is to get internet access for your wireless clients,
> it's probably safer to just add another NAT zone.

Sounds like wise advice, but how do I go about this? "Just add another
NAT", sound simple enough, but how do I do that?

I guess safer means there will be no access to my wired network (LAN) if I
add another NAT zone? Help would be much appreciated ;-)

One other thing: if I (still) decide (in the future) to clone, would I
clone the internal Ethernet card or the one attached to my ISP?

-- 
dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.0 +++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Realtek 8201 driver on FreeBSD?

2006-04-18 Thread Pete Slagle

Mass Milan wrote:

I actually have an ASUS P5RD1-VM, but I am unable to figure out how to 
get the NIC working.
With Linux, it is pretty straightforward to make it working, but with 
FreeBSD it is not the same game.


I don't know if you have solved the problem you posted on the web.
If it is the case, I would appreciate your help.


Sorry, but I can't help. I got diverted to more rewarding projects and 
never got the NIC working. I gave that particular mobo to someone else.




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


Fwd: Is Squirrelmail the best webmail choice?

2006-04-18 Thread David Stanford
-- Forwarded message --
From: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Apr 18, 2006 4:08 PM
Subject: Re: Is Squirrelmail the best webmail choice?
To: David Stanford <[EMAIL PROTECTED]>

Roundcube is what I use for my own personal webmail, but it generates
errors a little more often than I'd like.  I'm on Lotus Domino at work,
but if I had to choose a webmail client for a large userbase, I'd excluse
Roundcube b/c of the errors.  Squirrelmail is good, Horde is good.

You might also want to check out Zimbra.  I have no experience with this,
but it looks to be a pretty full featured package.

Michael Gaskins
Berkeley County Government
Trainer/Application Developer (IT Department)
[EMAIL PROTECTED]
843-719-4759



"David Stanford" <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
04/18/2006 03:21 PM

To
[EMAIL PROTECTED]
cc
[EMAIL PROTECTED]
Subject
Re: Is Squirrelmail the best webmail choice?






SquirrelMail is definitely a great choice with regard to functionality,
but
lacks a bit in appearance. You should look into http://roundcube.net/ if
you're interested in a clean looking webmail solution.

-David

On 4/18/06, Jonathan Horne <[EMAIL PROTECTED]> wrote:
>
> ive used squirrelmail for quite a while, and i just want to make sure i
> have my mind as open as possible here.  are there any other choices for
> webmail that are about as easy as SM to configure, but offer a better
user
> interface or experience?
>
> ive heard of horde, but ive not seen it since early 2000 or so, and even
> then, when i tried to set it up, it was a complete and total failure.
>
> so, any other recommendations for webmail besides squirrelmail?
>
> thanks,
> Jonathan Horne
>
> ___
> 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]"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: x?

2006-04-18 Thread eoghan

albi wrote:

eoghan wrote:


** (gnome-session:1004): WARNING **: Unable to read ICE authority file:
/home/ej/.ICEauthority

waiting for X server yo shut down FreeFontPath: FPE
"/usr/X11R6/lib/X11/fonts/misc/" refcount is 2, should be 1; fixing

Do i need to remove .ICEauthority too?


yes,

problems with these files seem related to KDE and gnome only,
windowmanagers like icewm and windowmaker don't seem to have these
problems afair


That did it. Thank you very much.
Eoghan

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


Re: x?

2006-04-18 Thread albi
eoghan wrote:

> ** (gnome-session:1004): WARNING **: Unable to read ICE authority file:
> /home/ej/.ICEauthority
> 
> waiting for X server yo shut down FreeFontPath: FPE
> "/usr/X11R6/lib/X11/fonts/misc/" refcount is 2, should be 1; fixing
> 
> Do i need to remove .ICEauthority too?

yes,

problems with these files seem related to KDE and gnome only,
windowmanagers like icewm and windowmaker don't seem to have these
problems afair


-- 
grtjs, albi
gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: x?

2006-04-18 Thread eoghan

albi wrote:

On Tue, 18 Apr 2006 21:03:00 +0100
eoghan <[EMAIL PROTECTED]> wrote:


x just quit itself after about 3 mins (too impatient!)...
the error is:
/usr/X11R6/bin/xinit: Server error.
/usr/X11R6/bin/xauth: error in locking authority
file /home/ej/.Xauthority This was working fine, but just today it
has stopped working. Only thing i have installed since was sudo.
sudo startx works, but loads the root session, i would prefer my
own... Any ideas?


rm -rf ~/.Xauthority

and try starting X again


Thanks tried that but:

vncext: VNC extension running!
vncext: Listening for VNC connection on port 5900
vncext: created VNC server for screen 0
error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPoily

** (gnome-session:1004): WARNING **: Unable to read ICE authority file: 
/home/ej/.ICEauthority


waiting for X server yo shut down FreeFontPath: FPE 
"/usr/X11R6/lib/X11/fonts/misc/" refcount is 2, should be 1; fixing


Do i need to remove .ICEauthority too?
Thanks
Eoghan
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: x?

2006-04-18 Thread [EMAIL PROTECTED]
On 4/18/06, eoghan <[EMAIL PROTECTED]> wrote:
> eoghan wrote:
> > It should start gnome, but now all i get it the x cursor on the
> > grey/black screen and i dont know how to exit out...

> Ok to reply to myself:
> x just quit itself after about 3 mins (too impatient!)...
> the error is:
> /usr/X11R6/bin/xinit: Server error.
> /usr/X11R6/bin/xauth: error in locking authority file /home/ej/.Xauthority

Control-alt-backspace is the "standard" salut
for helping X go away.
Alternately, one can control-alt-F[1-8]
to get to a virtual console and kill the server
from the command line.  Waiting for it to die
is a gerund.
As someone else pointed out, you most likely
need merely to delete the offending .Xauthority
file.

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


Re: x?

2006-04-18 Thread albi
On Tue, 18 Apr 2006 21:03:00 +0100
eoghan <[EMAIL PROTECTED]> wrote:

> x just quit itself after about 3 mins (too impatient!)...
> the error is:
> /usr/X11R6/bin/xinit: Server error.
> /usr/X11R6/bin/xauth: error in locking authority
> file /home/ej/.Xauthority This was working fine, but just today it
> has stopped working. Only thing i have installed since was sudo.
> sudo startx works, but loads the root session, i would prefer my
> own... Any ideas?

rm -rf ~/.Xauthority

and try starting X again

-- 
grtjs, albi
gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: x?

2006-04-18 Thread Zimmerman, Eric
> Ok to reply to myself:
> x just quit itself after about 3 mins (too impatient!)...
> the error is:
> /usr/X11R6/bin/xinit: Server error.
> /usr/X11R6/bin/xauth: error in locking authority file
/home/ej/.Xauthority
> This was working fine, but just today it has stopped working. Only
thing
> i have installed since was sudo.
> sudo startx works, but loads the root session, i would prefer my
own...
> Any ideas?


Google told me this:

Sounds like you have a stale authority file.  Try just deleting it
before the next time you start up...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: x?

2006-04-18 Thread eoghan

eoghan wrote:

Hi
Today I logged in to my freebsd 6.0 box and typed startx as i normally 
do, which starts my gnome session. Now today its stopped working.
It should start gnome, but now all i get it the x cursor on the 
grey/black screen and i dont know how to exit out...
Once I ext out is there a file i can access to get an idea of whats 
going on so maybe i can get some additional help?

startx as root works just fine.


Ok to reply to myself:
x just quit itself after about 3 mins (too impatient!)...
the error is:
/usr/X11R6/bin/xinit: Server error.
/usr/X11R6/bin/xauth: error in locking authority file /home/ej/.Xauthority
This was working fine, but just today it has stopped working. Only thing 
i have installed since was sudo.

sudo startx works, but loads the root session, i would prefer my own...
Any ideas?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Installing Free over linux

2006-04-18 Thread Aguiar Magalhaes
Hi list,

I'm trying to install the FreeBSD 6.0 where exist a
old linux (It will be full replaced)

I'm receiving a error message about de swap slice:

Unable to find device node for /dev/ad0s1b in /dev!
The creation of filesystem will be aborted

How can I fix it ?

Aguiar 








___ 
Yahoo! doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html 

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


x?

2006-04-18 Thread eoghan

Hi
Today I logged in to my freebsd 6.0 box and typed startx as i normally 
do, which starts my gnome session. Now today its stopped working.
It should start gnome, but now all i get it the x cursor on the 
grey/black screen and i dont know how to exit out...
Once I ext out is there a file i can access to get an idea of whats 
going on so maybe i can get some additional help?

startx as root works just fine.
Thanks
Eoghan
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Gmail vs FreeBSD

2006-04-18 Thread Andrew Pantyukhin
On 4/18/06, pete wright <[EMAIL PROTECTED]> wrote:
> > i'd suggest getting an SDF account as a backup atleast.  and heck, if
> > you pony up ~$20 (us) you get a lifetime NetBSD shell.  Not too bad
> > IMHO.
>
> 
> http://sdf.lonestar.org/

You shouldn't. Currently it's the third link google knows
about "sdf" (and the first one about "sdf account")
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Is Squirrelmail the best webmail choice?

2006-04-18 Thread David Stanford
SquirrelMail is definitely a great choice with regard to functionality, but
lacks a bit in appearance. You should look into http://roundcube.net/ if
you're interested in a clean looking webmail solution.

-David

On 4/18/06, Jonathan Horne <[EMAIL PROTECTED]> wrote:
>
> ive used squirrelmail for quite a while, and i just want to make sure i
> have my mind as open as possible here.  are there any other choices for
> webmail that are about as easy as SM to configure, but offer a better user
> interface or experience?
>
> ive heard of horde, but ive not seen it since early 2000 or so, and even
> then, when i tried to set it up, it was a complete and total failure.
>
> so, any other recommendations for webmail besides squirrelmail?
>
> thanks,
> Jonathan Horne
>
> ___
> 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: Curious behavior today

2006-04-18 Thread Alex Zbyslaw

Jonathan Horne wrote:


well if its an official change in procedure, i have no problem with
adapting.  the reason it raised my eyebrow today, aside from happening on
2 boxes at the same time, same daemons, but vsftpd did the same thing last
weekend when i compiled the port after latest cvsup.  vsftpd needed to
vsftpd.sh for it to start at boot (with vsftpd_enable="YES" in
/etc/rc.conf).  while i did not reboot my test boxes to see whether or not
dovecot and saslauthd did or did not start at boot without the .sh on
their scripts, it still wondered what was going on.

i have several more additional daemons to compile in today, it will be
interesting to see their installation behavior as well.
 

My understanding is that the changes were going to be done in a 
backwards-compatible way so if something didn't work "out-of-the-box" 
for you then there may be something wrong somewhere.  I don't know 
enough to say what, if anything, is wrong with those ports.


What I thought was that *you* wouldn't have to adapt at all, unless you 
write or maintain a port, but that port maintainers would have to change 
over to the new style.  I thought it was also going to stay compatible 
with the old style, since 5.X won't, as I understand it, get the 
changes.  But ports still have to work on 5.X, one would hope!


--Alex


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


Re: Updating to 6.1 RC1 with TWA compile issues?

2006-04-18 Thread Kris Kennaway
On Tue, Apr 18, 2006 at 05:38:43PM +, Huy Ton That wrote:
> Perhaps someone may help me, I've successfully cvsup'd the src for the
> 6.1 rc1 release ran make buildworld and now when I initiate make
> buildkernel it halts as shown below.  Any ideas?  is there a way I can
> exclude this compilation?
> 
> 
> mkdep -f .depend -a   -nostdinc -D_KERNEL -DKLD_MODULE -I-
> -I/usr/src/sys/modules/twa/../../dev/twa -DHAVE_KERNEL_OPTION_HEADERS
> -I. -I@ -I@/contrib/altq -I@/../include -I/usr/include
> -I/usr/obj/usr/src/sys/GENERIC
> /usr/src/sys/modules/twa/tw_osl_freebsd.c
> /usr/src/sys/modules/twa/tw_osl_cam.c
> /usr/src/sys/modules/twa/tw_cl_init.c
> /usr/src/sys/modules/twa/tw_cl_io.c
> /usr/src/sys/modules/twa/tw_cl_intr.c
> /usr/src/sys/modules/twa/tw_cl_misc.c
> /usr/src/sys/modules/twa/tw_cl_io.c:9:2: invalid preprocessing directive #?
> mkdep: compile failed
> *** Error code 1

Verify that you do not have corrupted source.

Kris


pgp7liNtCTJkQ.pgp
Description: PGP signature


Re: clustering question.......

2006-04-18 Thread pete wright
On 4/18/06, Charles Swiger <[EMAIL PROTECTED]> wrote:
> On Apr 18, 2006, at 12:05 PM, Wright Jim Contr 14MDSS/SGSI wrote:
> > Hallo !
> >
> > I'm sure there is some info on this, but I can't seem to find it.
> >
> > I guess what I'm looking for is the "FreeBSD Clustering for Dummies"
> > guide.
>
> Dummies aren't qualified to set up a cluster, I'm afraid.
>
> You should start by determining what services the system needs to
> provide, what kind of reliability and uptime is desired, and what the
> budget is for hardware and software.  If the budget is less than mid
> 5-digits (compare to low-to-mid 6-digits if doing Windows, say a
> clustered SQLServer solution), you aren't going to be able to
> configure a "true cluster" [1] with no single point of failure.
>

i'd say that figure may be a little high, but i agree with your
sentiment.  you could "easily" create a web server cluster by putting
your httpd nodes behind a software load balancer (a BSD box running
PF/CARP or somesuch solution), and you would have created a cluster of
web servers that will provide you with a reasonable amount of
redundancy.  this will provide one form of clustering.

granted, this is just one type of clustering computers together -
which is much differnet than say building a farm of machines to
compute data in unison.

-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]"


Updating to 6.1 RC1 with TWA compile issues?

2006-04-18 Thread Huy Ton That
Perhaps someone may help me, I've successfully cvsup'd the src for the
6.1 rc1 release ran make buildworld and now when I initiate make
buildkernel it halts as shown below.  Any ideas?  is there a way I can
exclude this compilation?


mkdep -f .depend -a   -nostdinc -D_KERNEL -DKLD_MODULE -I-
-I/usr/src/sys/modules/twa/../../dev/twa -DHAVE_KERNEL_OPTION_HEADERS
-I. -I@ -I@/contrib/altq -I@/../include -I/usr/include
-I/usr/obj/usr/src/sys/GENERIC
/usr/src/sys/modules/twa/tw_osl_freebsd.c
/usr/src/sys/modules/twa/tw_osl_cam.c
/usr/src/sys/modules/twa/tw_cl_init.c
/usr/src/sys/modules/twa/tw_cl_io.c
/usr/src/sys/modules/twa/tw_cl_intr.c
/usr/src/sys/modules/twa/tw_cl_misc.c
/usr/src/sys/modules/twa/tw_cl_io.c:9:2: invalid preprocessing directive #¸
mkdep: compile failed
*** Error code 1

Stop in /usr/src/sys/modules/twa.
*** Error code 1

Stop in /usr/src/sys/modules.
*** Error code 1

Stop in /usr/obj/usr/src/sys/GENERIC.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

By the way, this is the contents of the /usr/src/sys/modules/twa directory:

-rw-r--r--  1 root  wheel  3200 Dec  7 18:18 Makefile
-rw-r--r--  1 root  wheel  3587 Mar 27 19:41 tw_cl.h
-rw-r--r--  1 root  wheel  3594 Mar 27 19:41 tw_cl_externs.h
-rw-r--r--  1 root  wheel  3594 Mar 27 19:41 tw_cl_fwif.h
-rw-r--r--  1 root  wheel  3601 Mar 27 19:41 tw_cl_fwimg.c
-rw-r--r--  1 root  wheel  3595 Mar 27 19:41 tw_cl_init.c
-rw-r--r--  1 root  wheel  3592 Mar 27 19:41 tw_cl_intr.c
-rw-r--r--  1 root  wheel  3592 Mar 27 19:41 tw_cl_io.c
-rw-r--r--  1 root  wheel  3593 Mar 27 19:41 tw_cl_ioctl.h
-rw-r--r--  1 root  wheel  3594 Mar 27 19:41 tw_cl_misc.c
-rw-r--r--  1 root  wheel  3593 Mar 27 19:41 tw_cl_share.h
-rw-r--r--  1 root  wheel  3589 Mar 27 19:41 tw_osl.h
-rw-r--r--  1 root  wheel  2937 Mar 27 19:41 tw_osl_cam.c
-rw-r--r--  1 root  wheel  3374 Mar 27 19:41 tw_osl_externs.h
-rw-r--r--  1 root  wheel  3600 Mar 27 19:41 tw_osl_freebsd.c
-rw-r--r--  1 root  wheel  3597 Mar 27 19:41 tw_osl_includes.h
-rw-r--r--  1 root  wheel  2791 Mar 27 19:41 tw_osl_inline.h
-rw-r--r--  1 root  wheel  3596 Mar 27 19:41 tw_osl_ioctl.h
-rw-r--r--  1 root  wheel  2936 Mar 27 19:41 tw_osl_share.h
-rw-r--r--  1 root  wheel  3372 Mar 27 19:41 tw_osl_types.h
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: clustering question.......

2006-04-18 Thread Charles Swiger

On Apr 18, 2006, at 12:05 PM, Wright Jim Contr 14MDSS/SGSI wrote:

Hallo !

I'm sure there is some info on this, but I can't seem to find it.

I guess what I'm looking for is the "FreeBSD Clustering for Dummies"
guide.


Dummies aren't qualified to set up a cluster, I'm afraid.

You should start by determining what services the system needs to  
provide, what kind of reliability and uptime is desired, and what the  
budget is for hardware and software.  If the budget is less than mid  
5-digits (compare to low-to-mid 6-digits if doing Windows, say a  
clustered SQLServer solution), you aren't going to be able to  
configure a "true cluster" [1] with no single point of failure.


--
-Chuck

[1]: Most people don't realize that the Microsoft cluster  
solutionsrequires both a separate machine from the clustered servers  
as a domain controller to manage the cluser, *and* it requires a  
highly reliable NAS or SAN backend filestorage being available, which  
is absolutely vital to the cluster staying sane.

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


Re: Curious behavior today

2006-04-18 Thread Alex Zbyslaw

Jonathan Horne wrote:


"Jonathan Horne" <[EMAIL PROTECTED]> writes:

   


ive been working on a pair of test boxes today, and 2 daemons in a row,
have installed from ports without the .sh on the end of their startup
script.

ive done tons of installs on these test boxes, what am i all of a sudden
doing wrong?
 


Nothing is wrong.
See "man rc".
   



well, only reason im asking, as in all my previous test boxes, the start
up scripts seemed to initially appear in /usr/local/etc/rc.d/ already with
the .sh on them.  ive done dovecot and sasl2 a ton of times, its just
seems odd that they start this behavior all of a sudden.
 

There are changes going on to how rc scripts work: basically, making 
/usr/local/etc/rc.d work just like /etc/rc.d with full rcNG 
functionality (REQUIRE, PROVIDES etc).  Scripts which worked like that 
would no longer end in .sh as per rc man page description for /etc/rc.d


Check out the recent discussions on freebsd-rc mailing list from the 
archives.


If you believe that the new scripts are wrong, I would suggest asking on 
freebsd-rc.  Maybe some ports have been updated in advance or wrongly or 
something, but I would think that freebsd-rc was the right place to start.


--Alex


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


Re: can not boot

2006-04-18 Thread Max N. Boyarov

> "dp" == dharam paul writes:

 dp>  My freebsd box reports

 dp> Code:
 dp> libexec/Id_elf.so.1:shared object "libedit.so.4" not
 dp> found by "-sh" 
 dp> Enter full path name or RETURN for (bin/sh): 
 dp> When I press enter , same error is repeated.

 dp> Any remedy please?

 if you have rescue folder on root partition then
 /rescue/sh

-- 
// Max N. Boyarov



pgpn0fpSEr49k.pgp
Description: PGP signature


RE: clustering question.......

2006-04-18 Thread fbsd

Have a look at HUT (High Uptime Project) :
http://www.bsdshell.net
and
http://www.aims.com.au/chris/cluster/
and
http://sporner.dyndns.org/freebsdcluster/ (sometimes down ;))


http://www.leidinger.net/cgi-bin/search.pl?q=cluster&num=10

http://nrez.net/~rmger/fbsdcluster/cluster-doc.html
http://acme.ecn.purdue.edu/


http://blizzard.rwic.und.edu/~nordlie/miniwulf/

Try MPICH and LAM/MPI



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Wright Jim
Contr 14MDSS/SGSI
Sent: Tuesday, April 18, 2006 12:06 PM
To: [EMAIL PROTECTED]
Subject: clustering question...


Hallo !

I'm sure there is some info on this, but I can't seem to find it.

I guess what I'm looking for is the "FreeBSD Clustering for Dummies"
guide.
I am fairly comfortable with FreeBSD itself, but clustering is still
new
to me.

Any simple suggestions are greatly appreciated as well as pointing
me to
somewhere else on the Web, etc.
Please use small words.=0)


Thanks a bunch for any and all help offered !

jim

___
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: Need clarification on WPS IE support

2006-04-18 Thread CHui

> As far as I know there is no freebsd "port" for wpa_supplicant (there 
> used to be one but it was removed when wpa_supplicant was incorporated 
> into the base system).  Likewise trying to use wpa_supplicant unchanged 
> from Jouni's cvs may or may not work correctly--the freebsd support has 
> been decoupled and is maintained in freebsd so that it can track freebsd 
> api's w/o Jouni having to spin new wpa_supplicant distributions.  The 
> same holds for hostapd.
> 
>   Sam

I am unaware that wpa_supplicant is now part of the base system and
continued to use the cvs-ports wpa_supplicant v0.3.8.  Thanks for pointing
this out.

I have rebuilt the base wpa_supplicant from source and enable EAP-TTLS
support.  Now sp_scan=2 option does not cause core dump, but wpa_supplicant
has problem connecting to the AP using the non-broadcast SSID:

wpa_driver_bsd_associate: ssid 'employee' wpa ie len 24 pairwise 2
group 2 key mgmt 0
wpa_driver_bsd_associate: set PRIVACY 1
ioctl[SIOCS80211, op 21, len 42]: Invalid argument
Association request to the driver failed

I am cross posting this question to both hostap and freebsd.  If this is
just a driver issue, I will pursue this on the freebsd forum.


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


Re: Curious behavior today

2006-04-18 Thread Jonathan Horne
> "Jonathan Horne" <[EMAIL PROTECTED]> writes:
>
>> ive been working on a pair of test boxes today, and 2 daemons in a row,
>> have installed from ports without the .sh on the end of their startup
>> script.
>>
>> ive done tons of installs on these test boxes, what am i all of a sudden
>> doing wrong?
>
> Nothing is wrong.
> See "man rc".

well, only reason im asking, as in all my previous test boxes, the start
up scripts seemed to initially appear in /usr/local/etc/rc.d/ already with
the .sh on them.  ive done dovecot and sasl2 a ton of times, its just
seems odd that they start this behavior all of a sudden.

jonathan

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


Re: clustering question.......

2006-04-18 Thread pete wright
On 4/18/06, Wright Jim Contr 14MDSS/SGSI <[EMAIL PROTECTED]> wrote:
> Hallo !
>
> I'm sure there is some info on this, but I can't seem to find it.
>
> I guess what I'm looking for is the "FreeBSD Clustering for Dummies"
> guide.
> I am fairly comfortable with FreeBSD itself, but clustering is still new
> to me.
>
> Any simple suggestions are greatly appreciated as well as pointing me to
> somewhere else on the Web, etc.
> Please use small words.=0)
>

clustering is a pretty broad topic.  you may find it more helpfull to
first define the issue you are facing at hand.  would you like to
create a farm of servers running httpd for example?  or maybe you
would like to string a bunch of computers together to crunch data
sets.  in any event, if you define to us exactly what you are trying
to accomplish we should be able to help  more.

HTH.
-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: Curious behavior today

2006-04-18 Thread Lowell Gilbert
"Jonathan Horne" <[EMAIL PROTECTED]> writes:

> ive been working on a pair of test boxes today, and 2 daemons in a row,
> have installed from ports without the .sh on the end of their startup
> script.
> 
> ive done tons of installs on these test boxes, what am i all of a sudden
> doing wrong?

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


Curious behavior today

2006-04-18 Thread Jonathan Horne
ive been working on a pair of test boxes today, and 2 daemons in a row,
have installed from ports without the .sh on the end of their startup
script.

ive done tons of installs on these test boxes, what am i all of a sudden
doing wrong?  the only thing im doing different is (what i thinkn is just)
syntax.

before:
cd /usr/ports/mail/dovecot
make install distclean

now:
cd /usr/ports/mail/dovecot; make install distclean

saslthaud did the same thing just a while a go.  this happend on 2 boxes
simultaneously!

thanks,
Jonathan Horne

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


Re: direct rending doesnt work in xorg

2006-04-18 Thread Danny Butroyd
Björn König wrote:
> Danny Butroyd schrieb:
> 
>> Section "Device"
>> Identifier  "Card0"
>> Driver  "ati"
>> VendorName  "ATI Technologies Inc"
>> BoardName   "Radeon R250 Lf [Radeon Mobility 9000 M9]"
>> BusID   "PCI:1:0:0"
>> Screen  0
>> EndSection
> 
> You have to use the driver "radeon" in order to use 3D acceleration.

I have tried this but it has made no difference :(
> 
>> [rvn] /home/danny# glxinfo
>> name of display: :0.0
>> libGL: XF86DRIGetClientDriverName: 5.0.3 r200 (screen 0)
>> libGL: OpenDriver: trying /usr/X11R6/lib/modules/dri/r200_dri.so
>> libGL error: dlopen /usr/X11R6/lib/modules/dri/r200_dri.so failed
>> (/usr/X11R6/lib/modules/dri/r200_dri.so: Undefined symbol
>> "_glapi_add_entrypoint")
>> libGL error: unable to find driver: r200_dri.so
>>
>> The solution (according to the wiki) is to reinstall DRI and LIBGL from
>> source, however, I have reinstalled all the relevant ports but I still
>> get the same problem.  Can anyone help?
> 
> Does /usr/X11R6/lib/modules/dri/r200_dri.so exist?

Yes it does

> 
> Regards
> Björn
> ___
> 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: SATA controller - Adaptec 1210SA on 6.0/6.1RC

2006-04-18 Thread Ted Mittelstaedt
thisis the oemed highpoint if I'm not mistaken.  It's a good controller.

WD drives on IDE raid are a problem - WD has a blurb on this on
their website - they sell special raid-ready ide drives for this purpose.
the programming in their standard drives isn't compatible with raid.
(they say)

Ted

>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of Łukasz
>Bromirski
>Sent: Tuesday, April 18, 2006 8:38 AM
>To: freebsd-questions@freebsd.org
>Subject: SATA controller - Adaptec 1210SA on 6.0/6.1RC
>
>
>Hi list,
>
>I'm having problems with the following setup:
>
>Abit KT7A-RAID
>Adaptec 1210SA in 3rd slot and 2xWestern Digitial 200GB drives
>Intel 10/100/1000 in 2nd slot
>AGP card (some generic GeForce)
>Samsung 80GB connected to first IDE controller
>CD-ROM connected to second IDE controller
>
>In essence, any operation that touches the drives connected to the
>1210SA controller hang machine in place (after about 3 or 4 seconds),
>and only message I was able to see before it was 'ata2 request
>DISCONNECT' (disks are visible as ad4 and ad6).
>
>Of course any disk operations involving the IDE drive are OK, I tested
>some file transfers and they were able to keep 20MB/s rate without
>a problem.
>
>I consulted the BIOS settings page of the motherboard manual and
>set up everything so IRQs would not collide - so that's why NIC and
>the Adaptec PCI card are on 2nd and 3rd slot (I have to use USB on
>this PC and don't have any PCI graphics card, so essentialy, there is
>no other option). 'vmstat' shows every device on it's own interrupt.
>Hangs happen with and without ACPI loaded during boot.
>
>I saw some discussions about how crappy Si3112 and low-end Adaptec
>controllers are, but is there any way to have it running stable on
>6.0/6.1RC machine?
>
>--
>"Confidence is what you have before you|Łukasz Bromirski
>  understand the problem." -- Woody Allen   |
>lukasz:bromirski,net
>___
>freebsd-questions@freebsd.org mailing list
>http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>To unsubscribe, send any mail to
>"[EMAIL PROTECTED]"
>
>--
>No virus found in this incoming message.
>Checked by AVG Free Edition.
>Version: 7.1.385 / Virus Database: 268.4.3/317 - Release Date: 4/18/2006
>

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


Re: Proper Method of Time Sync? (added: time server choices)

2006-04-18 Thread John Murphy
"Murray Taylor" <[EMAIL PROTECTED]> wrote:

>Also read this 
>http://people.freebsd.org/~phk/dlink/
>For how not to do it !!

What a sorry tale! I had previously read about some of Poul's "time-geek"
activities.  So sad that his efforts should be vandalised like that.

Unbelievable that some people think he should "just live with it".

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


Re: "DansGuardian Webmin Module"

2006-04-18 Thread tethys ocean
I so greatfull to you  for your instruction

Yes I did as if your advise but now, I think a little bit missing but I
couldnt decided what it is..

Since

*Manage DansGuardian - true web content filtering for all*
--

/usr/local/sbin/dansguardian


is shown  but not management GUI isnt it?

I can get squid management GUI but for Dansguardian not.

if I click the "Module Config"  button than in attachment page is come.

What I must do?


On 4/18/06, Andrew Pantyukhin <[EMAIL PROTECTED]> wrote:
>
> On 4/18/06, tethys ocean <[EMAIL PROTECTED]> wrote:
> > Hi All
> >
> > I need a Dansguardian Webmin module. İt server in SourceForce (
> > http://sourceforge.net/projects/dgwebminmodule/)
> > But I couldnt understand wbm extention file.  I checked my server with
> > dg-0.5.10-pr5.wbm<
> http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
> >
> >
> >
> > # file  dg-0.5.10-pr5.wbm
> > <
> http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
> >
> > #dg-0.5.10-pr5.wbm
> > <
> http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
> >:
> > gzip compressed data, from UNIX
> >
> > so  I couldnt recognize this file extention and  also how I can extract
> this
> > file...
> >
> > I havent got any document about  extraction and also instruction or  man
> > page  about "DansGuardian Webmin Module"
> >
> > thanks a lot
> >
> >  *  * *
> > *
> >
> > *
> > *
> >
> >
> >
> >
> >
> > I check in my server file
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "
> [EMAIL PROTECTED]"
> >
> >
>
> From http://www.webmin.com/faq.html :
>
> How do I install new modules?
>
> Once you have downloaded a new module as a .wbm file,
> enter the Webmin Configuration module and click on the
> Webmin Modules button. Then use the form at the top of the
> page to install the module either from the local filesystem of
> the server Webmin is running on, or uploaded from the client
> your browser is on.
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

clustering question.......

2006-04-18 Thread Wright Jim Contr 14MDSS/SGSI
Hallo !

I'm sure there is some info on this, but I can't seem to find it.

I guess what I'm looking for is the "FreeBSD Clustering for Dummies"
guide.
I am fairly comfortable with FreeBSD itself, but clustering is still new
to me.

Any simple suggestions are greatly appreciated as well as pointing me to
somewhere else on the Web, etc.
Please use small words.=0)


Thanks a bunch for any and all help offered !

jim

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


How to create a .la file?

2006-04-18 Thread Norberto Meijome
hi,
trying to upgrade gimp from ports, the build process failed with:


libtool: link: cannot find the library `/usr/X11R6/lib/libXcursor.la' or
unhandled argument `/usr/X11R6/lib/libXcursor.la'

libXcursor.la is usually provided by x11/libXcursor, but this port conflicts
with xorg-libraries.

xorg-libraries doesn't provide this file. how do I create it from the existing
libXcursor.so|.a  ?

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


SATA controller - Adaptec 1210SA on 6.0/6.1RC

2006-04-18 Thread Łukasz Bromirski

Hi list,

I'm having problems with the following setup:

Abit KT7A-RAID
Adaptec 1210SA in 3rd slot and 2xWestern Digitial 200GB drives
Intel 10/100/1000 in 2nd slot
AGP card (some generic GeForce)
Samsung 80GB connected to first IDE controller
CD-ROM connected to second IDE controller

In essence, any operation that touches the drives connected to the
1210SA controller hang machine in place (after about 3 or 4 seconds),
and only message I was able to see before it was 'ata2 request
DISCONNECT' (disks are visible as ad4 and ad6).

Of course any disk operations involving the IDE drive are OK, I tested
some file transfers and they were able to keep 20MB/s rate without
a problem.

I consulted the BIOS settings page of the motherboard manual and
set up everything so IRQs would not collide - so that's why NIC and
the Adaptec PCI card are on 2nd and 3rd slot (I have to use USB on
this PC and don't have any PCI graphics card, so essentialy, there is
no other option). 'vmstat' shows every device on it's own interrupt.
Hangs happen with and without ACPI loaded during boot.

I saw some discussions about how crappy Si3112 and low-end Adaptec
controllers are, but is there any way to have it running stable on
6.0/6.1RC machine?

--
"Confidence is what you have before you|Łukasz Bromirski
 understand the problem." -- Woody Allen   |lukasz:bromirski,net
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: unrecognized pci-serial board

2006-04-18 Thread Watanabe Kazuhiro
Hi, tomoki-san.

At Tue, 18 Apr 2006 17:08:54 +0900,
FreeBSD MailingLists wrote:
> the source for the driver can be downloaded from
> http://www.ratocsystems.com/software/linux/pci60_060306.tar.gz

Is your board REX-PCI60 with EXAR XR17C152 ?

On NetBSD, EXAR XR17D15x is already supported with puc(4) driver.

http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/pci/pucdata.c#rev1.44

As far as I know, XR17D15x is a dual-voltage (3.3/5V PCI) version of
XR17C15x.  Other specifications seems to be the same.  Perhaps your
board will be work with the same entry.

On FreeBSD, the file pucdata.c is located in /sys/dev/puc/ .

Datasheets are available on the URL:
http://www.exar.com/search_uart.php

---
Watanabe Kazuhiro ([EMAIL PROTECTED])
# PCTel HSP MicroModem driver for FreeBSD
# http://homepage2.nifty.com/dumb_show/unix/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Several questions

2006-04-18 Thread albi
Rhys Sage wrote:

> 1. Will FreeBSD run on my Compaq Presario V2570NR

yes, probably

> (Athlon 64, 512mb DDR, WIFI and several interesting
> desktop buttons by Compaq)?

the desktop buttons have to be done after the install by yourself, and
perhaps the onboard wifi-card is not supported

> 2. Does FreeBSD come with a GUI or is it compatible
> with the Athene GUI?

FreeBSD comes with Xorg

> 3. Is there any software for FreeBSD that will read
> Canon CR2 files from my Canon XT?
> 
> 4. Is it possible to run Mac OSX software on FreeBSD?

yes and no, there's qemu which you can try, YMMV

http://fabrice.bellard.free.fr/qemu/
http://en.wikipedia.org/wiki/QEMU

> My questions are because I want to transfer from
> Windows XP and to maintain my OpenOffice,
> PhotoProcessing and internet capabilities, while not
> using a virus magnet like Windows. (also keeps my 8
> year old from trying to load CDs of games behind my back.

i would suggest to start with a dual-boot, re-partitioning can easily be
done with gparted :

http://gparted.sourceforge.net/livecd.php

gparted is an open-source equivalent to the commercial closed-source
partition-magic

-- 
grtjs, albi
gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Gmail vs FreeBSD

2006-04-18 Thread pete wright
On 4/18/06, pete wright <[EMAIL PROTECTED]> wrote:
> On 4/16/06, Igor Robul <[EMAIL PROTECTED]> wrote:
> > On Sun, Apr 16, 2006 at 02:11:06PM +0100, Richard Collyer wrote:
> > > Andrew Pantyukhin wrote:
> > > If your running FreeBSD just get a qmail server on the go and slap
> > > squirrelmail on there for web based mail.
> > Not everybody in the world has 24/7 computer with direct connect to
> > Internet. There are at least 3 reasons:
> >
> > 1) Too noisy. Not everyone has big house
> > 2) Too expensive. I pay for Ethernet based connection $30, but it is not
> >  techicaly possible in every Russian house.
> > 3) Some other reason :-)
>
> i'd suggest getting an SDF account as a backup atleast.  and heck, if
> you pony up ~$20 (us) you get a lifetime NetBSD shell.  Not too bad
> IMHO.
>
> -p
>


http://sdf.lonestar.org/


-p


--
~~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: Gmail vs FreeBSD

2006-04-18 Thread pete wright
On 4/16/06, Igor Robul <[EMAIL PROTECTED]> wrote:
> On Sun, Apr 16, 2006 at 02:11:06PM +0100, Richard Collyer wrote:
> > Andrew Pantyukhin wrote:
> > If your running FreeBSD just get a qmail server on the go and slap
> > squirrelmail on there for web based mail.
> Not everybody in the world has 24/7 computer with direct connect to
> Internet. There are at least 3 reasons:
>
> 1) Too noisy. Not everyone has big house
> 2) Too expensive. I pay for Ethernet based connection $30, but it is not
>  techicaly possible in every Russian house.
> 3) Some other reason :-)

i'd suggest getting an SDF account as a backup atleast.  and heck, if
you pony up ~$20 (us) you get a lifetime NetBSD shell.  Not too bad
IMHO.

-p


--
~~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: Gmail vs FreeBSD

2006-04-18 Thread Daniel A.
On 4/18/06, Andrew Pantyukhin <[EMAIL PROTECTED]> wrote:
> On 4/18/06, Daniel A. <[EMAIL PROTECTED]> wrote:
> > Same problem. I didnt recieve any emails from the FreeBSD lists
> > between April 14'th and 07:40 this morning (GMT+1)
>
> I wonder if there are any evil giggles at googleplex...
>
Impossible. Remember their slogan? "Do no evil"? It's innocent
giggles, at most. They are archived for later use.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: wrired-wireless if_bridge question

2006-04-18 Thread Fabian Keil
dick hoogendijk <[EMAIL PROTECTED]> wrote:

> The situation:
> A server with two wired Ethernet cards
> rl0 to the outside (ISP)
> rl1 to the local network (192.168.11.1)
> The server does routing NAT and DHCP; pf is enabled (quite a normal
> situation ;-)
> 
> The NEW situation (802.11-to-ethernet bridge)
> I will add a wireless card to the server. This way my notebook and my
> (nintendo) DS will have access to the internet.
> 
> As I understand it after reading articles, the handbook and man
> if_bridge it goes like this:
> 
> NOW I have in rc.conf:
> defaultrouter="82.74.2.1"
> hostname="lothlorien.nagual.st"
> ifconfig_rl0="inet 82.74.2.186 netmask 255.255.254.0"
> ifconfig_rl1="inet 192.168.11.1 netmask 255.255.255.0"
> 
> After adding the WiFi card this whould be:
> defaultrouter="82.74.2.1"
> hostname="lothlorien.nagual.st"
> ifconfig_rl0="inet 82.74.2.186 netmask 255.255.254.0"
> ifconfig_rl1="inet 192.168.11.1 netmask 255.255.255.0"
> ifconfig_ath0="ssid airport01 media autoselect mode 11g mediaopt \
>   hostap wepmode on wepkey `cat /etc/wepkey` channel 1 up"
> 
> And than I bridge the two "internal" cards with:
> cloned_interfaces="bridge0"
> ifconfig_bridge0="addm ath0 addm rl1 up"
> 
> Once the interfaces are bridged I should be golden (I'm told).
> But I still have some questions:
> 
> (1) Is the above syntax OK? Did I understand it all correctly?

You didn't specify the default wepkey, but the syntax looks
OK to me.

> (2) Will the IP of the wireless card be the same as the cabled (rl1)
> card (192.168.11.1)? So, a cabled workstation contacting 192.168.11.1
> would reach rl1 and a wireless one ath0? Is this correct?

The wireless NIC doesn't get rl1's ip address,
it just sees more or less the same traffic. 

BTW don't bridge your wireless and wired networks if you don't have to.
If your only goal is to get internet access for your wireless
clients, it's probably safer to just add another NAT zone.

Fabian
-- 
http://www.fabiankeil.de/


signature.asc
Description: PGP signature


Several questions

2006-04-18 Thread Rhys Sage
1. Will FreeBSD run on my Compaq Presario V2570NR
(Athlon 64, 512mb DDR, WIFI and several interesting
desktop buttons by Compaq)?

2. Does FreeBSD come with a GUI or is it compatible
with the Athene GUI?

3. Is there any software for FreeBSD that will read
Canon CR2 files from my Canon XT?

4. Is it possible to run Mac OSX software on FreeBSD?

My questions are because I want to transfer from
Windows XP and to maintain my OpenOffice,
PhotoProcessing and internet capabilities, while not
using a virus magnet like Windows. (also keeps my 8
year old from trying to load CDs of games behind my back.



___ 
Switch an email account to Yahoo! Mail, you could win FIFA World Cup tickets. 
http://uk.mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


VIRUS IN YOUR MAIL

2006-04-18 Thread TWMD Daemon
   V I R U S  A L E R T

A VIRUS WAS FOUND IN YOUR MAIL :
To: [EMAIL PROTECTED]

Subject: [EMAIL PROTECTED]

Virus Family: W32/[EMAIL PROTECTED]

Delivery of the email was stopped!
=

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


RE: server hardware

2006-04-18 Thread Derek Ragona
You'll do best to select your individual hardware and then shop for it one 
at a time, searching for the best prices.


You can select motherboards at the manufacturer's websites.  You will get 
better performance with RAID build on the motherboard.  Newer motherboards 
also support SATA-300, so you will want drives in that speed too (most 300 
GB and larger are available in SATA-300.)  New motherboards will also 
support dual core CPU's which are now the same price as hyperthreaded 
single core CPU's.  These motherboards will also support faster DDR2 RAM.


Rack cases cost more, but get a good brand that supports different cooling 
options and quieter operation on the larger 3U and 4U models.


You may want to use a couple shopping bots to help find the best prices 
once you have your shopping list complete.


-Derek

At 09:16 AM 4/18/2006, Jean-Paul Natola wrote:

>From what I'm seeing , as far as pricing,  a decent case is running about
150, cpu/mobo combo 250,  add  memory (150) , a pair of sata drives (120),
and pci raid (40) ,  and I'm  approaching 700 dollars. It *seems*  (correct
me if I'm wrong, or maybe I'm looking in the wrong places) these tigerdirect
specials for 600+ dollars  would be the most effective/





From: Derek Ragona [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 18, 2006 9:44 AM
To: Jean-Paul Natola; Richard Collyer; freebsd-questions@freebsd.org
Subject: RE: server hardware



Data centers charge for space in rack units per month.  So a 2 unit case is
more rental than a one unit model.

If you want to build it yourself, which will be most cost effective, and rack
space rental cost is not an issue, I would suggest getting a 3 unit case.  A
three unit case will take any motherboard and CPU.  Smaller 1 unit and 2 unit
cases are constricted by their size and heat dissipation and usually are
limited to only certain motherboard and CPU combinations.  Also depending on
what type of hard drive system you want (RAID, or just a drive or two) the
larger cases are more flexible.

-Derek


At 08:25 AM 4/18/2006, Jean-Paul Natola wrote:



The box that currently runs is an old dimension, 400 mhz mirrored IDE 256
ram, so anything / everything out there on the market  will be improvement,
as far as putting it together I can most certainly do it,  if it will be
cost-effective, plus I love the thought of it.

I'm not following you entirely on the " pay more for rental but less for the
box" , can you elaborate a bit on that?

-Original Message-
From: Richard Collyer [mailto:[EMAIL PROTECTED]
Sent: Monday, April 17, 2006 4:57 PM
To: Jean-Paul Natola; freebsd-questions@freebsd.org
Subject: Re: server hardware

Jean-Paul Natola wrote:
> Hi all,
>
> I'm looking to move my bsd box to a 1u rack (running out of room under the
> desk)
>
> The least expensive one I came across at dell is 900, can someone suggest ,
a
> more cost effective alternative?

Cost. Specs needed parts you can put in yourself. Need more info.

Why not go 2U and pay more for rental but less for the box and
equipment. You can always check on ebay for 1u cases on the cheap.

Cheers
Richard
___
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]"

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


Re: can not su

2006-04-18 Thread dharam paul
You are right to say that /var/lib/ does not exist
that is what logrotation through webmin said. So I
created the folder '/var/lib/ and when logrotate
furhter gave different errors, I removed the folder
'/var/lib/'
Regards
--- Lowell Gilbert
<[EMAIL PROTECTED]> wrote:

> dharam paul <[EMAIL PROTECTED]> writes:
> 
> > I have by mistake removed /var/lib/
> > Now can not su or login as root.
> > Any remedy please,
> 
> /var/lib does not exist on a stock system.
> Maybe you removed something else?  
> Do you know what?
> ___
> freebsd-questions@freebsd.org mailing list
>
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 




__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Problem Restoring Dump Via Fixit Environment in FreeBSD 6.0 Release Boot Cdrom

2006-04-18 Thread backyard1454-nospam


--- John Nielsen <[EMAIL PROTECTED]> wrote:

> On Tuesday 18 April 2006 00:17, Brian McKeon wrote:
> > Hello I'm having a problem restoring my backup of
> my FreeBSD

> >
> > mount /dev/da0s1 /foobar fails with superblock
> errors (obviously)
> > mount -t ext2fs /dev/da0s1 /foobar fails with
> mount_ext2fs not found in
> > /usr/sbin (perhaps /sbin)
> >
> > when I got to /mnt2/usr/sbin (think thats the
> right path, i know ls
> > ./mount_ext2fs finds the file in the path but if
> its ./usr/sbin or
> > ./sbin I can't recall) and run ./mount_ext2fs
> /dev/da0s1 /foobar I get
> > operation not supported by device.
> >
> > fixit won't even let me mount my linux boot drive
> (same sets of errors)
> > so I know it isn't just failing because of the USB
> device.
> >
>
> >
> > }--> My question is what is going wrong here? Do I
> have to make a
> > symlink to mount_ext2fs to the path that mount -t
> xxx blah wants to see
> > that program? Or am I just cursed? I figured
> restoring a backup would be
> > pretty simple but Fixit doesn't seem to want to
> cooperate.To date this
> > is my only serious issue with FreeBSD, but I would
> say it is quite the
> > issue to have. 
> 
> One thing you need to make sure of when using the
> Fixit CD is that the kernel 
> can find the necessary modules for whatever you're
> trying to do.  In the case 
> of ntfs.ko and smbfs.ko (and I presume ext2fs.ko),
> this doesn't happen by 
> default.  To fix this, change the kernel's module
> path from the minimal one 
> in the MFS root to the complete one included on the
> CD:
> 
> sysctl kern.module_path="/dist/boot/kernel"
> 
> Then try your mount_ext2fs command again.
> 
> Also, remember to check the "debug" console (Alt-F2)
> to see if there are any 
> kernel messages that might shed additional light on
> the problem.
> 
> Good luck, and please post again even if just to say
> "it worked".
> 
> JN
> 

Yeah that worked pretty good. I new I needed to make
up my own fixit boot image install program (hate
sysinstall, know I'm not the only one...) But as a
quick fix this did the trick. At least it mounted the
drives, now to the restore...

thanks

brian

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


can not boot

2006-04-18 Thread dharam paul
My freebsd box reports

Code:
libexec/Id_elf.so.1:shared object "libedit.so.4" not
found by "-sh" 
Enter full path name or RETURN for (bin/sh): 
When I press enter , same error is repeated.

Any remedy please?

Regards




__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Newbie question -- which files to back up?

2006-04-18 Thread Eric Schuele

Oliver Iberien wrote:
I'm running FreeBSD 6.0 on a home machine and backing up to a DVD Burner, 
probably using kdar, the dar archiver that comes with KDE. 

My question is : which system files to back up, along with my personal stuff? 
I'm used to using linux distributions that do your system backups for you. 
The capacity of the DVDs sets a practical limit on what I can reasonably back 
up, so I need to pick and choose, basically to make recovery easier should 
everything go south. Thanks!


In addition to the:

/etc
/usr/local/etc
/home
/var/db

that others posted, I find the following useful too:

/usr/src/sys/i386/conf  <- kernel configs
/usr/X11R6/lib/X11/xdm  <- I customize xdm on occasion
/boot/device.hints
/boot/loader.conf

HTH


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




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


sound, network, video card not detected

2006-04-18 Thread Mathieu Prevot
Hello,

I have compiled a kernel with the good options/device:

devicesound
devicesnd_ich

devicemiibus
devicenve
devicesis
options   DEVICE_POLLING

the sis0 (netgear adapter) works but the other chips are not detected:

pci0:  at device 16.1 (no driver attached)
pci0:  at device 20.0 (no driver attached)

I have a nForce410 /nVidia MCP on an asus motherboard.
Can I do something in /boot/device.hint ?

I use RELENG_6 / AMD64, and X -configure set "vesa" as graphical driver.
When I manually set "nv", the GPU is not detected.
But in the last Fedora Core (5) AMD64, "nv" works.
What can I do ?

Mathieu


Copyright (c) 1992-2006 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 6.1-RC #26: Tue Apr 18 14:55:35 CEST 2006
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/HYPHEN64X2
ACPI APIC Table: 
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm)64 X2 Dual Core Processor  3800+ (2009.16-MHz K8-class CPU)
  Origin = "AuthenticAMD"  Id = 0x20fb1  Stepping = 1
  
Features=0x178bfbff
  Features2=0x1
  AMD Features=0xe2500800,LM,3DNow+,3DNow>
real memory  = 1056702464 (1007 MB)
avail memory = 1011507200 (964 MB)
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
ioapic0  irqs 0-23 on motherboard
acpi0:  on motherboard
acpi0: Power Button (fixed)
Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0
cpu0:  on acpi0
cpu1:  on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pci0:  at device 0.0 (no driver attached)
pci0:  at device 0.1 (no driver attached)
pci0:  at device 0.2 (no driver attached)
pci0:  at device 0.3 (no driver attached)
pci0:  at device 0.4 (no driver attached)
pci0:  at device 0.5 (no driver attached)
pci0:  at device 0.6 (no driver attached)
pci0:  at device 0.7 (no driver attached)
pcib1:  at device 2.0 on pci0
pci1:  on pcib1
pcib2:  at device 3.0 on pci0
pci2:  on pcib2
pcib3:  at device 4.0 on pci0
pci3:  on pcib3
pci0:  at device 5.0 (no driver attached)
pci0:  at device 9.0 (no driver attached)
isab0:  at device 10.0 on pci0
isa0:  on isab0
pci0:  at device 10.1 (no driver attached)
ohci0:  mem 0xfebde000-0xfebdefff irq 21 at 
device 11.0 on pci0
ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: SMM does not respond, resetting
usb0:  on ohci0
usb0: USB revision 1.0
uhub0: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 8 ports with 8 removable, self powered
ehci0:  mem 0xfebdfc00-0xfebdfcff irq 22 at 
device 11.1 on pci0
ehci0: [GIANT-LOCKED]
usb1: EHCI version 1.0
usb1: companion controller, 8 ports each: usb0
usb1:  on ehci0
usb1: USB revision 2.0
uhub1: nVidia EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub1: 8 ports with 8 removable, self powered
atapci0:  port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 13.0 on pci0
ata0:  on atapci0
ata1:  on atapci0
pcib4:  at device 16.0 on pci0
pci4:  on pcib4
sis0:  port 0xc800-0xc8ff mem 
0xfaaff000-0xfaaf irq 17 at device 8.0 on pci4
sis0: Silicon Revision: DP83815D
miibus0:  on sis0
ukphy0:  on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
sis0: Ethernet address: 00:09:5b:05:c7:c3
pci0:  at device 16.1 (no driver attached)
pci0:  at device 20.0 (no driver attached)
acpi_button0:  on acpi0
atkbdc0:  at port 0x60,0x64 on isa0
sc0:  at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
vga0:  at port 0x3c0-0x3df iomem 0xa-0xb on isa0
ukbd0: Logitech USB Receiver, rev 1.10/22.40, addr 2, iclass 3/1
kbd0 at ukbd0
ums0: Logitech USB Receiver, rev 1.10/22.40, addr 2, iclass 3/1
ums0: 8 buttons and Z dir.
Timecounters tick every 1.000 msec
ad0: 152626MB  at ata0-master UDMA100
acd0: DVDR  at ata1-master UDMA33
acd1: CDRW  at ata1-slave UDMA33
SMP: AP CPU #1 Launched!
hwpmc: TSC/1/0x20 K8/4/0x1ff
Trying to mount root from ufs:/dev/ad0s1a
cd0 at ata1 bus 0 target 0 lun 0
cd0: <_NEC DVD_RW ND-3500AG 2.16> Removable CD-ROM SCSI-0 device 
cd0: 33.000MB/s transfers
cd0: Attempt to query device size failed: NOT READY, Medium not present
cd1 at ata1 bus 0 target 1 lun 0
cd1:  Removable CD-ROM SCSI-0 device 
cd1: 33.000MB/s transfers
cd1: Attempt to query device size failed: NOT READY, Medium not present - tray 
closed
sis0: Applying short cable fix (reg=6)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: USB MODEM

2006-04-18 Thread Lowell Gilbert
"FreeBSD MailingLists" <[EMAIL PROTECTED]> writes:

> I purchased a usb modem recently and connected it to my FreeBSD box to see
> if it is compatible.
> I have recompiled my kernel with
> device ucom
> device umodem
> 
> When I connect the modem I get the following kernel message.
> 
> ucom0: OMRON OMRON ME5614U2 DATA FAX MODEM, rev 1.10/1.00, addr 2, iclass
> 2/2
> ucom0: data interface 1, has CM over data, has break
> ucom0: Could not find data bulk in
> 
> Is there anyway to get this modem working with FreeBSD?

Do you know it isn't?
Have you checked whether it created any terminal devices?
[I've forgotten exactly what the tty-like device name is.]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: boot0: is booting from non-BIOS-recognized disk possible?

2006-04-18 Thread Lowell Gilbert
Amanda Babcock Furrow <[EMAIL PROTECTED]> writes:

> I have read the boot0cfg, disklabel (I have FreeBSD 4.9), and fdisk 
> manpages trying to figure out if boot0 can solve my problem.  I did
> not find the answer there, or in http://www.freebsd.org/doc/faq/disks.html
> or the freebsd-questions archives.
> 
> I would like to be able to boot from my Seagate ST3120814A, which is
> not compatible with my BIOS (Award Modular BIOS v4.51PG, BIOS string
> 08/21/97-580VPX-VIA83669-2A5LD000C-00, VT 580VX MMX motherboard).  
> The BIOS, for which no update was ever issued, will hang during disk
> detection unless I disable the Seagate by setting it to "None" in
> the BIOS (as opposed to "Auto" and "User", which hang).  However,
> once I boot FreeBSD from an older disk, the Seagate is detected as 
> /dev/ad3 and partitions from it can be mounted.
> 
> I understand that boot0 can be configured to boot from a second disk
> using the -s 5 argument of boot0cfg.  However, the boot0cfg man page 
> does not go into great detail.  Can boot0 boot from a disk which is 
> disabled in BIOS but accessible from FreeBSD, or only from disks which 
> the BIOS is able to detect?

The latter.  It can, however, use the "packet interface" as well as
the old cylinder-based BIOS interface; perhaps that will work for you.

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


RE: server hardware

2006-04-18 Thread Jean-Paul Natola
>From what I'm seeing , as far as pricing,  a decent case is running about
150, cpu/mobo combo 250,  add  memory (150) , a pair of sata drives (120),
and pci raid (40) ,  and I'm  approaching 700 dollars. It *seems*  (correct
me if I'm wrong, or maybe I'm looking in the wrong places) these tigerdirect
specials for 600+ dollars  would be the most effective/

 



From: Derek Ragona [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 18, 2006 9:44 AM
To: Jean-Paul Natola; Richard Collyer; freebsd-questions@freebsd.org
Subject: RE: server hardware

 

Data centers charge for space in rack units per month.  So a 2 unit case is
more rental than a one unit model.

If you want to build it yourself, which will be most cost effective, and rack
space rental cost is not an issue, I would suggest getting a 3 unit case.  A
three unit case will take any motherboard and CPU.  Smaller 1 unit and 2 unit
cases are constricted by their size and heat dissipation and usually are
limited to only certain motherboard and CPU combinations.  Also depending on
what type of hard drive system you want (RAID, or just a drive or two) the
larger cases are more flexible.

-Derek


At 08:25 AM 4/18/2006, Jean-Paul Natola wrote:



The box that currently runs is an old dimension, 400 mhz mirrored IDE 256
ram, so anything / everything out there on the market  will be improvement,
as far as putting it together I can most certainly do it,  if it will be
cost-effective, plus I love the thought of it.

I'm not following you entirely on the " pay more for rental but less for the
box" , can you elaborate a bit on that?

-Original Message-
From: Richard Collyer [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 17, 2006 4:57 PM
To: Jean-Paul Natola; freebsd-questions@freebsd.org
Subject: Re: server hardware

Jean-Paul Natola wrote:
> Hi all,
> 
> I'm looking to move my bsd box to a 1u rack (running out of room under the
> desk) 
> 
> The least expensive one I came across at dell is 900, can someone suggest ,
a
> more cost effective alternative?

Cost. Specs needed parts you can put in yourself. Need more info.

Why not go 2U and pay more for rental but less for the box and 
equipment. You can always check on ebay for 1u cases on the cheap.

Cheers
Richard
___
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: can not su

2006-04-18 Thread Lowell Gilbert
dharam paul <[EMAIL PROTECTED]> writes:

> I have by mistake removed /var/lib/
> Now can not su or login as root.
> Any remedy please,

/var/lib does not exist on a stock system.
Maybe you removed something else?  
Do you know what?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


can not su

2006-04-18 Thread dharam paul
I have by mistake removed /var/lib/
Now can not su or login as root.
Any remedy please,

Regards



__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Zimmerman, Eric
> ive used squirrelmail for quite a while, and i just want to make sure
i
> have my mind as open as possible here.  are there any other choices
for
> webmail that are about as easy as SM to configure, but offer a better
user
> interface or experience?
> 
> ive heard of horde, but ive not seen it since early 2000 or so, and
even
> then, when i tried to set it up, it was a complete and total failure.
> 

I used SM for a LONG time and recently switched to Horde. I like it A
LOT better. Sure it was more work to get going, but its not terrible.
They just fixed the horde ports so that your config doesn't get renamed
when you upgrade, so that's a good thing!

Start with horde and imp only, get that working, then add the other
horde modules as you need them.

The thing with SM is that it doesn't get updated enough (for me
anyways). Sure little security updates, but theres been no movement on
1.5 in forever.  

Horde has a TON of features, is fast, looks nice, handles procmail
filters, etc.

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


Re: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Peter

--- Jonathan Horne <[EMAIL PROTECTED]> wrote:

> ive used squirrelmail for quite a while, and i just want to make sure
> i
> have my mind as open as possible here.  are there any other choices
> for
> webmail that are about as easy as SM to configure, but offer a better
> user
> interface or experience?
> 
> ive heard of horde, but ive not seen it since early 2000 or so, and
> even
> then, when i tried to set it up, it was a complete and total failure.
> 
> so, any other recommendations for webmail besides squirrelmail?

Well are you the sole user or is this for supporting a pool of users? 
You choice should reflect who will actually be using the system.  I use
SM and it has been fine.  I run it on a fairly slow system (400 MHz) so
I expect it to be sluggish.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Problem Restoring Dump Via Fixit Environment in FreeBSD 6.0 Release Boot Cdrom

2006-04-18 Thread John Nielsen
On Tuesday 18 April 2006 00:17, Brian McKeon wrote:
> Hello I'm having a problem restoring my backup of my FreeBSD
> installation. I recently upgraded hardrives in my laptop and made
> backups of my Gentoo and FreeBSD partitions. Gentoo restored with no
> troubles BSD however... I have made a dump of my filesystems and copied
> them onto an Ext2fs USB drive. When I boot with the 6.0 Release CDrom
> and run FIXIT to try and restore the dumps I run into problems. While I
> know the system detects the USB device, and fdisk -s (or is it l I get
> linux/unix command lines screwed up when I'm not at the prompt...)
> detects a linux native partition on the drive that seems to be as far as
> the system will allow me to go.
>
> mount /dev/da0s1 /foobar fails with superblock errors (obviously)
> mount -t ext2fs /dev/da0s1 /foobar fails with mount_ext2fs not found in
> /usr/sbin (perhaps /sbin)
>
> when I got to /mnt2/usr/sbin (think thats the right path, i know ls
> ./mount_ext2fs finds the file in the path but if its ./usr/sbin or
> ./sbin I can't recall) and run ./mount_ext2fs /dev/da0s1 /foobar I get
> operation not supported by device.
>
> fixit won't even let me mount my linux boot drive (same sets of errors)
> so I know it isn't just failing because of the USB device.
>
> The running system allowed me to mount to drive and write to it or I
> wouldn't have the dumps on it, but I can't figure out why Fixit won't
> let me use the drive for more then a paperweight. All the googling I've
> done says just boot and mount the ext2 partition...
>
> }--> My question is what is going wrong here? Do I have to make a
> symlink to mount_ext2fs to the path that mount -t xxx blah wants to see
> that program? Or am I just cursed? I figured restoring a backup would be
> pretty simple but Fixit doesn't seem to want to cooperate.To date this
> is my only serious issue with FreeBSD, but I would say it is quite the
> issue to have. All my previous restores occurred with a running FreeBSD
> system and the "new" drive somewhere else in the chain, but my Laptop
> supports only the one drive (well without rigging up somekind of
> adapters to add a slave port connection... not on my to do list) I could
> get the adapters and make the restore with my desktop but the whole
> point for me was being able to easily restore my laptop from
> catastrophic failure on the road, short of running the thing over that is.

One thing you need to make sure of when using the Fixit CD is that the kernel 
can find the necessary modules for whatever you're trying to do.  In the case 
of ntfs.ko and smbfs.ko (and I presume ext2fs.ko), this doesn't happen by 
default.  To fix this, change the kernel's module path from the minimal one 
in the MFS root to the complete one included on the CD:

sysctl kern.module_path="/dist/boot/kernel"

Then try your mount_ext2fs command again.

Also, remember to check the "debug" console (Alt-F2) to see if there are any 
kernel messages that might shed additional light on the problem.

Good luck, and please post again even if just to say "it worked".

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


Re: Newbie question -- which files to back up?

2006-04-18 Thread Derek Ragona
The short answer is to backup the files you want to save.  As a general 
rule, I suggest backing up:


/etc
/usr/local/etc
/usr/local/www

The last one assumes you have some website(s).

If you are also worried about email, if you are using the standard 
sendmail, also backup:


/var/mail

I would suggest you create separate compressed tar volumes for your 
backups, then you can restore them individually if you need to.


-Derek


At 02:53 AM 4/16/2006, Oliver Iberien wrote:

I'm running FreeBSD 6.0 on a home machine and backing up to a DVD Burner,
probably using kdar, the dar archiver that comes with KDE.

My question is : which system files to back up, along with my personal stuff?
I'm used to using linux distributions that do your system backups for you.
The capacity of the DVDs sets a practical limit on what I can reasonably back
up, so I need to pick and choose, basically to make recovery easier should
everything go south. Thanks!

Oliver
___
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: Is Squirrelmail the best webmail choice?

2006-04-18 Thread albi
Jonathan Horne wrote:

> ive used squirrelmail for quite a while, and i just want to make sure i
> have my mind as open as possible here.  are there any other choices for
> webmail that are about as easy as SM to configure, but offer a better user
> interface or experience?
> 
> ive heard of horde, but ive not seen it since early 2000 or so, and even
> then, when i tried to set it up, it was a complete and total failure.
> 
> so, any other recommendations for webmail besides squirrelmail?

depends on what you want, sqwebmail has a lot less features than
squirrelmail but it's certainly faster

running sqwebmail within a jail gave me some annoying smtp-problems though

if you have mbox-style mailboxes you can try openwebmail, it has a lot
of features http://openwebmail.org/

(all in the ports)

-- 
grtjs, albi
gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Out of memory during ridiculously large request

2006-04-18 Thread Lowell Gilbert
"Roger Williams" <[EMAIL PROTECTED]> writes:

> Since an upgrade to 6.0 (perl 5.8.8) I am getting the following error:
> 
> >>Out of memory during ridiculously large request at
> /usr/local/pop-before-smtp-1.36/pop-before-smtp line 355
> 
> Below is the offending line:
> 
> >> foreach (keys %db)
> 
> While googling I see there are other programs having the same issue.  Any
> ideas on how to get perl/freebsd to let the program work?

Did you do the perl-after-upgrade step, as the upgrade instructions
suggested?  It sure looks like one of your perl ports hasn't been
updated appropriately; you could always rebuild all of them to be sure.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: server hardware

2006-04-18 Thread Derek Ragona
Data centers charge for space in rack units per month.  So a 2 unit case is 
more rental than a one unit model.


If you want to build it yourself, which will be most cost effective, and 
rack space rental cost is not an issue, I would suggest getting a 3 unit 
case.  A three unit case will take any motherboard and CPU.  Smaller 1 unit 
and 2 unit cases are constricted by their size and heat dissipation and 
usually are limited to only certain motherboard and CPU combinations.  Also 
depending on what type of hard drive system you want (RAID, or just a drive 
or two) the larger cases are more flexible.


-Derek


At 08:25 AM 4/18/2006, Jean-Paul Natola wrote:

The box that currently runs is an old dimension, 400 mhz mirrored IDE 256
ram, so anything / everything out there on the market  will be improvement,
as far as putting it together I can most certainly do it,  if it will be
cost-effective, plus I love the thought of it.

I'm not following you entirely on the " pay more for rental but less for the
box" , can you elaborate a bit on that?

-Original Message-
From: Richard Collyer [mailto:[EMAIL PROTECTED]
Sent: Monday, April 17, 2006 4:57 PM
To: Jean-Paul Natola; freebsd-questions@freebsd.org
Subject: Re: server hardware

Jean-Paul Natola wrote:
> Hi all,
>
> I'm looking to move my bsd box to a 1u rack (running out of room under the
> desk)
>
> The least expensive one I came across at dell is 900, can someone suggest ,
a
> more cost effective alternative?

Cost. Specs needed parts you can put in yourself. Need more info.

Why not go 2U and pay more for rental but less for the box and
equipment. You can always check on ebay for 1u cases on the cheap.

Cheers
Richard
___
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: Is Squirrelmail the best webmail choice?

2006-04-18 Thread Terry Lewis
Squirrelmail is probably the best webmail client I have used. I have tried 
others but always went back to SM.

On Tuesday 18 April 2006 14:42, Jonathan Horne wrote:
> ive used squirrelmail for quite a while, and i just want to make sure i
> have my mind as open as possible here.  are there any other choices for
> webmail that are about as easy as SM to configure, but offer a better user
> interface or experience?
>
> ive heard of horde, but ive not seen it since early 2000 or so, and even
> then, when i tried to set it up, it was a complete and total failure.
>
> so, any other recommendations for webmail besides squirrelmail?
>
> thanks,
> Jonathan Horne
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

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


Re: Jails CPU / RAM accounting?

2006-04-18 Thread Nicklas B. Westerlund

Philippe Lang wrote:

Hi,
  


Hi there,


Since there is no way (at least I know of) to limit RAM or CPU in a jail, is
there a way to monitor and do some accounting on jails CPU / RAM used?



You might want to take a look at login.conf.
(perhaps cputime, memoryuse, memorylocked and perhaps others)

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


Is Squirrelmail the best webmail choice?

2006-04-18 Thread Jonathan Horne
ive used squirrelmail for quite a while, and i just want to make sure i
have my mind as open as possible here.  are there any other choices for
webmail that are about as easy as SM to configure, but offer a better user
interface or experience?

ive heard of horde, but ive not seen it since early 2000 or so, and even
then, when i tried to set it up, it was a complete and total failure.

so, any other recommendations for webmail besides squirrelmail?

thanks,
Jonathan Horne

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


Re: nvnet fails to make

2006-04-18 Thread Lowell Gilbert
jekillen <[EMAIL PROTECTED]> writes:

> I hope this would be appropriate for this list,
> I have just downloaded the distfile for the nvnet network interface
> card built in to a Gigabyte motherboard.
> The make command aborted with an avalanche of errors, see attachment.
> Does anyone have any info that would help me correct this situation so
> I can get my network up on this
> connection?

The port is broken.  

I'm guessing that there is some kind of aliasing expected for the
structure members, but I haven't spent enough time to understand 
how the device structures are supposed to work.

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


Re: Text files going double lined

2006-04-18 Thread Derek Ragona
Usually this is a result of the wrong end-of-line characters being used, 
depending on what the output device expects.


In UNIX, end-of-line is just a line-feed, in MS-DOS/Windows end-of-line is 
a carriage-return line-feed pair.


You may need to change the end-of-line characters to suit your needs and 
output device.


-Derek

At 08:10 AM 4/18/2006, Kyrre Nygard wrote:


Hello,

Does anybody know why text files sometime go double lined?
That is, there somehow getting one empty line in between every line.

I work with a lot of people across many platforms and I find it very annoying
when large pieces of code or language gets doubled up like that.

Would anyone happen to know how to then:

1) Reduce all empty single lines to no lines
2) Reduce all empty double lines to a single line

To restore things?

Thanks,
Kyrre

___
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]"


Jails CPU / RAM accounting?

2006-04-18 Thread Philippe Lang
Hi,

We sell virtual private server hosting, on a FreeBSD 6.0 server. We have a
client interested in our offer, but his applications are apprently quite CPU
and RAM intensive.

Since there is no way (at least I know of) to limit RAM or CPU in a jail, is
there a way to monitor and do some accounting on jails CPU / RAM used?

Thanks,

--
Philippe Lang, Ing. Dipl. EPFL
Attik System
rte de la Fonderie 2
1700 Fribourg
Switzerland
http://www.attiksystem.ch

Tel:  +41 (26) 422 13 75
Fax:  +41 (26) 422 13 76 


smime.p7s
Description: S/MIME cryptographic signature


Re: "DansGuardian Webmin Module"

2006-04-18 Thread Andrew Pantyukhin
On 4/18/06, tethys ocean <[EMAIL PROTECTED]> wrote:
> Hi All
>
> I need a Dansguardian Webmin module. İt server in SourceForce (
> http://sourceforge.net/projects/dgwebminmodule/)
> But I couldnt understand wbm extention file.  I checked my server with
> dg-0.5.10-pr5.wbm
>
>
> # file  dg-0.5.10-pr5.wbm
> 
> #dg-0.5.10-pr5.wbm
> :
> gzip compressed data, from UNIX
>
> so  I couldnt recognize this file extention and  also how I can extract this
> file...
>
> I havent got any document about  extraction and also instruction or  man
> page  about "DansGuardian Webmin Module"
>
> thanks a lot
>
>  *  * *
> *
>
> *
> *
>
>
>
>
>
> I check in my server file
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>
>

From http://www.webmin.com/faq.html :

How do I install new modules?

Once you have downloaded a new module as a .wbm file,
enter the Webmin Configuration module and click on the
Webmin Modules button. Then use the form at the top of the
page to install the module either from the local filesystem of
the server Webmin is running on, or uploaded from the client
your browser is on.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: rc.local

2006-04-18 Thread Jerry McAllister
> 
> in my freebsd 6.0 there is no "rc.local" ,
> how i can get rc.local ??

You would have to create one.   But, most of the things people
used to put in to rc.local on FreeBSD have been changed and are
handled in other ways or are put other places.   So, rc.local 
isn't so often used any more.Check out /usr/local/etc/rc.d,
for example.

But, if you just have to have an rc.local for some reason of your
own, then just use a text editor (vi) and create it.   Just make
sure what you are doing with it doesn't conflict with any of the
more modern ways of doing things.   You might need to ask about
specific items - where they go now or how they are now handled - 
that you used to see in rc.local.

jerry

> 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]"


RE: server hardware

2006-04-18 Thread Jean-Paul Natola
The box that currently runs is an old dimension, 400 mhz mirrored IDE 256
ram, so anything / everything out there on the market  will be improvement,
as far as putting it together I can most certainly do it,  if it will be
cost-effective, plus I love the thought of it.

I'm not following you entirely on the " pay more for rental but less for the
box" , can you elaborate a bit on that?

-Original Message-
From: Richard Collyer [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 17, 2006 4:57 PM
To: Jean-Paul Natola; freebsd-questions@freebsd.org
Subject: Re: server hardware

Jean-Paul Natola wrote:
> Hi all,
> 
> I'm looking to move my bsd box to a 1u rack (running out of room under the
> desk) 
> 
> The least expensive one I came across at dell is 900, can someone suggest ,
a
> more cost effective alternative?

Cost. Specs needed parts you can put in yourself. Need more info.

Why not go 2U and pay more for rental but less for the box and 
equipment. You can always check on ebay for 1u cases on the cheap.

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


Text files going double lined

2006-04-18 Thread Kyrre Nygard


Hello,

Does anybody know why text files sometime go double lined?
That is, there somehow getting one empty line in between every line.

I work with a lot of people across many platforms and I find it very annoying
when large pieces of code or language gets doubled up like that.

Would anyone happen to know how to then:

1) Reduce all empty single lines to no lines
2) Reduce all empty double lines to a single line

To restore things?

Thanks,
Kyrre

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


RE: Routing problem

2006-04-18 Thread Nicholas von Waltsleben
In answer to my own question.  When I disable the firewall on the server
the routing issue is instantly resolved.  However for 90% of the time
the firewall runs without any apparent problems... I will start a new
thread of conversation and ask my now firewall related problem.  Sorry
for my apparent thickness :)

> Hi,
>
> I am running a 5.4 box as a gateway server / firewall / mail relay at
> our company.  Previously we had a 4.3-beta server which although
> horribly outdated hardly ever gave us any problems.  Since replacing
it
> with a Dell 850 and installing 5.4 I have experienced intermittent
> routing issues. The box will stop routing traffic correctly (I have
> included the output of a ping below).  I initially thought that the
box
> was just dropping the packets but after running a trafshow I saw that
> this was not the case.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Gmail vs FreeBSD

2006-04-18 Thread Andrew Pantyukhin
On 4/18/06, Daniel A. <[EMAIL PROTECTED]> wrote:
> Same problem. I didnt recieve any emails from the FreeBSD lists
> between April 14'th and 07:40 this morning (GMT+1)

I wonder if there are any evil giggles at googleplex...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


"DansGuardian Webmin Module"

2006-04-18 Thread tethys ocean
Hi All

I need a Dansguardian Webmin module. İt server in SourceForce (
http://sourceforge.net/projects/dgwebminmodule/)
But I couldnt understand wbm extention file.  I checked my server with
dg-0.5.10-pr5.wbm


# file  dg-0.5.10-pr5.wbm

#dg-0.5.10-pr5.wbm
:
gzip compressed data, from UNIX

so  I couldnt recognize this file extention and  also how I can extract this
file...

I havent got any document about  extraction and also instruction or  man
page  about "DansGuardian Webmin Module"

thanks a lot

 *  * *
*

*
*





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

Re: Gmail vs FreeBSD

2006-04-18 Thread Daniel A.
On 4/16/06, Andrew Pantyukhin <[EMAIL PROTECTED]> wrote:
> So what's up with gmail and freebsd sites? I haven't
> seen a single message delivered to my inbox since
> April 13. Not from mailing lists, not from gnats scripts -
> nothing.
>
> I told the lists to send mail to my other address, I then
> redirect from there back to gmail - and it works. So
> gmail seems to block direct communications from the
> freebsd servers only.
>
> And I'm not the only one to experience this:
> http://lists.freebsd.org/pipermail/freebsd-questions/2006-April/119155.html
>
> I've written to gmail support directly and through their
> forums, but haven't yet received anything except for
> the automated replies telling me that I'm an idiot and
> pointing me to their faqs.
>
> I understand that if a problem of this magnitude stays
> unresolved for more than 72 hours, I should probably
> be looking for another mail service. What would you
> suggest? I've already signed up for Yahoo Beta, but
> it's not clear when I will receive the invitation.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>
Same problem. I didnt recieve any emails from the FreeBSD lists
between April 14'th and 07:40 this morning (GMT+1)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: /tmp question

2006-04-18 Thread Chuck Swiger

Super Daemon wrote:

I think I may have a lost a file.  I placed it in /tmp and rebooted
the server. Now it is no longer there. Is the file recoverable at
all???


The simple answer is no.

But if you're willing to spend anywhere from $500 to perhaps $2000 for 
professional forensic drive analysis, a specialist company might be able to 
recover the lost data.


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


Re: Gmail vs FreeBSD

2006-04-18 Thread Joao Barros
I stopped receiving email from any of the FreeBSD lists I'm subscribed
to on the 13th and started receiving again late last night.
As I can recall this is the 3rd time this has happened, the previous
blackout was for about 2 days.
I checked all the major RBLs and freebsd.org wasn't listed in any of them.

On 4/18/06, David Stanford <[EMAIL PROTECTED]> wrote:
> Andrew,
>
> Yes, this was all very odd...I hadn't received a single message from either
> -questions or -announce all day. Only an hour or so ago did they begin to
> all flood in...
>
> -David
>
> On 4/16/06, Andrew Pantyukhin <[EMAIL PROTECTED]> wrote:
> >
> > So what's up with gmail and freebsd sites? I haven't
> > seen a single message delivered to my inbox since
> > April 13. Not from mailing lists, not from gnats scripts -
> > nothing.
> >
> > I told the lists to send mail to my other address, I then
> > redirect from there back to gmail - and it works. So
> > gmail seems to block direct communications from the
> > freebsd servers only.
> >
> > And I'm not the only one to experience this:
> >
> > http://lists.freebsd.org/pipermail/freebsd-questions/2006-April/119155.html
> >
> > I've written to gmail support directly and through their
> > forums, but haven't yet received anything except for
> > the automated replies telling me that I'm an idiot and
> > pointing me to their faqs.
> >
> > I understand that if a problem of this magnitude stays
> > unresolved for more than 72 hours, I should probably
> > be looking for another mail service. What would you
> > suggest? I've already signed up for Yahoo Beta, but
> > it's not clear when I will receive the invitation.
> > ___
> > 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]"
>


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


Re: /boot at beginning of drive

2006-04-18 Thread Giorgos Keramidas
On 2006-04-17 17:18, David J Brooks <[EMAIL PROTECTED]> wrote:
> > http://users.rcn.com/rneswold/fbsd-init.html#AEN258
>
> I stand corrected. I can still envision problems if tmp files use enough space
> to prevent a memory swap. Running out of swap space is not healthy.

That's why swap-backed /tmp filesystems have a `size'.  To make sure
they can't exceed it :)

If, knowing all this, you still plan for a very small swap space, then
you are right that problems will start creeping up very fast.

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


  1   2   >