Search results

  1. L

    What is /dev/null?

    It has a very useful purpose in scripting: in order to discard unwanted (diagnostic or otherwise) output from a command in a shell script, one simply redirects this output to /dev/null. One example is using grep to see whether a file contains a regex; grep will print the line(s) containing...
  2. L

    Creating an FTP server

    if so, your FTP server will not be accessible from outside, unless the firewall is configured to forward FTP control (and maybe data, if you want to support passive mode) connections specifically to your mac; you would need a fixed internal IP address, as well. Allowing anonymous ftp access...
  3. L

    Poll: What's the best E-Mail client?

    about sums it up. even though i have been known to use other, more gooeyish MUAs. At one point in time, elm w/MIME was good. Mail.app is not bad, but it really needs something in front of it; procmail does nicely.
  4. L

    Inherit privileges from parent folder?

    Only the group ownership is inherited, this being the default behavior of BSD. There is no way to force permissions by inheritance, but you could have your collaborating people set their umask from 022 to 002, thus not masking away the group-writable bit. It is only important that the...
  5. L

    Sudo of pain

    Yes, it worked here as well. Odd. OTOH, I am usually running these out of for i in * which would have to break with standard setting of IFS (bourne style shell)
  6. L

    Sudo of pain

    No, the embedded spaces do not get handled correctly, and so not everything goes to /var. But the System and Library sure do; and so does the kernel and the sbin and the whole plethora of other unixy thingies, some of which are unix symlinks and difficult to re-create correctly under OS9...
  7. L

    Sudo of pain

    is possible by commenting out the line of /etc/rc which starts swap "process". Hopefully, you have enough RAM...
  8. L

    How do you properly backup and restore "Users" files and folders?

    Neither the username nor the password of the re-created users need to be the same; their UIDs, GIDs, and home directories do, however. Luckily, these can be modified using netinfo browser. Unix (and OS X) track file ownership via UID, and not username: so users A and B with the same UID...
  9. L

    How do I move the Applications folder?

    by placing the required line into /etc/fstab. it is picked up by /etc/rc around line 95 take a look at man fstab to get the idea of the required syntax; use mount to find out the device node of the partition you want to mount. is ugly.
  10. L

    Another font question...

    if your thesis has anything to do with mathematics, or plain technical writing? Granted, it will not work very well (without a lot of programming) for literary, and probably not at all for pictorial works.
  11. L

    Using FTP on a remote Machine

    well, you can nohup the current session, start FTP (interactively), send the FTP client in background, and logout. This will work better if you don't use an interactive FTP client. Please beware that on some implementations of client/servers, you can send them in endless loop on stdin if...
  12. L

    Anybody else want Unix Focus forum restored?

    I am not one of those; in fact, I've never cared much for SysV in any of its incarnations, whether from USL or otherwise. STREAMS based networking, SysV IPC, /opt, 'nuff said. Sadly, I do not know as much as really needed about OS X deviation from established BSD practices (NetInfo), which...
  13. L

    Cool UNIX files

    They are just there; they come from 4.4BSD. Flowers are USA 50 State flowers (not especially useful to the part of the world outside USA). /usr/share/dict/words are from Webster 1934, as stated in the README They came to OS X via NetBSD (yes, I know, I am a smart*** who can read hacked...
  14. L

    Sudo of pain

    Ah, an emergency bootable system (on a separate partition) Useful :) Seriously, anyone knows how to make a bootable CD with OS X shell on it? Exactly for this kind of emergency work.
  15. L

    2 gigahertz imac?

    This was April's Fools joke. Why don't you follow the link towards the Motorola 68k page, to see that the fastest 68k (it is a 68060, BTW) is at 75 MHz? Can we close this one?
  16. L

    XDarwin Windowing

    Dazed, you don't have a window manager running. The one which comes by default with XFree86 is twm, which is extremely basic, and needs three buttons to use well. OroborOSX is somewhat better (looks like Aqua, but does not behave likewise; I still use it)
  17. L

    Sudo of pain

    wow, that was a bad no-no mv. what it did is that it expanded into mv < some-item > /dir1 /dir2 /you-get-the-idea /var and moved everything into /var; everything included your shared libraries, as well. Reinstall. Never, ever have a wildcard for the last argument of mv...
  18. L

    Slow boot ups... why?

    It looks for IP only if ethernet interface is active (i.e. the other side of the cable is powered on and carrier is present). One would assume that modem powers completely off, but who knows... you can check by looking at ifconfig en0 in terminal: if it says media: autoselect (100baseTX...
  19. L

    Slow boot ups... why?

    Your DHCP server takes longer than it used to before it hands out the IP? ( I assume you are running with DHCP setup )
  20. L

    Console Games

    but I could not find my entry. Sorry folks, but nothing beats the nethack gameplay with DEC extended charset on a good ole VT102. So there :)
Back
Top