Search results

  1. crsd

    sendmail msp (submit.cf) + aliases

    Did you run newaliases after changing /etc/aliases?
  2. crsd

    make install - file already exists problem

    That's not a check actually, just ln throwing error about file already existing. If it only happens with `ln`, try overriding it:env LN='/bin/ln -f' make install.
  3. crsd

    make install - file already exists problem

    Could you paste an example, please?
  4. crsd

    Disable driver

    You could try adding the following:hint.amr.0.disabled="1" to /boot/device.hints, not sure if it'll help though...
  5. crsd

    Disable driver

    That will not help, you should just comment out the amr_load="YES" line in /boot/loader.conf *IF* it's how amr was loaded. OP should probably rebuild the kernel excluding 'device amr' from its config.
  6. crsd

    simple regex (not for me)

    Use egrep or grep -E (which is the same). printf "directory Example/Test/\ndirectory Example/Test\ndirectory Example/Test/Not" | egrep '/Test/?$' directory Example/Test/ directory Example/Test
  7. crsd

    Apache / APR upgrade note

    Looks like you didn't follow UPDATING after all, specifically following part: If you use portmaster: portmaster -o devel/apr1 devel/apr If you use portupgrade: portupgrade -f -o devel/apr1 devel/apr
  8. crsd

    error in freebsd package

    Try updating your installed ports first (you should have libX11-1.3.3,1 libXext-1.1.1,1 inputproto-2.0 with recent ports tree).
  9. crsd

    error in freebsd package

    Your paste provides absolutely no info, other than what *you* should do (paste full `make configure` output, paste /usr/ports/x11/libXi/work/libXi-1.3/config.log, paste installed packages list).
  10. crsd

    rWhois does not bind to tcp4

    Try using sysctl net.inet6.ip6.v6only=0 (respective /etc/rc.conf option - ipv6_ipv4mapping="YES").
  11. crsd

    atapicam and permissions

    You should either run /etc/rc.d/devfs restart after kldload'ing atapicam, or use devfs.rules. And yes, your /etc/devfs.conf should work if you're loading atapicam using /boot/loader.conf.
  12. crsd

    Bash alias for the /usr/local/etc/rc.d/ folder

    service was added to HEAD not so long ago - http://svn.freebsd.org/viewvc/base/head/usr.sbin/service/. I guess you could simply take the script and use it on your system (don't forget to check manpage for bash completion example).
  13. crsd

    pf start twice !

    Output from /etc/rc.d/pf that you posted has nothing to do with pf starting twice ("pf enabled" is output from /sbin/pfctl). Can you describe what the problem really is?
  14. crsd

    batch add users

    for i in `jot 200 1 200`; do pw useradd user$i -g users -s /bin/tcsh -d /home/user$i -w random -m; done
  15. crsd

    pf start twice !

    That's just extra noise from pfctl binary (I've muted it changing pfctl calls in /etc/rc.d/pf to pfctl -q). conf/142817, actually.
  16. crsd

    tmp weirdness

    http://www.freebsd.org/doc/en/books/faq/disks.html#DU-VS-DF
  17. crsd

    Ports need stability

    Why do you update installed ports then if you don't want new features and only want stability (except for security fixes)?
  18. crsd

    can't get my aspire acer notebook to go to the login page and stuff?!

    Please paste/type exactly what you see after running 'fsck -y'.
  19. crsd

    can't get my aspire acer notebook to go to the login page and stuff?!

    Ah, first just press Enter at the Enter full pathname of shell or RETURN for /bin/sh: prompt, then enter the commands.
  20. crsd

    can't get my aspire acer notebook to go to the login page and stuff?!

    Run fsck -y, followed by exit
Back
Top