Recent content by HalimC

  1. H

    Core Dumps

    I'm working with a Unix application within OS X. When the application crashes, it produces core dump files in /private/cores, but only SOMETIMES. Is there a setting to force it to always produce core dump files when the program crashes? I NEED to have these cores so I can see where it is...
  2. H

    named (DNS) server problem

    I think I figured it out. named, by default, listens on all IP interfaces, including my PPP connection for my DSL. When the DSL's IP would change, named would crap out. I solved this by adding the line listen-on { 127.0.0.1; 192.168.1.1; }; to my /etc/named.conf, under the options directive...
  3. H

    named (DNS) server problem

    Hi, I've been running named to serve DNS for my local LAN, but after several days of running, the named process just seems to die, without any warnings or errors. This also causes postfix to die cause it has problems with the local DNS, and then my network's outgoing mail doesn't work. Has...
  4. H

    VMWare

    Bochs is more what you're looking for, or wait for the MacOSX port of Virtual PC, which will be a lot faster than Bochs. There is a Carbonized port of Bochs that supports OS X, but from what I've heard, the speed isn't too great. That is a general Bochs thing, not just a problem with the Carbon...
  5. H

    MacOSX and Gnome via VNC

    I'm not exactly sure what you want to do here. You just want to have a gnome desktop on your system? Or do you want to share your OS X system's gnome desktop to remote computers using Xvnc? You can run Gnome actually within OS X, using the OS X natvive port of XFree86. I've had gnome...
  6. H

    apache wont start

    Actually, this information isn't really correct. Current versions of Apache are designed to install over top of the existing OS X Apache installation. Your problem is not that it is the wrong directory, but you are probably running it as the wrong user. Try sudo apachectl start. or restart...
  7. H

    Mac newlines kill PHP... recursive change?

    Update to PHP version 4.0.6. It natively supports Mac line endings under OS X.
  8. H

    PATH_INFO not (always) working in CGIs

    Make sure your CGI program has execute permissions. (do chmod +x <myscript.cgi>) Not sure if this is the problem, but it could be...
  9. H

    compiling xchat

    What errors are you getting in compiling it? I have a perfecly fine and working X-Chat on my OS X system that I was able to compile.
  10. H

    Compiling GAIM for OS X

    libintl.h is part of the GNU gettext package. I believe there is an OS X port of this. Once you have gettext installed, it should compile fine. However, I was able to compile GAIM and even run it on my system, but I am not able to connect to any services in it.
  11. H

    Compiling glib

    the bad macro argument list error can be fixed by doing: setenv CFLAGS -traditional-cpp then rerun ./configure ppc;make
  12. H

    GNOME on OS X

    I have been attempting to get a GNOME desktop setup on my OS X PB system. I am using XFree86 4.0.2 and Xvnc installed (and using a Aqua VNC client to view X apps). The big problem I am having is compiling the gnome-libs. Gnome has a heavy dependency on shared libraries in the various...
Back
Top