Search results

  1. crsd

    Be confused with cut

    cut: -f list The list specifies fields, separated in the input by the field delimiter character (see the -d option). Output fields are sepa‐ rated by a single occurrence of the field delimiter character. :)
  2. crsd

    USB and cam system bug?

    # kldload ehci kldload: can't load ehci: File exists means that ehci is already built in kernel. You can check it using kldstat -v | grep ehci /usr/sbin/moused is started by devd upon USB mouse attach (and is killed on detach). You can check /etc/devd.conf, line with device-name "ums[0-9]+";
  3. crsd

    Trouble with PPPoE

    If you haven't changed anything related to PPPoE (software, hardware), you should ask your provider then.
  4. crsd

    Manual kernel panic

    Yes, I do, on -CURRENT :) and always forgetting about them, sorry.
  5. crsd

    fail to install sdlmm due missing sdl headers

    Only thing that I can think of... Try commenting your CFLAGS line and reinstall libvgl: cd /usr/src/lib/libvgl; make cleandir; make obj; make; make install
  6. crsd

    How to Modify the boot0 code ...

    You'll need to actually install your modified /boot/boot0 using boot0cfg
  7. crsd

    where is u_int32_t defined?

    egrep -r 'typedef.*u_int32_t;' /usr/include/ :)
  8. crsd

    pkg_add proxy issues

    No. Quoting fetch: HTTP_PROXY URL of the proxy to use for HTTP requests. The docu‐ ment part is ignored. Only HTTP proxies are sup‐ ported for HTTP requests. If no port number is spec‐ ified, the default...
  9. crsd

    pkg_add proxy issues

    Using which program?
  10. crsd

    Manual kernel panic

    > sysctl -d debug.kdb.panic debug.kdb.panic: set to panic the kernel Happy panic'ing. :)
  11. crsd

    pkg_add proxy issues

    export HTTP_PROXY="http://proxy.fukawi2.local:3128" should work both for http and ftp. Are you requiring some kind of auth on your proxy?
  12. crsd

    fail to install sdlmm due missing sdl headers

    What are the contents of your /etc/{make,src}.conf? Paste output of: cd /usr/src/lib/libvgl; make cleandir; make obj; make
  13. crsd

    fail to install sdlmm due missing sdl headers

    You seem to be having this problem for a long time now (re: your virtualbox thread). Have you tried reinstalling sdl?
  14. crsd

    fail to install sdlmm due missing sdl headers

    Why do you think that headers are missing and what is in config.log? Builds here with: sdl-1.2.13_4,2
  15. crsd

    mpg123 can't work

    Looks like it's libtool issue, after all. From mpg123 1.10.0 Changelog: Make modules work with libtool-2.2.6b . I've attached a patch updating mpg123 to 1.10.0, works for me on -CURRENT/amd64.
  16. crsd

    camcontrol standby turning off HDD immediately

    Looks like there's black magick involved. http://lists.freebsd.org/pipermail/freebsd-stable/2009-November/052997.html: Denis Shaposhnikov wrote: > I'm trying to replace sysutils/ataidle which doesn't work with new > acpi(4). May be somebody could tell me args for > > camcontrol cmd ada0 -a...
  17. crsd

    camcontrol standby turning off HDD immediately

    Same here with 9.0-CURRENT r201182 and <WDC WD7501AALS-00J7B0 05.00K05> at scbus2 target 0 lun 0 (pass1,ada0). camcontrol standby ada0 -t 60 spins down the drive immediately.
  18. crsd

    PHP 5.3.2 (was: php 5.3.0)

    Missing \ at the end of previous line?
  19. crsd

    Warning: deflink: /dev/cuad0: Bad file descriptor

    FreeBSD 8 uses uart instead of sio. Check FILES section in manpage.
  20. crsd

    Port maintenance help...PR's apcupsd and pcmanfm

    I have submitted PR for the pcmanfm. For apcupsd update you should really poke maintainer :)
Back
Top