Re: Several minor annoyances on Current

2014-07-31 Thread Beeblebrox
hm, I have similar experience with 10-stable see http://lists.freebsd.org/pipermail/freebsd-questions/2014-July/259067.html Thankfully, my boot time is not so severe. I have no ideas to help however. * preventing coredump files: setting in ~/.cshrc below does not work. What is the correct

Re: Several minor annoyances on Current

2014-07-30 Thread Gabor Radnai
Hi, * I have a kernel with all witness/debug code disabled, and the zfs root is on a Sata3-SSD. The boot process seems a little slow to me and I'm curious as to possible reasons. Other than disabling debug, what else can I do to speed-up boot process (CPU: AMD Phenom II X4 B60 3415.38-MHz

Re: Several minor annoyances on Current

2014-07-26 Thread Beeblebrox
@ Ian: I added your code and rebuilt the kernel. /boot/loader.conf also has vfs.nfs.bootp_disable=YES Previously described problem persists. SEPARATE KBD_KEYMAP ISSUE: The keymap for keyboard fails to be set from rc.conf with keymap=fr.iso.kbd Boot message shows this but there is no record of the

Re: Several minor annoyances on Current

2014-07-26 Thread Lars Engels
On Sat, Jul 26, 2014 at 02:03:09AM -0700, Beeblebrox wrote: @ Ian: I added your code and rebuilt the kernel. /boot/loader.conf also has vfs.nfs.bootp_disable=YES Previously described problem persists. SEPARATE KBD_KEYMAP ISSUE: The keymap for keyboard fails to be set from rc.conf with

Re: Several minor annoyances on Current

2014-07-26 Thread Stefan Esser
Am 26.07.2014 um 13:24 schrieb Lars Engels: On Sat, Jul 26, 2014 at 02:03:09AM -0700, Beeblebrox wrote: @ Ian: I added your code and rebuilt the kernel. /boot/loader.conf also has vfs.nfs.bootp_disable=YES Previously described problem persists. SEPARATE KBD_KEYMAP ISSUE: The keymap for

Re: Several minor annoyances on Current

2014-07-26 Thread Lars Engels
On Sat, Jul 26, 2014 at 03:18:27PM +0200, Stefan Esser wrote: Am 26.07.2014 um 13:24 schrieb Lars Engels: On Sat, Jul 26, 2014 at 02:03:09AM -0700, Beeblebrox wrote: @ Ian: I added your code and rebuilt the kernel. /boot/loader.conf also has vfs.nfs.bootp_disable=YES Previously described

Re: Several minor annoyances on Current

2014-07-26 Thread Ian Lepore
On Sat, 2014-07-26 at 02:03 -0700, Beeblebrox wrote: @ Ian: I added your code and rebuilt the kernel. /boot/loader.conf also has vfs.nfs.bootp_disable=YES Previously described problem persists. It needs to be set to =1, not =YES. -- Ian SEPARATE KBD_KEYMAP ISSUE: The keymap for keyboard

Re: Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
Damian Weber wrote: is there ifconfig_em0=DHCP or anything like that in your rc.conf? No, network related rc.conf entries: network_interfaces=lo0 re0 re1 ifconfig_lo0=inet 127.0.0.1/24 ifconfig_re0=inet 192.168.1.10/24 ifconfig_re1=inet 192.168.2.1/24 gateway_enable=YES

Re: Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
Kurt Jaeger wrote: Can you check whether one of your ethernet-ports has a double life as IPMI port and that one sends out the DHCP ? No such setup. This is my workstation, with wake-on-lan and pxe-boot disabled in bios. Checking boot messages provides a little more insight - Its not one but

Re: Several minor annoyances on Current

2014-07-25 Thread Ian Lepore
On Fri, 2014-07-25 at 05:04 -0700, Beeblebrox wrote: Kurt Jaeger wrote: Can you check whether one of your ethernet-ports has a double life as IPMI port and that one sends out the DHCP ? No such setup. This is my workstation, with wake-on-lan and pxe-boot disabled in bios. Checking boot

Re: Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
... in retrospect I can think of several good reasons to turn off bootp on a per-boot basis. The attached patch provides a knob for that, I'll commit it if there are no objections. Thanks - a knob in /boot/loader.conf as vfs.nfs.bootp_disable=YES should do nicely. Regards. -

Re: Several minor annoyances on Current

2014-07-25 Thread Benjamin Kaduk
On Fri, 25 Jul 2014, Beeblebrox wrote: Hello. Several questions for 11-Current: * I keep getting appname.core (gedit.core, midori.core, etc) files being created either in /home/myuser or in the folder I run the command in on terminal emulator (for example if I'm in ~/mydocs on terminal and run

Re: Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
Hi This seems like a job for ulimit. Damien pointed that out as: ulimit -c 0 Though, I would be more curious about why your applications are crashing so as to generate core files in the first place. Well, this MAJOR annoyance lies somewhere between Radeon-KMS and gnome3's graphics/cairo.

Re: Several minor annoyances on Current

2014-07-25 Thread Stephen Hurd
Beeblebrox wrote: Hello. Several questions for 11-Current: * I keep getting appname.core (gedit.core, midori.core, etc) files being created either in /home/myuser or in the folder I run the command in on terminal emulator (for example if I'm in ~/mydocs on terminal and run $ gedit filename,

Re: Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
Hi I use this in /etc/sysctl.conf: kern.corefile=/tmp/cores/%N.core In rc.conf I have clear_tmp_enable=YES I would have used tmpfs for /tmp but my zpool/tmp is on an SSD which gives about the same result as far as /tmp is concerned. The ulimit setting seems to have solved it. -