Search results

  1. gelraen

    Error building virtualbox-ose (4.3.10) on FreeBSD 8

    Looks like it happens with X11 option disabled.
  2. gelraen

    Error building virtualbox-ose (4.3.10) on FreeBSD 8

    I'm experiencing the same issue on 10-STABLE i386, both from /usr/ports manually and in poudriere with a separate ports tree updated with portsnap. Although, I was able to build 4.3.10_1 somehow, but now I cannot rebuild it, even with default options. I've tried looking in logs for which deps of...
  3. gelraen

    FreeBSD on Samsung Chromebook

    br@ started porting FreeBSD to Samsung ARM Chromebook: https://wiki.freebsd.org/FreeBSD/arm/Chromebook
  4. gelraen

    acpi_call

    http://www.freebsd.org/cgi/query-pr.cgi?pr=161678
  5. gelraen

    acpi_call

    Thanks. Sergey Kandaurov already replied in -hackers@ http://lists.freebsd.org/pipermail/freebsd-hackers/2011-October/036633.html
  6. gelraen

    acpi_call

    AFAIK, it's related to general locking and modules init order (it crashes on acquiring mutex lock), not to ACPI directly.
  7. gelraen

    acpi_call

    Recently I've implemented acpi_call module https://gitorious.org/acpi_call-freebsd Installation (requires kernel sources): $ git clone git://gitorious.org/acpi_call-freebsd/acpi_call-freebsd.git acpi_call $ cd acpi_call $ make && make util # kldload ./acpi_call.ko Basic usage: #...
  8. gelraen

    X.Org 7-4 -> X.Org 7.5 upgrade -- issues and questions

    Sorry, I don't have that Xorg.0.log for now, but I've checked that AccelMethod "exa" was accepted by xf86-video-ati driver.
  9. gelraen

    X.Org 7-4 -> X.Org 7.5 upgrade -- issues and questions

    Yes, DRI was also explicitly enabled for adapter in config file.
  10. gelraen

    X.Org 7-4 -> X.Org 7.5 upgrade -- issues and questions

    xorg-server-1.7.5 was terribly slow with my Mobility Radeon X1350 and ate 100% cpu. Adding Option "AccelMethod" "exa" didn't helped. Now I'm still using xorg-server-1.6.5
  11. gelraen

    pure-ftpd - deny users to delete their files

    (c) sticky(8) Maybe needed effect can be achieved in combination with setuid mode on directory? I had such configuration for some time, but only on anonymous ftp.
  12. gelraen

    SysInfo: a set of scripts that document your system

    1) check_firewalls() should handle also $firewall_type, not just $firewall_script (btw, maybe will be better to say "ipfw show" instead) 2) services module output full of Cannot 'status' snmpd. Set snmpd_enable to YES in /etc/rc.conf or use 'onestatus' instead of 'status'. 3) Socket...
  13. gelraen

    SysInfo: a set of scripts that document your system

    % ifconfig gif0 gif0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> metric 0 mtu 1280 tunnel inet 10.45.74.7 --> 10.45.67.94 inet 192.168.100.17 --> 192.168.100.18 netmask 0xffffffff General interface looks like this: % ifconfig vlan0 vlan0...
  14. gelraen

    SysInfo: a set of scripts that document your system

    CPU information Machine class: i386 CPU Model: Intel(R) Core(TM)2 Duo CPU T7250 @ 2.00GHz Number of CPUs: 2 RAM information System memory summary Total real memory available: 2035 MB Logically used memory: 1352 MB Logically available memory: 682 MB Swap information...
  15. gelraen

    cd to sub-folder on Flash using Script

    Sorry, "source" command available only in bash. In sh this can be done like ". /path/to/script" Small example: $ cat ./whereami #!/bin/sh hostname $ . ./whereami imax And for this you don't need execution privilege on script, just reading will be enough.
  16. gelraen

    How to correctly match broadcast packets with ipfw?

    I've wrote patch that adds new option for matching broadcast packets. http://lists.freebsd.org/pipermail/freebsd-current/2009-April/005643.html
  17. gelraen

    cd to sub-folder on Flash using Script

    When you run it like "./script" - child process /bin/sh created and it executes script. So it changes directory only for itself, not for parent process. But if you run it like "source ./script" - then it will be executed by your current shell (if it's sh-compatible) and directory will be changed...
  18. gelraen

    ipfw fwd problem

    So, SCTP itself can use different route entries to send packet? Then just add such entries for each possible path. And these entries must not be the default gateways.
  19. gelraen

    ipfw fwd problem

    For this purpose, I think, most simple way is to write small script that checks ping(8) exit code and changes default gateway as needed and run it from cron(8).
  20. gelraen

    How to correctly match broadcast packets with ipfw?

    Is there more useful way to match broadcast packets than just manual adding `ifconfig | grep -E 'inet .*broadcast' | awk '{print $6}'` in rule?
Back
Top