Release schedule

2015-04-01 Thread Martin Birgmeier
Dear community,

I have a question regarding the scheduling of releases.

All of my production machines are currently running releng/10.1. This
release has at least two severe (for me) problems:
- An external USB 3.0 HD enclosure never negotiates successfully for USB
3.0 when connected. This worked better in 9.2 (PR:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196332)
- A serious kernel memory allocation issue involving VirtualBox which
did not exist in 9.2 (PR:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195970)

At least the first one might already be corrected in stable/10, but, the
release engineering page https://www.freebsd.org/releng/index.html tells
me that 10.2 is planned only for November 2015 (and 11.0 for July 2016).

So my question is, would it be possible to have a somewhat less
drawn-out release schedule? Maybe at fixed times twice during the year,
so that a certain rhythm will evolve?

Regards,

Martin


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


Re: Trying to clone a ZFS drive, can't get ashift=12

2015-04-01 Thread Dimitry Andric
On 01 Apr 2015, at 06:30, Daniel Eischen deisc...@freebsd.org wrote:
 
 I have an Oracle (nee Sun) X4-2 server with identical 300GB SAS
 drives.  I did an MBR ZFS install from FreeBSD 10.1-RELEASE CD
 and have it updated to p6:
...
  # zpool create -o cachefile=/tmp/newpool.cache bootpoolNew label/boot0
  # zdb -U /tmp/newpool.cache | grep ashift
  ashift: 9
 
 What gives?  How do I get it to use 4k?

sysctl vfs.zfs.min_auto_ashift=12

And also put that in your /etc/sysctl.conf.  I don't know why it isn't
the default yet... :)

-Dimitry



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: Trying to clone a ZFS drive, can't get ashift=12

2015-04-01 Thread Peter Wemm
On Wednesday, April 01, 2015 12:30:46 AM Daniel Eischen wrote:
 I have an Oracle (nee Sun) X4-2 server with identical 300GB SAS
 drives.  I did an MBR ZFS install from FreeBSD 10.1-RELEASE CD
 and have it updated to p6:
[..]
# zpool create -o cachefile=/tmp/newpool.cache bootpoolNew label/boot0
# zdb -U /tmp/newpool.cache | grep ashift
ashift: 9
 
 What gives?  How do I get it to use 4k?

Before creating the pool, try:
#  sysctl vfs.zfs.min_auto_ashift=12

But watch your alignment of the MBR slices/partitions. I think you'll find it 
easier to manage with gpt for a data disk, eg:

# gpart create -s gpt da1
# gpart add -t freebsd-zfs -a 4k da1
combine that with the sysctl above you should have everything on 4k.

Setting -a just sets the rounding for the start/end sectors, it doesn't affect 
zfs when its sizing the sector size internally.

btw; for a 300G drive you might not want 4k - this changes the base allocation 
size to be 8 times larger.  You might find your space efficiency less than 
ideal 
if you have a lot of tiny files.


-- 
Peter Wemm - pe...@wemm.org; pe...@freebsd.org; pe...@yahoo-inc.com; KI6FJV
UTF-8: for when a ' or ... just won\342\200\231t do\342\200\246
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: epair on 9-stable

2015-04-01 Thread Bjoern A. Zeeb

 On 31 Mar 2015, at 21:31 , Johannes Totz johan...@jo-t.de wrote:
 
 Hi,
 
 Is epair (virtual ethernet) supposed to work on 9-stable?
 I'm having trouble with it.
 I want to connect one end to a bridge, e.g.:
 
 bge0 === bridge0 === epair0a --- epair0b
 
 and run dhclient on epair0b.
 But nothing comes through, not even on epair0a.
 bridge0 itself receives packets.
 No firewall involved.
 
 Any ideas?

Just checking, are all interfaces UP?


— 
Bjoern A. Zeeb  Charles Haddon Spurgeon:
Friendship is one of the sweetest joys of life.  Many might have failed
 beneath the bitterness of their trial  had they not found a friend.

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

