Search results

  1. gcooper@

    CPU0: local APIC error 0x40

    I can't find a reference to this value in the IA32/IA64 developer's manual, so it's definitely a bug but I'm not sure where it's coming from. The code that gets executed in the event of the error though is under lapic_handle_error (which is only called in amd64/amd64/apic_vector.S and...
  2. gcooper@

    New board now bind won't work :/

    No. Other way around... If it's GENERIC, I don't see why IPv6 should be an issue because gif(4) exists. Make sure to setup the IPV6 variables though in rc.conf. You can also use named -4 if you really suspect it's an IPV4 vs IPV6 issue: -4 Use IPv4 only even if the host...
  3. gcooper@

    Backup MBR an Partition Table

    That works with a standard MBR, but not a non-conventional one, like GPT, made larger to accommodate ZFS -- see the examples section in the gpart manpage for more details.
  4. gcooper@

    Fresh install, problem with pkg_add

    A quick and dirty solution to this it to call the command like: sudo env VAR=VALUE command It's guaranteed to work whether or not sudo's in the mix without having to edit the sudoers file ;)...
  5. gcooper@

    FreeBSD install: No /boot/loader

    I agree with SirDice. There's a simple way to redo the boot0 install, but then there could be other issues that you'd have to munge through.
  6. gcooper@

    question to migrate from linux to bsd

    Yes, you can to a large extent (you'll have better luck with ext2/ext3), but just beware of shared configuration / metadata files between FreeBSD and your Linux distro.
  7. gcooper@

    src.conf or make .conf ?

    make.conf is used globally as suggested before, and in make(1): First of all, the initial list of specifications will be read from the system makefile, sys.mk, unless inhibited with the -r option. The stan- dard sys.mk as shipped with FreeBSD also handles make.conf(5), the...
  8. gcooper@

    CPU0: local APIC error 0x40

    Do you run green_saver by chance?
  9. gcooper@

    Can't mount usb stick on FreeBSD

    I'm guessing based purely on your shell prompt (which could be entirely wrong, but..), you were operating as root. One thing that I'm curious about (with jb_fvwm2) as well that you haven't identified is whether or not you're trying (by accident) to mount an NTFS based partition. truss output of...
  10. gcooper@

    New board now bind won't work :/

    From /etc/src.conf (for the base system): WITHOUT_INET6 Set to not build programs and libraries related to IPv6 network- ing. When set, it also enforces the following options: WITHOUT_INET6_SUPPORT WITHOUT_INET6_SUPPORT Set to...
  11. gcooper@

    Equivalent of Gentoo's world file?

    Correct me if I'm misunderstanding you, but you're looking for something like emerge -C <package>. ? There are multiple means to do this ... portmaster (third party tool) features this functionality, as does portinstall/portupgrade/etc (third party tool) IIRC. There are most likely other tools...
  12. gcooper@

    Problem with green_saver?

    Taking a stab, this might be a bug with the vga(4) driver in FreeBSD. I'm interested in this too, so I'll poke around and see whether or not it works for my 9600GT card (I'm using blank_saver right now). Also, what version of FreeBSD do you have loaded on the box right now?
  13. gcooper@

    Install source - FreeBSD or PC-BSD DVD?

    Caveat emptor: once you install with the PCBSD media, you can't use the FreeBSD install media without first wiping the first and last sectors of the disk. This is a known issue with sysinstall not fully supporting gpt slicing ala geom(4).
  14. gcooper@

    question to migrate from linux to bsd

    I highly suggest not using a shared /home though because you'll run into issues if you use the same application between FreeBSD and Linux, they happen to read/write to the same files and don't have a common language; for example, the XFCE4 version isn't equivalent between FreeBSD and Linux...
  15. gcooper@

    Installing ports with portsnap??

    Just for future reference, here's what I do on multiple machines if I want bash: cat >> ~/.shrc <<EOF if [ -x /usr/local/bin/bash ]; then /usr/local/bin/bash -c true && exec /usr/local/bin/bash fi EOF I realize it might seem excessive, but here's a breakdown: NOTE: $- maps to the flags...
  16. gcooper@

    Equivalent of Gentoo's world file?

    There simply isn't an equivalent to this paradigm in the base FreeBSD packaging tool, known as pkg_install. Gentoo's [/var/lib/portage/?]world file lists what the user installs manually (I forget the exact location because I haven't munged around that file for a while now). In FreeBSD...
  17. gcooper@

    puc/sio/uart question

    That's because it's using a wildcard for the subdevice, instead of setting the appropriate chipset specific read clock for the specific subdevice. If you have devinfo -v output that can be provided, I'll see about submitting a patch for that specific case.
  18. gcooper@

    DVD+RW issues

    Followup posted on your behalf.
  19. gcooper@

    Freebsd under games server (Linux Compat)

    Counterstrike doesn't require Linux compatibility; it requires Wine [on FreeBSD] to function. You're probably looking at the steam server...
  20. gcooper@

    X-Fi PCIe Titanium Sound Card

    Sadly, there isn't (at least none that I know of in the near future). X-Fi is a complicated piece of work and the only opensource operating system to come close to having support on the X-Fi chipset Creative cards is linux, and even that is incomplete.
Back
Top