Recent content by howardm4

  1. H

    CUPS and SMB OH NOOO!

    You might want to manually go in and edit the /etc/cups/cupsd.conf file so that 'debug' is your LogLevel. That'll put a boatload of info into /var/log/cups/error_log and perhaps help determine the cause of the problem. I will say that just yesterday, I got my Lombard/Jag/CUPS printing...
  2. H

    Compiling lynx

    so where is the '-lncurses' on the command line via the Makefile? You need to call it out during the final link phase. Just installing ncurses isn't enough.
  3. H

    screen in 10.2

    try recompiling and including -lcurses on the linker command
  4. H

    de-installing unix apps

    some packages include an 'uninstall' target in their Makefiles. Many do not. it really boils down to figuring out where it stashed all the files and moving them out of the way. Usually, things are rooted in /usr/local but a 'make -n install' will show you what gets installed w/o...
  5. H

    Have the soft in osx like sockscap in ms ?

    well, no and yes. It does include a rudimentary 'runsocks' shell script which re-orders the dynamic library path which should accomplish what you want. However, that script doesn't know about OSX but that should be pretty trivial to change. If you have the libsocks.dylib...
  6. H

    Maillinglistsoftware?

    http://www.gnu.org/software/mailman/mailman.html
  7. H

    virtual consoles?

    if you want virtual desktops, there are a few products out there like codetek.com If you just want consoles, then GNU 'screen' will do.
  8. H

    Darwin on a Compaq Presario

    I have the bsdmall.com Darwin 1.4.1 CDROM in front of me and according to that at least, it requires an Intel 440BX motherboard. I think that if you want to futz around and attempt to get it to work, experiment, etc, you can give Darwin a try. If you want to put a workable Unix-like...
  9. H

    compiling issue

    the configure script is written in 'sh', not perl. Second, I've looked at it and its one of the poorer configure scripts because generally, you can tell the script where to find libraries. Fink puts all of its stuff in /sw/.... and its libraries in /sw/lib. If your running...
  10. H

    ar bug in MacOS X?

    it's not a big deal. Some versions of 'ar' have the 's' flag, others do not. All it does is add a table of contents to the .a archive. The same thing can be achieved using the 'ranlib' command. So, modify the Makefile to remove the 's' and add a line that runs ranlib on the thing...
  11. H

    Internet problem when connection ethernet cable

    Perhaps in the 'active network ports' tab on the Network setup page you have Ethernet ABOVE modem? You could do somthing like a ifconfig en0 down also
  12. H

    serial terminals?

    You'll want to edit the /etc/ttys file to turn the appropriate tty 'on' and then you need to tell the init process to reread the file via a 'kill -s HUP 1'
  13. H

    Communicating between perl and FORTRAN.

    well, perl should be able to kick off a fortran program using the 'system' call (assuming that is supported on the VMS port of perl). The 'system' call will 'stall' (or block) the perl program until it is over and then it (the perl program) continues. Then you get perl to load the...
  14. H

    serial terminals?

    my thought would be to get a USB-serial widget and assuming that the driver software is reasonable, you should be able to enable 'getty' on that line and have it work.
  15. H

    Sudo no longer requires password

    check the /etc/sudoers file to see who is allowed first off. then do an 'id' to see if you are in fact in teh same group or whatever. If you are, then sudo is correct.
Back
Top