Re: [CFT] Call for testing pkg 1.5.0

2015-04-01 Thread David Chisnall
On 1 Apr 2015, at 05:03, Rui Paulo rpa...@me.com wrote:
 
 That is expected.  WITH_PKG=devel is a make(1) option that only affects ports 
 (non-binary pkgs).

Are you sure?  I have it in make.conf on one of my systems where I never build 
ports manually (and don't even have a ports tree installed) and there I get 
this:

$ pkg -v
1.4.99.13

In a jail on the same machine without the make.conf entry, I get the stable 
version.  This is how I've been testing pkg-devel for a while.  Is there a 
different recommended way?

David

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


Re: [CFT] Call for testing pkg 1.5.0

2015-04-01 Thread Baptiste Daroussin
On Wed, Apr 01, 2015 at 11:48:27AM +, Thomas Mueller wrote:
 Excerpt from Baptiste Daroussin:
 
 - Initial support for OS X
 - Initial support for NetBSD/EdjeBSD
 
 How would pkg-1.5.0 integrate with NetBSD pkgsrc?
 
 I didn't think there were any plans to port FreeBSD ports to NetBSD.  Or is 
 such a plan in the works?
 
There are people looking at integrating pkg with pkgsrc yes, don't know the
status, (pkg is already in pkgsrc-wip but no further integration for what I do
know

And yes you are right it is EdgeBSD not EdjeBSD sorry.

Best regards,
Bapt


pgpwv8cOvqD9U.pgp
Description: PGP signature


Re: [CFT] Call for testing pkg 1.5.0

2015-04-01 Thread Thomas Mueller
Excerpt from Baptiste Daroussin:

- Initial support for OS X
- Initial support for NetBSD/EdjeBSD

How would pkg-1.5.0 integrate with NetBSD pkgsrc?

I didn't think there were any plans to port FreeBSD ports to NetBSD.  Or is 
such a plan in the works?

EdjeBSD should be EdgeBSD.  A little spelling error can be critical when trying 
to find something on the Internet.

Web site is edgebsd.org (I just went there).

Tom

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


pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-01 Thread Zenny
Hi,

1. In order to comply with the pkgng in FreeBSD 10.1, the following changes
were appended to my customized nanobsd.conf:

customize_cmd cust_NANOBSD_setup

 cust_NANOBSD_packages() {
 chroot ${NANO_WORLDDIR} sh -c 'cd packages; pkg; pkg install nano; pkg
 clean;'
 }

 customize_cmd cust_NANOBSD_packages


Certainly I had tuned chrooted /etc/resolv.conf with:

#tune resolv.conf
 echo '
 nameserver 8.8.8.8
 nameserver 8.8.4.4
 '  ${NANO_WORLDDIR}/etc/resolv.conf


Still the package cannot be downloaded from PACKAGESITE and got built into
nanobsd image.

2. Also tried with:

cust_pkg() {
 pkg -c ${NANO_WORLDDIR} update
 pkg -c ${NANO_WORLDDIR} install nano
 pkg -c ${NANO_WORLDDIR} clean
 }

 customize_cmd cust_pkg


Both ways, I get the same error that reads as of below:

cd: packages: No such file or directory
 pkg: Error fetching
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No
 address record
 A pre-built version of pkg could not be found for your system.
 Consider changing PACKAGESITE or installing it from ports:
 'ports-mgmt/pkg'.
 The package management tool is not yet installed on your system.
 Do you want to fetch and install it now? [y/N]: Bootstrapping pkg from pkg+
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait...
 pkg: Error fetching
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No
 address record
 A pre-built version of pkg could not be found for your system.
 Consider changing PACKAGESITE or installing it from ports:
 'ports-mgmt/pkg'.
 The package management tool is not yet installed on your system.
 Do you want to fetch and install it now? [y/N]: Bootstrapping pkg from pkg+
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait...
 pkg: Error fetching
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No
 address record
 A pre-built version of pkg could not be found for your system.
 Consider changing PACKAGESITE or installing it from ports:
 'ports-mgmt/pkg'.
 The package management tool is not yet installed on your system.
 Do you want to fetch and install it now? [y/N]: Bootstrapping pkg from pkg+
 http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait...


 Any hint on how to get over to this problem. Thanks!

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


Re: [CFT] Call for testing pkg 1.5.0

2015-04-01 Thread Baptiste Daroussin
On Wed, Apr 01, 2015 at 01:56:38PM +0100, David Chisnall wrote:
 On 1 Apr 2015, at 05:03, Rui Paulo rpa...@me.com wrote:
  
  That is expected.  WITH_PKG=devel is a make(1) option that only affects 
  ports (non-binary pkgs).
 
 Are you sure?  I have it in make.conf on one of my systems where I never 
 build ports manually (and don't even have a ports tree installed) and there I 
 get this:
 
 $ pkg -v
 1.4.99.13
 
 In a jail on the same machine without the make.conf entry, I get the stable 
 version.  This is how I've been testing pkg-devel for a while.  Is there a 
 different recommended way?
 
That is because you enforced installing pkg-devel one day via:
pkg install pkg-devel
probably

then it will stay on pkg-devel :) pkg itself is not aware of make.conf

Best regards
Bapt


pgp6UBoFxwzrv.pgp
Description: PGP signature


Daniel Kelles invited you to check out Dropbox

2015-04-01 Thread Dropbox via freebsd-stable
Hi there,

Daniel Kelles wants you to try Dropbox! Dropbox lets you bring all your photos, 
docs and videos with you anywhere and share them easily.

Get started here.
https://www.dropbox.com/l/s6jN8bqyJT9Q0CzL3huhhr?text=1

Thanks!
- The Dropbox Team


To stop receiving invites from Dropbox, please go to 
https://www.dropbox.com/l/19oo1DfxJGE4l8upN3sduj?text=1
Dropbox, Inc., PO Box 77767, San Francisco, CA 94107
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Jenkins build is back to normal : FreeBSD_stable_9 #730

2015-04-01 Thread jenkins-admin
See https://jenkins.freebsd.org/job/FreeBSD_stable_9/730/changes

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


Re: Trying to clone a ZFS drive, can't get ashift=12

2015-04-01 Thread Daniel Eischen

On Tue, 31 Mar 2015, Peter Wemm wrote:


On Wednesday, April 01, 2015 12:30:46 AM Daniel Eischen wrote:

I have an Oracle (nee Sun) X4-2 server with identical 300GB SAS
drives.  I did an MBR ZFS install from FreeBSD 10.1-RELEASE CD
and have it updated to p6:

[..]

   # zpool create -o cachefile=/tmp/newpool.cache bootpoolNew label/boot0
   # zdb -U /tmp/newpool.cache | grep ashift
   ashift: 9

What gives?  How do I get it to use 4k?


Before creating the pool, try:
#  sysctl vfs.zfs.min_auto_ashift=12


Thanks, and to Dmitri also.  This seemed to do the trick.

It is interesting that the default in the 10.1-RELEASE
CD doesn't match the actual OS that is installed.


But watch your alignment of the MBR slices/partitions. I think you'll find it
easier to manage with gpt for a data disk, eg:

# gpart create -s gpt da1
# gpart add -t freebsd-zfs -a 4k da1
combine that with the sysctl above you should have everything on 4k.

Setting -a just sets the rounding for the start/end sectors, it doesn't affect
zfs when its sizing the sector size internally.

btw; for a 300G drive you might not want 4k - this changes the base allocation
size to be 8 times larger.  You might find your space efficiency less than ideal
if you have a lot of tiny files.


The server is a web server and poudriere package builder, with some
postgres and mysql databases as backends for the web services.  We
don't anticipate user data or home/project directories.

My first ZFS install was Solaris 11, which recommended (mandated?)
that rpool be from a slice not an entire disk, and boot from
an SMI (VTOC) disk.  So I followed the same convention when
installing FreeBSD.

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