Search results

  1. B

    bus error on logout using ssh

    Seems klist still dies here: $ sw_vers ProductName: Mac OS X ProductVersion: 10.1.3 BuildVersion: 5Q45 $ klist -s zsh: bus error klist -s
  2. B

    Removing "kext" kernel extensions

    Of course, since kernel extensions are only loaded on a need-basis, deleting them shouldn't affect performance much (only when rebuilding that cache). To see what extensions are currently loaded, run sudo kmodstat According to my system, 63 are currently loaded. Also, note, there...
  3. B

    Removing "kext" kernel extensions

    Actually, looking at /etc/rc, it appears the cache should be rebuilt if anything in the Extensions directory is changed (the -ot part): if [ ! -f /System/Library/Extensions.mkext -o \ /System/Library/Extensions.mkext -ot /System/Library/Extensions ]; then # rebuild cache here So...
  4. B

    Run Commands at Shutdown

    Yup, that one PDF has quite a few useful little tidbits buried inside. One of the few reasons I use Acrobat Reader instead of Preview to read it is for doing searches... For those who don't have it, mine is at /Developer/Documentation/Essentials/SystemOverview/SystemOverview.pdf which...
  5. B

    Run Commands at Shutdown

    The change I posted was against the ttys file, yes, but note the switch -LogoutHook is against loginwindow.app, which is run on the local console, for the GUI login. So when you logout from Finder, this runs. I agree that shutdown procedures are yet to be implemented, however.
  6. B

    any UNIX IRC clients that would work via OSX's command line?

    You need the developer tools which provides cc (C compiler) and other tools.
  7. B

    How does one do this?

    That appears to be running The X Window System, the standard GUI for most Unix and OpenVMS systems. A binary for OS X should be available from the XonX website. This is the free version of X Windows, known as XFree86. For a window manager, that picture is using WindowMaker which is what...
  8. B

    Run Commands at Shutdown

    To run a shell script on a user's logout, you need to edit /etc/ttys. Near the top, there is a line that looks like (note, this is actually one line in the file) console "/System/Library/CoreServices/loginwindow.app/loginwindow" vt100 on secure...
  9. B

    Fink problem

    It's looking for (and not finding) a C compiler. Did you install the developer tools? You may have it on CD, but if not, it's a free download from Apple's Developer Connection; you need to create an account, but the basic level is free and allows you to download these tools.
  10. B

    How to launch a script on startup?

    The avoidance of running dynamic_pager is a good one (someday, Apple should get around to documenting it), as I think I once killed my machine running it a second time... However, you're running /etc/rc another time by dotting it in the startup script. I'm not sure what effects this may...
  11. B

    Finding out what services run on a specific port

    To find out which process is using a given port, use lsof in Terminal: $ sudo lsof -i :22 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME sshd 268 root 3u inet 0x01a87f8c 0t0 TCP *:ssh (LISTEN) Simply replace the 22 above with your port number, and look...
  12. B

    Anyone know Perl? Help me with HTML templates?

    I say head on over to CPAN and find one to your liking (last one I used was HTML::Template, which was quite nice). If you want a description of several template systems, perl.com ran a nice, long article on this very subject.
  13. B

    I have an idea for my cable modem issues...

    How long did you wait for the script? That ping has to timeout before it fails, so it may take several minutes (probably two, but maybe more).
  14. B

    OS X dyslexia?

    Right...search just for 6990, Wonder if the typo is Freudian in nature?
  15. B

    site odity!

    So now we know why you keep changing the look, to watch the ensuing confusion for your own personal amusement...
  16. B

    site odity!

    With the previous look, there was a second style set you could use, called Blue, which had a nice aqua look to it (you can set the style set in the user control panel, then edit options). Now there's just the default look... Not sure why Admiral is still seeing the old look though; that's weird.
  17. B

    This should be easy...

    $ bc bc 1.05 Copyright 1991, 1992, 1993, 1994, 1997, 1998 Free Software Foundation, Inc. This is free software with ABSOLUTELY NO WARRANTY. For details type `warranty'. 8 + 8 - 2 * (4 + 2 * 3) -4 Gotta love those precedences... 8 + 8 - 2 * ( 4 + 6 ) 8 + 8 - 2 * 10 8 + 8 - 20 -4
  18. B

    Moving files with ssh??

    And for the lazy typist (like me) who usually copies to the home directory, you can scp somefile.tar user@remote: to put it straight into your homedir; this is useful if you have accounts at different companies/ISPs/servers/etc where each one has different logic for placing homes, and...
Back
Top