zpool requires re-import on reboot

2013-11-17 Thread Beeblebrox
I have root on zfs, which mounts fine on start. I have two other pools, which do not get mounted and must be imported each time. Boot falls to single-user mode because it cannot find the zfs-related mounts for the two pools in question. The zpool import does not require the -f flag to import, but

Re: zpool requires re-import on reboot

2013-11-18 Thread Beeblebrox
Do have zfs_enable=YES in rc.conf? Yes, and my ZFS root mounts without problem. Also in /boot/loader.conf: zfs_load=YES opensolaris_load=YES vfs.root.mountfrom=zfs:bsds #- #_ZFS_PERFORMANCE #I have 4G of Ram vfs.zfs.prefetch_disable=0 #Ram 4GB = 512. Ram 8GB = value 1024

Re: zpool requires re-import on reboot

2013-11-18 Thread Beeblebrox
Is there anything non-standard about your configuration? All pools that are present in /boot/zfs/zpool.cache on a root filesystem of a root pool should be automatically imported. Yes I know that, hence the reason I posted. ll /boot/zfs shows recently updated zpool.cache = -rw-r--r-- 1 root

Re: zpool requires re-import on reboot

2013-11-19 Thread Beeblebrox
Alan: This corrects the zpool import problem (thanks for that): zpool_cache_type=/boot/zfs/zpool.cache zpool_cache_name=/boot/zfs/zpool.cache But boot still drops to single user and needs zfs mount -a to locate the fstab entries. Some datasets have canmount=noauto (but have a corresponding fstab

Re: zpool requires re-import on reboot

2013-11-20 Thread Beeblebrox
My apologies, please disregard last message - problem was an error on my part. - FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS -- View this message in context: http://freebsd.1045724.n5.nabble.com/zpool-requires-re-import-on-reboot-tp5861930p5862468.html Sent from the freebsd-current

ZFS: sharenfs and zdb no such file errors

2013-11-26 Thread Beeblebrox
I had a previously discussed zpool related error on my susytem: (http://freebsd.1045724.n5.nabble.com/zpool-requires-re-import-on-reboot-td5861930.html#a5862468). This may be related. Now a different but equally odd error: On one of the pools with the import problem (poolname=da), I had: zfs set

Re: ZFS: sharenfs and zdb no such file errors

2013-11-26 Thread Beeblebrox
NFS related config for ZFS is stored in /etc/zfs/exports and mountd just reads that in addition to the usual /etc/exports you might want to check there Awesome, pal!! Editing that file cleared it all up. Thanks. - FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS -- View this message in

Buildworld breaks at libpcap

2012-06-16 Thread Beeblebrox
uname -a: FreeBSD 9.0-STABLE #0 r235991: Sat May 26 14:20:06 EEST 2012 amd64 - Custom Kernel buildworld breaks very eloquently at libpcap. Error message depends on whether ccache is enabled or clang is disabled in /etc/src.conf, as given below: WITHOUT_ACCT= yes WITHOUT_APM= yes WITHOUT_AUTHPF=

Re: Re[2]: AHCI timeout when using ZFS + AIO + NCQ

2013-01-27 Thread Beeblebrox
I once ran into a very severe AHCI timeout problem. After months of trying to figure it out and insane Hardware_ECC_Recovered error values, I found that the error was with the power connector plug / sata HDD interface. All errors disappeared after replacing that cable. Since you have error on more

ccache selects wrong compiler (calls clang, not gcc46)

2013-01-27 Thread Beeblebrox
I had posted this problem in the freebsd-ports section of the mailing list, but I got no answer. When I posted, I was using 9-Stable with clang-only world. (http://freebsd.1045724.n5.nabble.com/ccache-selects-wrong-compiler-calls-clang-not-gcc46-td5775609.html) I recently switched to 10-current

distcc does not work with clang

2013-02-26 Thread Beeblebrox
On FreeBSD 10.0-CURRENT #5 r247234 If I try to compile world, or any clang-dependent port, distcc returns an error: # make buildworld CC=distcc -- Building an up-to-date make(1)

Re: distcc does not work with clang

2013-02-26 Thread Beeblebrox
*UPDATE:* I got DISTCC to partially work by setting environment variable as CCACHE_PREFIX=/usr/local/bin/distcc It works partially, because it does not distribute compile requests correctly: - If the compiler is gcc46, compile orders get correctly distributed to build-farm - If the compiler is

compiler confusion: gcc cannot be located and causes compiler errors

2013-03-21 Thread Beeblebrox
I have run into this error in several different places, and it seems like a problem with one of the base tools. lang/gcc has been installed on the system from ports. 1. If I try to build emulators/kqemu-kmod-devel, I get: === FreeBSD 10 autotools fix applied to

Re: compiler confusion: gcc cannot be located and causes compiler errors

2013-03-21 Thread Beeblebrox
Another example of the problem: from compile of www/chromium: === FreeBSD 10 autotools fix applied to /usr/obj/asp/ports/www/chromium/work/chromium-courgette-redacted-25.0.1364.172/third_party/WebKit/Source/autotools/acinclude.m4 cd

Re: compiler confusion: gcc cannot be located and causes compiler errors

2013-03-22 Thread Beeblebrox
I seem to have found the solution to the problem: lang/gcc needs to have symlinks in /usr/bin. Create these: # ln -s /usr/local/bin/gcc46 /usr/bin/gcc # ln -s /usr/local/bin/g++46 /usr/bin/g++ This way most, gcc not found errors should disappear. With many thanks to René Ladan -- View this

Root on zfs fails to mount: illegal option -- L

2013-05-06 Thread Beeblebrox
After latest world / kernel update (r250260 Sun May 5, amd64) I cannot mount root - message is: Addditional ABI support: linux Clearing /tmp Updating motd *Mounting late file systems:mount: illegal option -- L* Mounting /etc/fstab filesystems failed, startup aborted System then falls into

Re: Root on zfs fails to mount: illegal option -- L

2013-05-06 Thread Beeblebrox
Is this startup error message related to the problem? starting devd devd: can't open devctl device /dev/devctl: device busy /etc/rc: warning: failed to start devd crw--- 1 root wheel May 6 /dev/devctl - 10-Current-amd64-using ccache-portstree merged with marcuscom.gnome3 xorg.devel

Re: Root on zfs fails to mount: illegal option -- L

2013-05-06 Thread Beeblebrox
Is this startup error message related to the problem? starting devd devd: can't open devctl device /dev/devctl: device busy /etc/rc: warning: failed to start devd crw--- 1 root wheel May 6 /dev/devctl - 10-Current-amd64-using ccache-portstree merged with marcuscom.gnome3 xorg.devel

Re: Root on zfs fails to mount: illegal option -- L

2013-05-06 Thread Beeblebrox
Thank you for the answer. BOTH problems were indeed related to /etc/rc.d/mountlate, as they both disappeared after deleting mountlate. I then re-did an installworld mergemaster, rebooted and system is fine now. I probably overlooked doing the installworld on host after having updated the jail

need to download /boot/gptzfsboot for 10 (zfs 5000)

2013-05-21 Thread Beeblebrox
Hello. I made a small mistake and I need to re-write the gptzfsboot file for 10-current zfs 5000 to my freebsd-boot gpt partition. I can't use mfsbsd's gptzfsboot because that is 9.1 and v28 zfs. Where can i download this file (without the complete 10.iso)? Regards. P.S It would be useful if

need to download /boot/gptzfsboot for 10 (zfs 5000)

2013-05-21 Thread Beeblebrox
Thanks Guys, I figured out the stage/trees business and was able to download the gptzfsboot file only. I put the file on a usb, copied it to the system with the problem (booted with mfsbsd) and issued the gpart bootcode command to the copied file. System back up and running. Thanks

DNS records being cached?

2014-02-20 Thread Beeblebrox
Well, explain this if you can: I have unbound running in a jail and host /etc/resolv.conf entry for name server is DSN jail IP. I recently changed the A rec to a domain, then did unbound-control flush domain. Now, drill from jail shows new IP, while drill from host shows old IP. -

Memory blackhole in 11. Possibly libc.so.7?

2014-05-29 Thread Beeblebrox
uname: FreeBSD 11.0-CURRENT #0 r266393M: Sun May 18 13:04:00 2014 amd64 I'm also loading the Radeon_kms modules Upon system startup, memory profile is clean. I get locked memory (mem_wire) usage as: 9% before Radeon*.ko modules loaded 12% when slim is started (loads Radeon*.ko modules)

Re: Memory blackhole in 11. Possibly libc.so.7?

2014-05-29 Thread Beeblebrox
Why do you think libc.so.7 has anything to do with this? Well, because there are two instances of it running in the lsof dump, with several possible child process candidates. Why would they be hanging around when practically everything has been killed? Radeon*.ko modules are a very strong

Re: Memory blackhole in 11. Possibly libc.so.7?

2014-05-30 Thread Beeblebrox
I'm replying late, but last night I almost had a complete meltdown of the system. I did a partial pkg upgrade for the packages that managed to get built by poudriere, then all hell broke loose. Screen lock-ups, random reboots, and several hard reboots later I decided to do a fresh

jail sockstat shows gdnc, gdomap, casperd as enabled

2014-06-03 Thread Beeblebrox
Some (not all) of my jails show gdnc, gdomap casperd services with sockstat listing. The jails that show these services have /usr/local mounted as ro to jailname/usr/local. root gdnc 1433 5 stream /tmp/GNUstepSecure0/NSMessagePort/ports/1433.0 nobody gdomap 1378 3 udp4

Re: jail sockstat shows gdnc, gdomap, casperd as enabled

2014-06-03 Thread Beeblebrox
Hi Trond, These two are related to GNUstep. If your jails don't run GNUstep, why is GNUstep installed in the first place? I know that they are related to GNUstep (although I have no idea what GNUstep actually does other than act as a messaging system probably like dbus). Anyway, I don't

Re: jail sockstat shows gdnc, gdomap, casperd as enabled

2014-06-03 Thread Beeblebrox
I'd strongly recommend firewalling (Both gdomap and gdnc) off from the outside world. I want to completely disable them, not just for the above, but also because they unnecessarily consume memory. It adds up when you have 5-6 jails running. @Trond: Point taken for casperd - I'll keep it in my

Re: jail sockstat shows gdnc, gdomap, casperd as enabled

2014-06-03 Thread Beeblebrox
I had installed mail/gnumail for testing and figuring out whether I wanted to use the thing. It had some GUI display + flickering problems, so I never really got around to trying it. This program however, had installed a whole slew of GNUstep-* ports - I decided to just get rid of the damned thing

Previously working PXE setup now fails

2014-06-10 Thread Beeblebrox
I had a perfectly working PXE-booting environment, but now it fails at kernel boot stage. Client starts to boot, and var/log/xfer shows the pxeboot file being transferred from server: in.tftpd[34792]: RRQ from 192.168.2.3 filename pxeboot tftpd[5013]: Filename: 'pxeboot' tftpd[5015]: Mode:

Re: Previously working PXE setup now fails

2014-06-23 Thread Beeblebrox
see if you can run wireshark on your NFS server that is being mounted. That should narrow down the RPC error. It took a while to get around to this, but the problem looks like NFS v3 - v4 conflict. Wireshark shows these errors: Program Version: 3 \ V3 Procedure: MNT (1) \Status: ERR_ACCESS (13)

Re: Previously working PXE setup now fails

2014-06-24 Thread Beeblebrox
Hi and thanks for your input. If I may, I have several more Q's regarding this issue: As I think I've mentioned before, a NFSv4 root fs won't work, so don't bother trying... Q1: I did not realise that. I took out the V4: in exports. However, is it possible to have a mixed-mode, something like

Several minor annoyances on Current

2014-07-25 Thread Beeblebrox
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, that folder gets a

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 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 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 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. -

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

zdb: specify object_id for dataset of the zpool name

2014-07-29 Thread Beeblebrox
If I do zdb -dd mypool, It shows me the data from entire pool and all its datasets, when in fact I only want the list from the mypool dataset. The dataset ID is 21, so is there any syntax like: # zdb -dd ID=21 I'm not trying to filter the output - I'm trying to dozdb -d mypool object_id ,

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

shmget (No space left on device) issue with firefox

2014-08-14 Thread Beeblebrox
I have been having difficulty getting firefox to work, so I built it with DEBUG and this error shows up when starting with $ firefox -safe-mode = shmget failed: error 28 (No space left on device) What Shared Memory setting do I need to change so as to get rid of this error? Alternatively, is this

zpool frag

2014-09-21 Thread Beeblebrox
FRAG means fragmentation, right? Zpool fragmentation? That's news to me. If this is real how do I fix it? NAME SIZE ALLOC FREE FRAG EXPANDSZCAP DEDUP HEALTH ALTROOT pool1 75.5G 53.7G 21.8G60% -71% 1.00x ONLINE - pool2 48.8G 26.2G 22.6G68%

Re: shmget (No space left on device) issue with firefox

2014-09-25 Thread Beeblebrox
All 3 mozilla-based ports that I have installed (Firefox, Seamonkey, Thunderbird) crash immediately. * Does anyone else on 11 have this problem or is it just me? * I had been merging the linux-c6 ports into my tree for some time (now part of the official tree) - could this have any relation to

printing text file with LPD - non-printable characters

2014-10-05 Thread Beeblebrox
I have two LPD errors 1. I see two characters being replaced by strings on the hard copy (the {â} below is an {a^}). This happens on the first page and not on following pages. instead of I get: â\200\234 (235 for trailing ) instead of ' I get: â\200\231 2. All non-english characters get

printing text file with LPD - non-printable characters

2014-10-05 Thread Beeblebrox
@Matthias: I moved the thread by setting Reply-To: to the normal freebsd-question@ list; I'm using the nabble interface, so if the move does not work.. (I've never tried with moved thread before). First of all check, what encoding has your text file, UTF-8 or ISO or $ file print.txt UTF-8

Re: printing text file with LPD - non-printable characters

2014-10-14 Thread Beeblebrox
Enscript does not support UTF-8 formatted text files, so it's not usable in this case. One solution, is to use paps, instead of Enscript, for converting UTF-8 encoded text to PostScript. http://www.linuxfromscratch.org/blfs/view/svn/pst/enscript.html Another (which I prefer) solution is to send

Re: printing text file with LPD - non-printable characters

2014-10-14 Thread Beeblebrox
We are using in production environments CUPS in the version 1.4.3; this has a component 'texttops' which supports UTF-8 encoded text (only) and prints UTF-8 nicely on the fly. Thanks for the input. Unfortunately, CUPS has been broken for me since May/14.

Re: printing text file with LPD - non-printable characters

2014-10-14 Thread Beeblebrox
@Matthias: This is one of the reasons we stick with 1.4.3. How? Did you create a self-maintained port for it? How did you overcome the problem of CUPS-dependent ports pulling in 1.7.3 in poudriere? Regards. - FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS -- View this message in

Re: printing text file with LPD - non-printable characters

2014-10-14 Thread Beeblebrox
@Don: I think it (cups) also broke for me around that timeframe until I found that I also needed cups-filters. You sir, are a life saver! Thank you for the tip. [SOLVED] - FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS -- View this message in context:

Re: ZFS: i/o error - all block copies unavailable #2

2014-10-23 Thread Beeblebrox
You might want to try from the mfsbsd.iso environment, 1. Import and mount the zpool you want to boot from 2. Copy /boot/zfs/zpool.cache to /mnt/boot/zfs/ (over-write existing zpool.cache file) 3. Edit /mnt/boot/loader.conf and add any of these that you don't already have: zfs_load=YES

Some NFS server V4 questions

2014-10-25 Thread Beeblebrox
* I can't get the NFS server to run V4 only. I have: sysctl vfs.nfsd.server_min_nfsvers=4 I start all NFS-related services manually (from script) #!/bin/sh rpcbind -s -h 192.168.2.1 mountd -rnl -h 192.168.2.1 nfsd -ut -n 4 -h 192.168.2.1 nfsuserd /etc/exports has: V4: / -network

Re: Some NFS server V4 questions

2014-10-25 Thread Beeblebrox
Hi Russ, PXE client's /etc/fstab is: 92.168.2.1:/data/amd64 / nfs ro 0 0 192.168.2.1:/usr/local /usr/local nfs ro 0 Possibly need to arrange for mount_nfs to see -o nfsv4 (I use mount_nfs -o nfsv4,minorversion=1) Yeah, that would work very likely and thanks. From

Re: Some NFS server V4 questions

2014-10-26 Thread Beeblebrox
Sorry guys, we have a considerable time-zone difference. It appears that the sysctl must be set before mountd, nfsd are started to take effect. (Or they must be restarted after it is set.) I had apparently re-started nfsd but not mountd. This time re-starting both and launching the PXE client

Re: Some NFS server V4 questions

2014-10-26 Thread Beeblebrox
Dan: to get pxeboot to do v3, add to /boot/loader.conf boot-nfsroot-options=“nfsv3” Thanks. I'm using grub for the bootloader and menu, and comparable entry should be: set kfreebsd.boot.nfsroot.options=nfsv3 It does not work however. mount_root hangs for a while then reverts to V2. I've asked

r273918 buildworld broke at semaphore

2014-10-31 Thread Beeblebrox
First breakage in a long time. Error is: In file included from cancelpoints_sem_new.c:47: /usr/src/lib/libc/../../include/semaphore.h:41:16: error: field has incomplete type 'struct _usem2' struct _usem2 _kern; ^ /usr/src/lib/libc/../../include/semaphore.h:41:9:

Re: r273910 build failure if sys/_umtx.h is out-of-date

2014-10-31 Thread Beeblebrox
Hello Beeblebrox should confirm whether or not he’s using gcc in the build or clang. Thanks! Using clang I have some tighter settings in src.conf, but nothing clang/gcc related. -- FreeBSD_amd64_11-Current_RadeonKMS ___ freebsd-current@freebsd.org

Re: r273910 build failure if sys/_umtx.h is out-of-date

2014-10-31 Thread Beeblebrox
Hi! Do you have WITHOUT_CLANG_BOOTSTRAP set? Thanks! No. No clang/gcc settings. All src.conf WITHOUT entries are of the sort INET6, PORTSNAP, BLUETOOTH, etc I DO use ccache -- FreeBSD_amd64_11-Current_RadeonKMS ___

version number error with ports

2014-11-01 Thread Beeblebrox
There seems to be a problem with certain ports detecting the OS version. * This happens with emulators/i386-wine-devel; it's unable to detect the version and exits. * Poudriere shows below message: make: /usr/ports/Mk/bsd.port.mk line 1216: warning: /usr/bin/awk

Re: r273910 build failure if sys/_umtx.h is out-of-date

2014-11-03 Thread Beeblebrox
I was just curious and decided to try an i386 build: # make -C /usr/src buildworld TARGET=i386 -DNO_CCACHE Gives same error: /asp/git/src/lib/libc/../../include/semaphore.h:41:16: error: field has incomplete type 'struct _usem2' struct _usem2 _kern; ^

Re: r273918 buildworld broke at semaphore

2014-11-11 Thread Beeblebrox
Seems like your tree is not fully up to date? The changes to sem_new.c were committed in the same commit as the changes to sys/umtx.h. I deleted the entire contents of /usr/src, then did # svn co svn://svn.freebsd.org/base/head Buildworld breaks at same place (semaphore) This

Re: r273918 buildworld broke at semaphore

2014-11-12 Thread Beeblebrox
I solved this problem about 4 hours ago and posted through the Nabble interface. My email is not posting to the mail list, and stil shows as not-accepted - there's some sort of problem there... Regards. ___ freebsd-current@freebsd.org mailing list

Re: r273918 buildworld broke at semaphore

2014-11-14 Thread Beeblebrox
I posted the solution to this through the Nabble page, but there's a change in setting there and the messages have not gone through. So, re-posting to mail list: I disabled ccache, then buildworld / buildkernel completed. I had in /etc/make.conf: .if ${.CURDIR:M/usr/src} ||

Is libLLVM-3.4.so: part of src or not?

2014-11-14 Thread Beeblebrox
When starting Xorg, AIGLX gets disabled and RadeonKMS complains: (EE) AIGLX error: dlopen of /usr/local/lib/dri/r600_dri.so failed (Shared object libLLVM-3.4.so n ot found, required by r600_dri.so) (EE) AIGLX: reverting to software rendering (II) AIGLX: Screen 0 is not DRI capable (EE) AIGLX

Kernel now detecting cpu core faults? Two thumbs up.

2014-12-10 Thread Beeblebrox
My CPU shows as: AMD Phenom II X4 B60 Processor (3671.47-MHz), But in fact it's an X3-B60, with the 4th core unlocked by the BIOS. I was running poudriere today and dmesg gave this message: MCA: Bank 1, Status 0x94000151 MCA: Global Cap 0x0106, Status 0x MCA:

Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-24 Thread Beeblebrox
I plan on using openssl from ports and have no need for kerberos. /etc/src.conf WITHOUT_CRYPT= yes * First problem is with bsnmp (used WITHOUT_BSNMP to bypass) === lib/libbsnmp/libbsnmp (all) cc -O2 -pipe -I/asp/git/src/lib/libbsnmp/libbsnmp/../../../contrib/bsnmp/lib -DHAVE_ERR_H

Re: Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-24 Thread Beeblebrox
Instead of using WITHOUT_CRYPT, you could have used WITHOUT_KERBEROS. I know that, but I don't want to waste time compiling openssl either. You can still install openssl from ports. Thanks. As stated it's just a matter of not wanting to compile something I'm not going to use. What's wrong

Re: Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-24 Thread Beeblebrox
I patched Herbert's code, deleted the entire partial world and have WITHOUT_CRYPT, WITHOUT_BSNMP in src.conf. First this part below broke, but managed to move forward when I disabled ccache (clipped for brevity): === rescue/rescue/chown/tests (depend) (cd /asp/git/src/usr.sbin/chown/tests make

Re: Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-24 Thread Beeblebrox
* So as to keep the build going, I commented out ctld in the usr.sbin/Makefile * The next part to break was pkg. I set WITHOUT_PKGTOOLS, but that did not solve the problem, so I once more had to comment out in usr.sbin/Makefile SUBDIR+= pkg === usr.sbin/pkg (all) cc -O2 -pipe

Re: Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-24 Thread Beeblebrox
So far from what I can tell, two modules don't get built for some reason. * sys/boot/i386/boot2 I built and installed this manually: * usr/sbin/mtree This is missing, and usr.sbin/mtree gives fmtree. Trying from contrib/mtree results in: /usr/local/libexec/ccache/world/clang -O2 -pipe -DNDEBUG

Re: Buildworld fails due to WITHOUT_CRYPT (3 issues)

2014-12-29 Thread Beeblebrox
I fixed 2/3 of the issues in the following commits: 1. https://svnweb.freebsd.org/changeset/base/276319 3. https://svnweb.freebsd.org/changeset/base/276318 Thanks for the e-mail Garret. Before I proceed to file PR, I'd like some input as to what to do about these problems which I had

Re: Some unresolved but important X.org problems

2015-02-11 Thread Beeblebrox
Hello. The drm2.ko graphics driver has some hard spinning loops, which may be the cause of the problems you are seeing and not actually /dev/ums0. Are any error messages printed in dmesg ? I have all debug disabled in my kernel (no WITNESS, no GDB/DDB), so no messages. If you think it's

Some unresolved but important X.org problems

2015-02-11 Thread Beeblebrox
I have been having problems described below since March of 2014, but did not have much of an option other than to wait for gradual improvements. Considering that 11 is nearing official RELEASE, I would think these problems would be worth consideration. I'm posting in current rather than xorg,

system failure: cannot kill webkit-gtk3 if using dumbell/radeon

2015-02-27 Thread Beeblebrox
I just hit a major kernel bug with the new Radeon code * I'm on dumbbell's patch_38 for world/kernel (11.0-CURRENT #2 45116d3(master)-dirty) * I started www/midori and was getting segfaults with URL that start with h. I re-built midori using WITH_DEBUG=yes, got no output, then re-built without

Re: system failure: cannot kill webkit-gtk3 if using dumbell/radeon

2015-02-27 Thread Beeblebrox
I see some errors in my last post, correcting: I used # service onestop xyz and NOT # service kill xyz One of the TTY freezes occurred when exiting nano: ctrl+x, y (exit save) -- FreeBSD_amd64_11-Current_RadeonKMS Please include my email when responding (use Reply To All)

Re: system failure: cannot kill webkit-gtk3 if using dumbell/radeon

2015-03-04 Thread Beeblebrox
Hi. Sorry for the delay to get back to you (including your private emails). Not a problem, those were various reports left to your judgment as to their significance. Better to provide more information rather than less. slim failure: Traced to dbus start failure at bootup. Slim now starts, after

Re: Unstable kernel (dumbbell) crashes

2015-12-20 Thread Beeblebrox
I forgot version data, sorry. 11.0-CURRENT #0 831e725(master): Wed Dec 16 ___ freebsd-current@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Unstable kernel (dumbbell) crashes

2015-12-20 Thread Beeblebrox
Hello. I have been away from my FreeBSD system for over 7 months. The first on my return was to update world/kernel then do a full poudriere run for all my packages. The process had many problems; I'm reporting items below as FYI. I'm tracking https://github.com/dumbbell/freebsd.git for my

Several minor questions (12.0-amd64)

2017-04-22 Thread Beeblebrox
Hello, I have several brief questions on issues I'm slightly stuck on: 1. For buildworld, my /etc/src.conf uses default CROSS_COMPILER, CLANG_BOOTSTRAP, CLANG_FULL for amd64, but I would like clang to xbuild only for target i386 as I do not need the others (like Target/arm). Is there a knob for

Re: Several minor questions (12.0-amd64)

2017-04-24 Thread Beeblebrox
/boot/loader.conf allows for an earlier time frame for having dumpdev. Thanks a lot, that's a very nice suggestion. Did not work though surprisingly, which suggests panic is ocuring in a way that interferes with loader. No matter, I noted down the output of trace and had alredy moved relevant

Anyone having ccache errors?

2017-05-15 Thread Beeblebrox
I have been getting ccache errors during buildworld. Ports for example does not have this problem. I compleely reset the cache data some 2 months ago and ccache seemed to play with that much more nicely. Apart from the error below, I'm also getting some "cc not found" errors when doing src

Re: Anyone having ccache errors?

2017-05-15 Thread Beeblebrox
> I was looking at the "make: Unknown modifier ‘c’” warnings — which > were a symptom of the bug that was fixed late last week. I don’t > genuinely know if ccache works or doesn’t work. Thanks, -Ngie Thanks, I still do see those exact "make: Unknown modifier ‘c’” warnings along with the original

Re: Anyone having ccache errors?

2017-05-15 Thread Beeblebrox
> Would you please execute the following and attach your output? > $ make -VMAKE_VERSION make ver: 20170510 uname -U: 1200030 In my original post I also stated: also getting "cc not found" errors whether ccache is enabled or not. For example installworld (no ccache) broke with that message so I

Re: Anyone having ccache errors?

2017-05-15 Thread Beeblebrox
> Upgrade make — it was a bug with it, fixed in the past few days. > HTH, I just rebuilt and installed a clean world without using ccache After reboot I tried buildworld with ccache enabled, but got same error. So, did not work unless you meant a particular port? --

src.conf clang x-build flags

2017-05-26 Thread Beeblebrox
Is there any hope we will get src.conf flags to specify which clang x-build tools world builds? For example build for i386 but not ARM.? ___ freebsd-current@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-current To

snapshot of april 12th wont boot at all

2018-04-17 Thread Beeblebrox
I have (possibly) similar problem, running kernel from March 29 as fall-back (older kernel, latest world). * OS: HardenedBSD-12 on amd64 Athlon II X3 460 * Kernels built yesterday: MYKERN & HARDENEDBSD (GENERIC with Debug). Both kernels fail. No errors encountered during buildworld/kernel.

Re: snapshot of april 12th wont boot at all

2018-04-17 Thread Beeblebrox
Hey Shawn, > What happens when you set vm.pmap.pti=0 at the loader prompt? Yep, that fixed it. Booted into MYKERN without problem. Assuming Page Table Isolation still a bit buggy? FreeBSD 12.0-CURRENT #3 5b8586c22aa(hardened/current/master): Tue Apr 17 08:11:53 EDT 2018 Regards. --

Re: snapshot of april 12th wont boot at all

2018-04-17 Thread Beeblebrox
My proposed plan did not work anyway, as both MINIMAL and GENERIC fail to build. I'll have to clone the FreeBSD repo unless Shawn has something to comment on this. ___ freebsd-current@freebsd.org mailing list

Re: snapshot of april 12th wont boot at all

2018-04-17 Thread Beeblebrox
Hello Ed. > If this is reproducible on stock FreeBSD can you submit a PR with CPU details? I don't have a cloned repo of FreeBSD, but AFAIK it's the "options PAX_*" related knobs in the kernel that, if eliminated, would revert the system to a FreeBSD one for all intents and purposes? I can

buildworld ABSOLUTE_PATH

2018-03-17 Thread Beeblebrox
I'm building multiple worlds with different src.conf settings. Would it be too much of a PIA to to introduce ABSOLUTE_PATH to override MAKEOBJDIRPREFIX ? This would facilitate 2 problems: 1. Default practice of appending SRC_PATH to PREFIX causes a ridiculous folder structure 2. The folder

Re: No UDP/TCP IPv6 connectivity (only) to router using gif interface - maybe ARM related

2013-09-03 Thread Zaphod Beeblebrox
Whether you feel it right, or not, net.inet.ip.forwarding must be 1 for gif to work (even for IPv6). On Mon, Sep 2, 2013 at 2:42 AM, Martin Laabs mailingli...@martinlaabs.dewrote: Hi, I tried to set up my raspberry PI as an ipv6 router. As a tunnel broker I use sixxs. Now I observed an

iSCSI boot ... root?

2013-09-15 Thread Zaphod Beeblebrox
Is it now possible to boot from iSCSI? I'm not talking about an iSCSI controller, but with pxe - dhcp - tftp (loads loader) - (something) - boot (mounts root from iSCSI) ... now I recall getting stuck on both something and boot last time. AFAICR, loader doesn't understand iSCSI ... so if your

Re: multi-homing in freebsd

2013-03-09 Thread Zaphod Beeblebrox
On Sat, Mar 9, 2013 at 2:55 AM, Yasir hussan kolya...@gmail.com wrote: Does anyone know usage of multi-homing in freebsd, if YES kindly guid me how i can test it on my own PC. This question seems almost so simple as to be a trick question. By definition, put two ethernet cards in your

Re: multi-homing in freebsd

2013-03-09 Thread Zaphod Beeblebrox
On Sat, Mar 9, 2013 at 3:04 AM, Yasir hussan kolya...@gmail.com wrote: i just want to run multiple IPs for single network card in freebsd OK. A better question. About the only caution I can give here (assuming you don't mean something more interesting like vlans and whatnot) is that if both

Re: multi-homing in freebsd

2013-03-09 Thread Zaphod Beeblebrox
On Sat, Mar 9, 2013 at 8:57 AM, Yasir hussan kolya...@gmail.com wrote: i want to have differnet ips`s and each should have different interface, it could be a virtual interface. like u can made it like *ifconfig arge0.1 create* but each ip should able to access from differnet machine This

Re: Audio Hints, T520? [restating the problem]

2013-05-06 Thread Zaphod Beeblebrox
On Mon, May 6, 2013 at 11:27 AM, Sean Bruno sean_br...@yahoo.com wrote: Using a 4 position (combined headphone/mic) head set with the T520 and *no* device hints WORKS for recording and playback. Its the onboard microphone that is not working for me. No device hints provided in this thread

Re: copyin+copyout in one step ?

2013-05-27 Thread Zaphod Beeblebrox
On Mon, May 27, 2013 at 7:38 PM, Luigi Rizzo ri...@iet.unipi.it wrote: say a process P1 wants to use the kernel to copy the content of a buffer SRC (in its user address space) to a buffer DST (in the address space of another process P2), and assume that P1 issues the request to the kernel

Re: No SD card Reader support

2013-07-02 Thread Zaphod Beeblebrox
On Tue, Jul 2, 2013 at 9:24 PM, Mike C. miguelmcl...@gmail.com wrote: On 07/03/13 00:18, John Hixson wrote: On Wed, Jul 03, 2013 at 01:16:19AM +, Mike C. wrote: According to the windows drivers info on Acer's page, my laptop internal SD card reader vendor is Realtek. I'm not

Re: HEADS UP: Merging projects/bhyve_svm to HEAD

2014-10-25 Thread Zaphod Beeblebrox
I tried to integrate this patch into 10.1_RC3 and I failed. Is there a timeframe to MFC this to 10.1 or 10-STABLE? On Sun, Oct 19, 2014 at 4:04 PM, Benjamin Perrault ben.perra...@gmail.com wrote: After a few days of extensive testing and abuse, i’ve run into no new issues or unknowns what so

Re: HEADS UP: Merging projects/bhyve_svm to HEAD

2014-10-26 Thread Zaphod Beeblebrox
at 8:20 PM, Neel Natu neeln...@gmail.com wrote: Hi, On Sat, Oct 25, 2014 at 3:50 PM, Zaphod Beeblebrox zbee...@gmail.com wrote: I tried to integrate this patch into 10.1_RC3 and I failed. Is there a timeframe to MFC this to 10.1 or 10-STABLE? It will be MFCed to 10-STABLE but I don't

  1   2   >