How to mark an interace as 'down' at boot time?

2010-03-28 Thread Modulok
Trivial question,

Is there an rc.conf way to mark a network interface as being 'down' at
boot time? I could do it with a cron job, or a kernel rebuild, but I
thought there'd be some nifty rc.conf syntax. I tried this:

ifconfig_bge0=down

The interface is marked as down in the dmesg output, but it's still up
when the boot cycle completes.
-Modulok-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: How to mark an interace as 'down' at boot time?

2010-03-28 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 28/03/2010 09:51:50, Modulok wrote:
 Trivial question,
 
 Is there an rc.conf way to mark a network interface as being 'down' at
 boot time? I could do it with a cron job, or a kernel rebuild, but I
 thought there'd be some nifty rc.conf syntax. I tried this:
 
 ifconfig_bge0=down
 
 The interface is marked as down in the dmesg output, but it's still up
 when the boot cycle completes.

Hmmm... normally, you'ld just leave any extra NICs unconfigured.  Not
plugging a cable in generally makes the OS believe the NIC is down.

You can tell the OS the i/f shouldn't be configured by:

ifconfig_bge0=NOAUTO

but that will probably still leave the i/f up if a cable is attached.

In this case, you could try using both of:

ifconfig_bge0=down
ipv6_ifconfig_bge0=ifdisabled down

(rc.conf syntax for IPv6 is different in CURRENT, but I assume you're
not using that.)

Cheers,

Matthew

- -- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW
-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.14 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkuvMHUACgkQ8Mjk52CukIy8VQCfc3SscGvP7qiQX7bfcyzK2vGg
/bAAni5N/FRil82YtLcLPcf6CDuXcqiz
=vLKH
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FOR MARK

2009-05-05 Thread cpghost
On Tue, May 05, 2009 at 07:25:47AM +1000, Warren Liddell wrote:
 After finally managing to get some encoding options from this list 
 everything went smoothley untill it got to the burning part .. below is 
 the error i got
 
 enterprise# ls
 dvd.iso
 enterprise# growisofs -dvd-video -Z /dev/cd1 dvd.iso

