Search results

  1. K

    Other Only /dev/pass*

    It seems I have a similar problem: # camcontrol devlist <SEAGATE ST1000NM0001 0002> at scbus0 target 0 lun 0 (pass0) <SEAGATE ST1000NM0001 0002> at scbus0 target 1 lun 0 (pass1) <SEAGATE ST1000NM0001 0002> at scbus0 target 2 lun 0 (pass2) <SEAGATE ST1000NM0001 0002>...
  2. K

    Upgrading Jails

    I'd recommend sysutils/ezjail and run ezjail-admin update -b.
  3. K

    nmbd_enable: not found

    nmbd_enable = "YES" smbd_enable = "YES" Remove the whitespaces around the "=".
  4. K

    Where to find old releases of FreeBSD?

    Oh, I thought versions before 2.0 are no longer allowed to be actively distributed. Also 1.1.5.1 is missing in this archive (the first version I installed a while ago). :)
  5. K

    pecl-APC

    I can confirm, pecl-APC-3.1.13 fixes the problem.
  6. K

    ZFS bad hdd replacement

    You were using zpool add instead of zpool attach. In order to fix it, you will have to backup all the data and recreate the pool. :( I'd recommend using gpt labels in the future and partitions with a proper alignment for your 4K disks (keywords: gpart add -b 2048 ..., gnop, ashift=12).
  7. K

    php5.4.6 cores

    Temporary solution: Downgrade to pecl-APC-3.1.11 until a fixed version after pecl-APC-3.1.12 is out.
  8. K

    pecl-APC

    I have the same problem on three machines now, portdowngrade to pecl-APC-3.1.11 helps.
  9. K

    Portaudit not detecting php 5.3 problem

    I have the same problem, running php5 (not php53) with 5.3.13 and waiting for customer's ok to update and now portaudit does not show a problem, because a line like "php5 <5.3.14" is missing. It was safe to keep 5.3.13 from 2012-05-16 (php5-5.4-Update) until 2012-07-18 (php53-5.3.14-Update).
  10. K

    Good 8 ports SATA Controller

    I use this one: Supermicro AOC-SAT2-MV8 with mvs(4).
  11. K

    How to get a list of connected clients from my DHCP server?

    Maybe arp -a is your friend? ndp -a for v6. arpwatch and ndpmon are also fine. All of this has nothing to do with DHCP, but maybe it's still what you're looking for?
  12. K

    Update Monitoring Idea

    Welcome to the 21st century: pkg_version -vL= :)
  13. K

    Broken folder on zfs

    He could try faking the needed third disk using mdconfig(8). But if disk space is the problem, he could also create a second zfs, set dedup=on on both and rsync the broken fs to the new one and then destroy the old one. Been there, done that, my broken zfs showed 16.0E usage. But it did...
  14. K

    Any other Squeezebox fans out there?

    Can you provide the diffs, please?
  15. K

    vlans over lagg

    The problem still exists in 8.1-RELEASE. The patch is only in HEAD (r203548) but not in stable. :( http://redmine.pfsense.org/repositories/entry/pfsense-tools/patches/RELENG_8_1/if_lagg_vlan_handling.diff?rev=64fd5b02c883db52511a333d8b879eaad2038d11 I've tried it right now and it works...
  16. K

    New fileserver: ZFS pool layout

    Something like this? :) # zpool list zdata NAME SIZE USED AVAIL CAP HEALTH ALTROOT zdata 8.12T 3.98T 4.15T 48% ONLINE - # zpool status zdata pool: zdata state: ONLINE status: The pool is formatted using an older on-disk format. The pool can still be used, but...
  17. K

    New fileserver: ZFS pool layout

    Why exactly 1x? I also wonder why resilvering of a 9disk-raidz2 should take very long and therefore is a showstopper for such a config. I always thought the time of resilvering is mainly dependent of the amount of data stored in the pool. And remember: The pool is working fine during...
  18. K

    New fileserver: ZFS pool layout

    I disagree. You lose all your data if the wrong two disks fail (and the fail of the 2nd disk of a mirror during resilver is quite likely). raidz2 with hotspare is much more reliable.
  19. K

    postfix: weird IPv6 bounce

    You've enabled ipv6 on your host, but your v6 connectivity is broken (no route to host). You should fix that instead of trying to disable v6 in postfix. You'll notice these problems with all types of software trying to connect to v6 enabled sites (try ftp ftp.freebsd.org for example). Connecting...
  20. K

    8.1-RC1: re0: watchdog timeout

    Maybe it has something to do with this change: http://svn.freebsd.org/viewvc/base/stable/8/sys/dev/re/if_re.c?r1=207977&r2=207976&pathrev=207977
Back
Top