1. you probably meant -dvd-compat instead of -dvd-video
2. for premastered isos, use this syntax: -Z /dev/cd1=dvd1.iso
   (don't forget the = sign)

 What am i missing//not doing correctly ?

-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


FOR MARK

2009-05-04 Thread Warren Liddell
After finally managing to get some encoding options from this list 
everything went smoothley untill it got to the burning part .. below is 
the error i got


enterprise# ls
dvd.iso
enterprise# growisofs -dvd-video -Z /dev/cd1 dvd.iso
WARNING: /dev/cd1 already carries isofs!
About to execute 'mkisofs -dvd-video dvd.iso | builtin_dd of=/dev/pass1
obs=32k seek=0'
mkisofs: Unable to make a DVD-Video image.
:-( write failed: Input/output error

enterprise# growisofs -dvd-video -Z /dev/cd0 dvd.iso
Executing 'mkisofs -dvd-video dvd.iso | builtin_dd of=/dev/pass0 obs=32k
seek=0'
mkisofs: Unable to make a DVD-Video image.
:-( write failed: Input/output error

What am i missing//not doing correctly ?


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


Re: FOR MARK

2009-05-04 Thread Polytropon
On Tue, 05 May 2009 07:25:47 +1000, Warren Liddell shin...@maydias.com wrote:
 After finally managing to get some encoding options from this list 
 everything went smoothley untill it got to the burning part .. below is 
 the error i got
 
 enterprise# ls
 dvd.iso
 enterprise# growisofs -dvd-video -Z /dev/cd1 dvd.iso

Hmmm... my growisofs doesn't have -dvd-video (only -dvd-compat),
so google(geowisofs -dvd-compat); and I found:

The -dvd-video option will be passed down to mkisofs(8)
and will instruct it to create a DVD-Video file system
layout. Beside this, the -dvd-video option implies -dvd-compat
growisofs(1) option.

Source:

http://www.freebsd.org/doc/en/books/handbook/creating-dvds.html
18.7.4

It seems that -dvd-video has to be given if you've NOT mastered
an ISO file already, read: when you work with the source files.



 WARNING: /dev/cd1 already carries isofs!

Not a blank media?



 About to execute 'mkisofs -dvd-video dvd.iso | builtin_dd of=/dev/pass1
 obs=32k seek=0'
 mkisofs: Unable to make a DVD-Video image.
 :-( write failed: Input/output error

The mkisofs tools seems to require the source files for the ISO
to be created, it cannot create a video DVD ISO file from a video
DVD ISO file.



 What am i missing//not doing correctly ?

Missing: Reading the handbook.
Not doing correctly: Command line options.
:-)




-- 
Polytropon
From Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FOR MARK

2009-05-04 Thread Warren Liddell

What am i missing//not doing correctly ?



Missing: Reading the handbook.
Not doing correctly: Command line options.
:-)
  
I'll skip a lot of steps then an just use the standard growisofs for img 
files since DVStyler creates the DVD Video IMG once you've imported the 
mpeg file


/
/

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


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-05 Thread Gabriel Lavoie
That's strange, because I enabled the reporting on my system but its CPU
that wasn't on the list didn't appear.

Gabriel

2008/11/4 Marc G. Fournier [EMAIL PROTECTED]

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1



 - --On Tuesday, November 04, 2008 12:25:39 -0500 Gabriel Lavoie
 [EMAIL PROTECTED] wrote:

  When are the stats updated on bsdstats.org?

 real-time ... and they aren't for all time, the #s are based on systems
 reporting in over the past 60 days, so you will periodically see a bit of
 back
 tracking, depending on when in the cycle hosts reported in ... if I reload
 the
 page a few times, I may see it go from 25 013 - 25 103 - 25 143 - 25 140
 ...
 but the overall is an upward increase in numbers ...


 
  Thanks
 
  Gabriel
 
  2008/11/4 Marc G. Fournier [EMAIL PROTECTED]
 
  On Wed, 5 Nov 2008, andrew clarke wrote:
 
   On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier ([EMAIL PROTECTED]
 )
  wrote:
 
   For FreeBSD users, you just need to install
 /usr/ports/sysutils/bsdstats
  to set things up.
 
 
  I stopped using bsdstats after it caused my FreeBSD router to take too
  long to boot up after a reboot.  If I recall correctly, I had
  bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
  was called before ppp was able to start, so it couldn't connect to the
  bsdstats server.  On the other hand this was a while ago and I am
  going by memory, so I may be wrong about what happened or it was just
  a coincidence.  At the time I was more interested in getting the
  router running so I didn't really care for debugging what was going
  on.  I realise this is a bit of a vague bug report, so feel free to
  ignore it.
 
 
  There is an optional flag for 'reporting on reboot' ... the original
 script
  only did reporting monthly, out of periodic, but some ppl (ie. using
  laptops) suggesting an optional flag so that when they rebooted, they
 would
  be counted also ...
 
  And you are correct, just change:
 
  bsdstats_enable=YES
 
  to
 
  bsdstats_enable=NO
 
  And 'on reboot' will eb disabled, and only periodic will be used ... at
 a
  minimum, you just need:
 
  monthly_statistics_enable=YES
 
  in /etc/periodic.conf, wich will only report OS/version and skip the
  devices/ports reports ...
 
  
  Marc G. Fournier   Hub.Org Networking Services (
 http://www.hub.org
  )
  Email . [EMAIL PROTECTED]  MSN .
 [EMAIL PROTECTED]
  Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 
 
 
 
  --
  Gabriel Lavoie
  [EMAIL PROTECTED]
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
 [EMAIL PROTECTED]



 - --
 Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org
 )
 Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.9 (FreeBSD)

 iEYEARECAAYFAkkRHfcACgkQ4QvfyHIvDvMP1gCfWcuWqCGNWSR5HuGSO4vgRwLb
 Y0EAn3+Pi3/1+eM/mxmKFrF7AFTMQBbv
 =yRDb
 -END PGP SIGNATURE-




-- 
Gabriel Lavoie
[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: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-05 Thread Gabriel Lavoie
Good, my system finally appeared.

Gabriel

2008/11/5 Gabriel Lavoie [EMAIL PROTECTED]

 That's strange, because I enabled the reporting on my system but its CPU
 that wasn't on the list didn't appear.


 Gabriel

 2008/11/4 Marc G. Fournier [EMAIL PROTECTED]

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1



 - --On Tuesday, November 04, 2008 12:25:39 -0500 Gabriel Lavoie
 [EMAIL PROTECTED] wrote:

  When are the stats updated on bsdstats.org?

 real-time ... and they aren't for all time, the #s are based on systems
 reporting in over the past 60 days, so you will periodically see a bit of
 back
 tracking, depending on when in the cycle hosts reported in ... if I reload
 the
 page a few times, I may see it go from 25 013 - 25 103 - 25 143 - 25
 140 ...
 but the overall is an upward increase in numbers ...


 
  Thanks
 
  Gabriel
 
  2008/11/4 Marc G. Fournier [EMAIL PROTECTED]
 
  On Wed, 5 Nov 2008, andrew clarke wrote:
 
   On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier (
 [EMAIL PROTECTED])
  wrote:
 
   For FreeBSD users, you just need to install
 /usr/ports/sysutils/bsdstats
  to set things up.
 
 
  I stopped using bsdstats after it caused my FreeBSD router to take too
  long to boot up after a reboot.  If I recall correctly, I had
  bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
  was called before ppp was able to start, so it couldn't connect to the
  bsdstats server.  On the other hand this was a while ago and I am
  going by memory, so I may be wrong about what happened or it was just
  a coincidence.  At the time I was more interested in getting the
  router running so I didn't really care for debugging what was going
  on.  I realise this is a bit of a vague bug report, so feel free to
  ignore it.
 
 
  There is an optional flag for 'reporting on reboot' ... the original
 script
  only did reporting monthly, out of periodic, but some ppl (ie. using
  laptops) suggesting an optional flag so that when they rebooted, they
 would
  be counted also ...
 
  And you are correct, just change:
 
  bsdstats_enable=YES
 
  to
 
  bsdstats_enable=NO
 
  And 'on reboot' will eb disabled, and only periodic will be used ... at
 a
  minimum, you just need:
 
  monthly_statistics_enable=YES
 
  in /etc/periodic.conf, wich will only report OS/version and skip the
  devices/ports reports ...
 
  
  Marc G. Fournier   Hub.Org Networking Services (
 http://www.hub.org
  )
  Email . [EMAIL PROTECTED]  MSN .
 [EMAIL PROTECTED]
  Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 
 
 
 
  --
  Gabriel Lavoie
  [EMAIL PROTECTED]
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
 [EMAIL PROTECTED]



 - --
 Marc G. FournierHub.Org Hosting Solutions S.A. (
 http://www.hub.org)
 Email . [EMAIL PROTECTED]  MSN .
 [EMAIL PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.9 (FreeBSD)

 iEYEARECAAYFAkkRHfcACgkQ4QvfyHIvDvMP1gCfWcuWqCGNWSR5HuGSO4vgRwLb
 Y0EAn3+Pi3/1+eM/mxmKFrF7AFTMQBbv
 =yRDb
 -END PGP SIGNATURE-




 --
 Gabriel Lavoie
 [EMAIL PROTECTED]




-- 
Gabriel Lavoie
[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: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-04 Thread andrew clarke
On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier ([EMAIL PROTECTED]) wrote:

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

I stopped using bsdstats after it caused my FreeBSD router to take too
long to boot up after a reboot.  If I recall correctly, I had
bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
was called before ppp was able to start, so it couldn't connect to the
bsdstats server.  On the other hand this was a while ago and I am
going by memory, so I may be wrong about what happened or it was just
a coincidence.  At the time I was more interested in getting the
router running so I didn't really care for debugging what was going
on.  I realise this is a bit of a vague bug report, so feel free to
ignore it.

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


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-04 Thread Marc G. Fournier

On Wed, 5 Nov 2008, andrew clarke wrote:


On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier ([EMAIL PROTECTED]) wrote:


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


I stopped using bsdstats after it caused my FreeBSD router to take too
long to boot up after a reboot.  If I recall correctly, I had
bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
was called before ppp was able to start, so it couldn't connect to the
bsdstats server.  On the other hand this was a while ago and I am
going by memory, so I may be wrong about what happened or it was just
a coincidence.  At the time I was more interested in getting the
router running so I didn't really care for debugging what was going
on.  I realise this is a bit of a vague bug report, so feel free to
ignore it.


There is an optional flag for 'reporting on reboot' ... the original 
script only did reporting monthly, out of periodic, but some ppl (ie. 
using laptops) suggesting an optional flag so that when they rebooted, 
they would be counted also ...


And you are correct, just change:

bsdstats_enable=YES

to

bsdstats_enable=NO

And 'on reboot' will eb disabled, and only periodic will be used ... at a 
minimum, you just need:


monthly_statistics_enable=YES

in /etc/periodic.conf, wich will only report OS/version and skip the 
devices/ports reports ...



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-04 Thread Gabriel Lavoie
When are the stats updated on bsdstats.org?

Thanks

Gabriel

2008/11/4 Marc G. Fournier [EMAIL PROTECTED]

 On Wed, 5 Nov 2008, andrew clarke wrote:

  On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier ([EMAIL PROTECTED])
 wrote:

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


 I stopped using bsdstats after it caused my FreeBSD router to take too
 long to boot up after a reboot.  If I recall correctly, I had
 bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
 was called before ppp was able to start, so it couldn't connect to the
 bsdstats server.  On the other hand this was a while ago and I am
 going by memory, so I may be wrong about what happened or it was just
 a coincidence.  At the time I was more interested in getting the
 router running so I didn't really care for debugging what was going
 on.  I realise this is a bit of a vague bug report, so feel free to
 ignore it.


 There is an optional flag for 'reporting on reboot' ... the original script
 only did reporting monthly, out of periodic, but some ppl (ie. using
 laptops) suggesting an optional flag so that when they rebooted, they would
 be counted also ...

 And you are correct, just change:

 bsdstats_enable=YES

 to

 bsdstats_enable=NO

 And 'on reboot' will eb disabled, and only periodic will be used ... at a
 minimum, you just need:

 monthly_statistics_enable=YES

 in /etc/periodic.conf, wich will only report OS/version and skip the
 devices/ports reports ...

 
 Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org
 )
 Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664

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




-- 
Gabriel Lavoie
[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: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-04 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



- --On Tuesday, November 04, 2008 12:25:39 -0500 Gabriel Lavoie 
[EMAIL PROTECTED] wrote:

 When are the stats updated on bsdstats.org?

real-time ... and they aren't for all time, the #s are based on systems 
reporting in over the past 60 days, so you will periodically see a bit of back 
tracking, depending on when in the cycle hosts reported in ... if I reload the 
page a few times, I may see it go from 25 013 - 25 103 - 25 143 - 25 140 ... 
but the overall is an upward increase in numbers ...



 Thanks

 Gabriel

 2008/11/4 Marc G. Fournier [EMAIL PROTECTED]

 On Wed, 5 Nov 2008, andrew clarke wrote:

  On Mon 2008-11-03 18:33:57 UTC-0400, Marc G. Fournier ([EMAIL PROTECTED])
 wrote:

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


 I stopped using bsdstats after it caused my FreeBSD router to take too
 long to boot up after a reboot.  If I recall correctly, I had
 bsdstats_enable=YES in /etc/rc.conf and after the reboot bsdstats
 was called before ppp was able to start, so it couldn't connect to the
 bsdstats server.  On the other hand this was a while ago and I am
 going by memory, so I may be wrong about what happened or it was just
 a coincidence.  At the time I was more interested in getting the
 router running so I didn't really care for debugging what was going
 on.  I realise this is a bit of a vague bug report, so feel free to
 ignore it.


 There is an optional flag for 'reporting on reboot' ... the original script
 only did reporting monthly, out of periodic, but some ppl (ie. using
 laptops) suggesting an optional flag so that when they rebooted, they would
 be counted also ...

 And you are correct, just change:

 bsdstats_enable=YES

 to

 bsdstats_enable=NO

 And 'on reboot' will eb disabled, and only periodic will be used ... at a
 minimum, you just need:

 monthly_statistics_enable=YES

 in /etc/periodic.conf, wich will only report OS/version and skip the
 devices/ports reports ...

 
 Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org
 )
 Email . [EMAIL PROTECTED]  MSN . [EMAIL 
 PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664

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




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



- -- 
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)

iEYEARECAAYFAkkRHfcACgkQ4QvfyHIvDvMP1gCfWcuWqCGNWSR5HuGSO4vgRwLb
Y0EAn3+Pi3/1+eM/mxmKFrF7AFTMQBbv
=yRDb
-END PGP SIGNATURE-

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


BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Marc G. Fournier


As of November 3rd, 2008, the project has hit a new milestone of 25 000+ hosts 
reporting in, with a break down as follows:


  PC-BSD   17 454 hosts
  FreeBSD   5 526 hosts
  DesktopBSD1 919 hosts
  NetBSD   86 hosts
  MirBSD   21 hosts
  OpenBSD  55 hosts
  DragonFly26 hosts
  MidnightBSD  26 hosts
  GNU/kFreeBSD  2 hosts

We currently have hosts being reported in from 135 countries, with the top 10
being:

  United States   6 082
  Russian Federation  1 836
  Germany 1 586
  Australia   1 341
  Ukraine   997
  France930
  Japan 898
  United Kingdom791
  Canada767
  Brazil729

Project URL: http://www.bsdstats.org

Project Objective:

The mission of this site is to compile semi-accurate numbers for advocacy and
marketing of the *BSD operating systems.


PC-BSD, to the best of our knowledge, is the only one that defaults to enabled, 
while the rest have to be enabled manually.


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


If you aren't participating, we very much encourage you to start ... the report 
script is a shell script, so you can scan it to figure out what, exactly, is 
being sent in .. and there is only one level of reporting that is  required, 
and that is Operating System + Version ... Device and Ports reporting are 100% 
optional ...


For those that are participating ... once more, thank you ... and spread the
word, we need more ...


If you have any questions, please feel free to email me ...

--
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664

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


RE: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Don Witt
This is very cool.  What is up with NetBSD and OpenBSD.  Are these numbers
accurate?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marc G. Fournier
Sent: Monday, November 03, 2008 2:34 PM
To: freebsd-questions@freebsd.org; [EMAIL PROTECTED];
[EMAIL PROTECTED]; [EMAIL PROTECTED]; Thorsten Glaser;
Gonzalo Martinez - Sanjuan Sanchez;
[EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In


As of November 3rd, 2008, the project has hit a new milestone of 25 000+
hosts 
reporting in, with a break down as follows:

   PC-BSD   17 454 hosts
   FreeBSD   5 526 hosts
   DesktopBSD1 919 hosts
   NetBSD   86 hosts
   MirBSD   21 hosts
   OpenBSD  55 hosts
   DragonFly26 hosts
   MidnightBSD  26 hosts
   GNU/kFreeBSD  2 hosts

We currently have hosts being reported in from 135 countries, with the top
10
being:

   United States   6 082
   Russian Federation  1 836
   Germany 1 586
   Australia   1 341
   Ukraine   997
   France930
   Japan 898
   United Kingdom791
   Canada767
   Brazil729

Project URL: http://www.bsdstats.org

Project Objective:

The mission of this site is to compile semi-accurate numbers for advocacy
and
marketing of the *BSD operating systems.


PC-BSD, to the best of our knowledge, is the only one that defaults to
enabled, 
while the rest have to be enabled manually.

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

If you aren't participating, we very much encourage you to start ... the
report 
script is a shell script, so you can scan it to figure out what, exactly, is

being sent in .. and there is only one level of reporting that is  required,

and that is Operating System + Version ... Device and Ports reporting are
100% 
optional ...

For those that are participating ... once more, thank you ... and spread the
word, we need more ...


If you have any questions, please feel free to email me ...

-- 
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-advocacy
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: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Glen Barber
On Mon, Nov 3, 2008 at 6:12 PM, Don Witt [EMAIL PROTECTED] wrote:
 This is very cool.  What is up with NetBSD and OpenBSD.  Are these numbers
 accurate?

As far as I know, these numbers can only be accurate if the
administrator enables (installs?) stats reporting.

You can add 1 to FreeBSD, because I don't allow stats reporting.  :)


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


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Murray Stokely
[BCCed others]

On Mon, Nov 3, 2008 at 3:12 PM, Don Witt [EMAIL PROTECTED] wrote:
 This is very cool.  What is up with NetBSD and OpenBSD.  Are these numbers
 accurate?

These numbers represent the number of people that have installed a
program to report usage, and are almost completely uncorrelated with
actual usage rates.  There needs to be a big warning at the top of
these very misleading reports.  Also, the massive spam to many
different lists is not ideal.  Any guess at actual usage numbers
would be many orders of magnitude larger, and PC-BSD would be a
rounding error to other BSDs used in large hosting environments
(nothing against the great work being done by PC-BSD, just a fact
based on desktop vs server focus).

I continue to believe that sending out these numbers which massively
undercount all operating systems is very counter-productive, but I've
said that before.

If you want to get better numbers you could try to survey all web
servers on the internet, identify the host operating systems by server
responses, tcp/ip timing characteristics, or other heuristics.  You
could alternatively mine google analytics  / webserver log data for
large websites if you want client numbers, or countless other data
sources that would give you far more data than this self reporting
mechanism, and with a much better sample than the very biased
mechanism used for these numbers.

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


RE: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Its a voluntary reporting ... I know with both PC-BSD, reporting is on by 
default .. with FreeBSD, its a simple 'make install' in ports ... with 
NetBSD/OpenBSD, I suspect its purely manual, so a bit more work involved ...

Both NetBSD / OpenBSD #s have been increasing though, just not as fast as the 
others ...

- --On Monday, November 03, 2008 15:12:46 -0800 Don Witt [EMAIL PROTECTED] 
wrote:

 This is very cool.  What is up with NetBSD and OpenBSD.  Are these numbers
 accurate?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Marc G. Fournier
 Sent: Monday, November 03, 2008 2:34 PM
 To: freebsd-questions@freebsd.org; [EMAIL PROTECTED];
 [EMAIL PROTECTED]; [EMAIL PROTECTED]; Thorsten Glaser;
 Gonzalo Martinez - Sanjuan Sanchez;
 [EMAIL PROTECTED]; [EMAIL PROTECTED];
 [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In


 As of November 3rd, 2008, the project has hit a new milestone of 25 000+
 hosts
 reporting in, with a break down as follows:

PC-BSD   17 454 hosts
FreeBSD   5 526 hosts
DesktopBSD1 919 hosts
NetBSD   86 hosts
MirBSD   21 hosts
OpenBSD  55 hosts
DragonFly26 hosts
MidnightBSD  26 hosts
GNU/kFreeBSD  2 hosts

 We currently have hosts being reported in from 135 countries, with the top
 10
 being:

United States   6 082
Russian Federation  1 836
Germany 1 586
Australia   1 341
Ukraine   997
France930
Japan 898
United Kingdom791
Canada767
Brazil729

 Project URL: http://www.bsdstats.org

 Project Objective:

 The mission of this site is to compile semi-accurate numbers for advocacy
 and
 marketing of the *BSD operating systems.


 PC-BSD, to the best of our knowledge, is the only one that defaults to
 enabled,
 while the rest have to be enabled manually.

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

 If you aren't participating, we very much encourage you to start ... the
 report
 script is a shell script, so you can scan it to figure out what, exactly, is

 being sent in .. and there is only one level of reporting that is  required,

 and that is Operating System + Version ... Device and Ports reporting are
 100%
 optional ...

 For those that are participating ... once more, thank you ... and spread the
 word, we need more ...


 If you have any questions, please feel free to email me ...

 --
 Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
 Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664

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




- -- 
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)

iEYEARECAAYFAkkPoWYACgkQ4QvfyHIvDvNjvACeJvROm9YrnENUroh5EF1BsGKw
0YsAoMIQoRnBnkFwGTcZG2cv/4KlkDmF
=blyH
-END PGP SIGNATURE-

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


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



- --On Tuesday, November 04, 2008 01:10:02 +0100 Bernt Hansson 
[EMAIL PROTECTED] wrote:

 Marc G. Fournier skrev:
 As of November 3rd, 2008, the project has hit a new milestone of 25 000+
 hosts  reporting in, with a break down as follows:

 There are errors on your homepage

 6,072 is a lot less then 500.

Pardon?  I don't see either # on the home page .. *puzzled look*




- -- 
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)

iEYEARECAAYFAkkPo3EACgkQ4QvfyHIvDvP3CwCeOE++67wohEqs0ahwWyMtFPpo
UgAAn2vgaNlYDqSba42ztrSg8CtSyc8/
=s18z
-END PGP SIGNATURE-

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


Re: BSDstats: New High Water Mark: 25 000+ Hosts Reporting In

2008-11-03 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



- --On Monday, November 03, 2008 16:01:41 -1000 Al Plant [EMAIL PROTECTED] 
wrote:


 Aloha,

 I have 10 FreeBSD servers and desktops in use here in Hawaii.

 These are not on the list as I only have 4 servers that are up 24/7 and they
 are fire walled off with pf.

 The 6 others are on a lan behind a Linux Freesco Firewall. Only 2 on 24/7 the
 rest are on an as used boot up basis.

 How can I get them Listed?

Using FreeBSD as a reference point, the port, when it installs, allows you to 
enable two methods of reporting: monthly (out of periodic) and on reboot ... so 
that covers the 4 that aren't up 24/7 ...

Next, the reporting is not based on your IP ... in fact, to try and address 
security concerns, we do not store any information such as IP or hostname ... 
when you run the stats the first time, it generates a distinct key that is used 
for reporting and is stored on your host for future reporting to identify you 
...

Finally, for those dealing with firewalls, the script was written to make use 
of a PROXY server for reporting, so that no holes have to be opened up for an 
individual host to connect to the rver ...


- -- 
Marc G. FournierHub.Org Hosting Solutions S.A. (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)

iEYEARECAAYFAkkPtZsACgkQ4QvfyHIvDvNo4wCeJ3diXiZkazxtM1t9wLTb5tc7
uvgAoIxbMIEG2w3V6uvQBMW+dY7i7nn5
=MUtC
-END PGP SIGNATURE-

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


Re: how to mark a slice bootable using command line

2005-04-25 Thread jonas
I'm still stuck with this.. C'mon folks, there must be someone who knows how 
to do sysinstalls 'Set Bootable' command using command line.

It all comes down to:
I got four slices containing a FreeBSD installation. I can only boot the 
first. Hitting F2, F3 or F4 in the bootmanager gives me a beep, nothing more. 
If I run sysinstall, choose Configure, Fdisk, da0, hit the 'S' key (Set 
Bootable) once for every slice and write those Changes I can boot into any 
of those installations.

Now I have read the man pages for fdisk and bsdlabel a couple of times, still 
I cannot figure out how to set this bootable flag using those tools (not that 
I didn't try all kinds of things like writing bootstrap code, setting active 
partitions, etc...). There must be a way to do this without sysinstall!?

Sadly my knowledge in C is more than limited... I can see that sysinstall does 
'chunk_info[current_chunk]-flags |= CHUNK_ACTIVE;' when I hit the S key but 
that's about it.

Any pointer would be very much appreciated.

Thanks in advance, first mail follows,

On Friday 22 April 2005 19:04, jonas wrote:
 Hi again questions list,

 I'm running into trouble installing a FreeBSD system from script using a
 custom FreeSBIE (sysutils/freesbie).

 I'm using
 `fdisk -f configfile /dev/da0`
 to partition my da0 disk into four even-sized slices,
 `boot0cfg -B /dev/da0`
 to install the bootmanager to da0,
 `disklabel -R /dev/da0s$c protofile`
 to create partitions (which is called four times with $c being 1-4),
 `newfs -O2 -U /dev/da0s$c$p`
 to create filesystems (where $p is a, d and e - /tmp will be a memory disk,
 there is no -U for a)
 and finally untar the OS onto the new filesystems.

 Everything goes fine, except, I cannot boot from any slice other then the
 first (F1 entry in bootman). Any other choice will simply have the speaker
 beep. Obviously the slices are not marked bootable.

 Now if I launch sysinstall and choose Configure, Fdisk, da0, I can set the
 bootable flag to those four slices. Obviously, in sysinstall this is
 somehow linked to being the active slice, since it shows an 'A' next to the
 slice and only one A can be set at a time.

 So I tried to use `fdisk -a -2` to setting slice 2 bootable, without
 success. Also tried to set the slice bootable by using the -B switch to
 disklabel, also, without success.

 Furthermore I cannot figure out any difference to the output of fdisk and
 disklabel after using sysinstall, other than my slice of choice if now
 bootable.

 So... how can I set this bootable flag by using command line tools like
 fdisk and disklabel without the need of user input. Sadly the handbook
 refers only to sysinstall...

 Thanks in advance for any pointers,

-- 
br.
j.
___
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 mark a slice bootable using command line

2005-04-25 Thread jonas
On Monday 25 April 2005 18:01, Don Brearley wrote:
 What about boot0cfg -s 2 da0 ?

This sets the second slice to be the default entry in the bootmanager on next 
startup. Usefull, but it does not set the bootable flag to the slice.

So... negative.. but thanks anyway.

-- 
br.
j.
___
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 mark a slice bootable using command line

2005-04-25 Thread Alejandro Pulver
On Mon, 25 Apr 2005 18:15:11 +0200
jonas [EMAIL PROTECTED] wrote:

 On Monday 25 April 2005 18:01, Don Brearley wrote:
  What about boot0cfg -s 2 da0 ?
 
 This sets the second slice to be the default entry in the bootmanager
 on next startup. Usefull, but it does not set the bootable flag to the
 slice.
 
 So... negative.. but thanks anyway.
 
 -- 
 br.
 j.

Hello,

This is from fdisk(8):

CONFIGURATION FILE

[...]

a slice

Make slice the active slice.  Can occur anywhere in the config file, but
only one must be present.

Example: to make slice 1 the active slice:

a 1

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


how to mark a slice bootable using command line

2005-04-22 Thread jonas
Hi again questions list,

I'm running into trouble installing a FreeBSD system from script using a 
custom FreeSBIE (sysutils/freesbie).

I'm using
`fdisk -f configfile /dev/da0`
to partition my da0 disk into four even-sized slices,
`boot0cfg -B /dev/da0`
to install the bootmanager to da0,
`disklabel -R /dev/da0s$c protofile`
to create partitions (which is called four times with $c being 1-4),
`newfs -O2 -U /dev/da0s$c$p`
to create filesystems (where $p is a, d and e - /tmp will be a memory disk, 
there is no -U for a)
and finally untar the OS onto the new filesystems.

Everything goes fine, except, I cannot boot from any slice other then the 
first (F1 entry in bootman). Any other choice will simply have the speaker 
beep. Obviously the slices are not marked bootable.

Now if I launch sysinstall and choose Configure, Fdisk, da0, I can set the 
bootable flag to those four slices. Obviously, in sysinstall this is somehow 
linked to being the active slice, since it shows an 'A' next to the slice and 
only one A can be set at a time.

So I tried to use `fdisk -a -2` to setting slice 2 bootable, without success.
Also tried to set the slice bootable by using the -B switch to disklabel, 
also, without success.

Furthermore I cannot figure out any difference to the output of fdisk and 
disklabel after using sysinstall, other than my slice of choice if now 
bootable.

So... how can I set this bootable flag by using command line tools like fdisk 
and disklabel without the need of user input. Sadly the handbook refers only 
to sysinstall...

Thanks in advance for any pointers,

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


Trouble installing Endeavour Mark 2 from source.

2003-10-03 Thread Dragoncrest
I decided to give up on Konquer as a file manager (sucks royally
anyways) and switch to Endeavour.  The version 1.x is kinda lame so I
went to try and install the Mark II 2.x version from the source on the
homepage.  It won't install.  I did what it said to do for freebsd and
configure said that all was good minus an option file that was missing.
 So I went and did Make All like it said and it complained about 2 key
files missing.  So I go up into the Endeavour directory and tried to
build it directly from there.  It says that the first file it wants to
build is missing.

Can anyone help me get this installed?  Or do I have to write the ports
people to have them do a port of this for the ports tree?  I'd realy
like to start using this soon if possible.  Thanks.

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