Search results

  1. V

    afp copying: could not determine if file or folder error

    > Any idea if mount sends the passwords securely? Or is it cleartext (ugh!)? That should depend on the authentication methods made available by the server; mount doesn't send the URL to the server, it parses it to extract the info it needs to log into the server. If the server only supports...
  2. V

    afp copying: could not determine if file or folder error

    I've had success using this syntax: # mount -t afp afp://username:password@server/share /mnt
  3. V

    ideas

    > I've always wanted to write a Terminal which sports skins and selective > transparency... Just don't forget audio hooks so I can have authentic key clicks and fleeps with a VT52 skin.
  4. V

    Superuser disabled after Update to 4F8

    The root account is disabled in 4F8. Go into NetInfo Manager to /users/root and clear the password (it's set to a *, which effectively disables the account because it's not a valid encrypted password). Reboot. Root will now have no password, so you'll want to set one quickly.
  5. V

    How to mount network OS9 volumes via Terminal?

    Sure, you get cryptic messages, but the share _is_ mounted. At least it was in my case (I have guest access for the share I tried to mount; I\'m not sure of the syntax for an afp url which includes a username and password). After you do the mount, it should show up in df. This is gonna look...
  6. V

    How to mount network OS9 volumes via Terminal?

    Try something like: # mount -t afp afp://server/share /mnt Of course, you\'ll have to mkdir /mnt first...
  7. V

    make just won\\\\\\\'t work

    It\'s interesting that scruffy would mention GnuPG, as that\'s the first piece of software I\'ve been having trouble with. I\'ve built lots of things which either worked or failed spectacularly. GnuPG is the only thing I\'ve tried where configure worked but make didn\'t do anything. There...
  8. V

    Tar and Gzip 'ing a directory

    try 'tar zcf scooby.tar.gz scooby'. You might think about tossing a v in just for yucks.
  9. V

    ftp user access (restrictions)???

    > While I am here, does any one know how to make a link from the > ftp users home to a folder that is not in the users home, and still > get it to follow when logged in through ftp? Sorry; you can't do that. That's the whole point of chroot(2), which is executed for the anonymous user.
  10. V

    ftp user access (restrictions)???

    Just tried it on my machine; it didn't work. I'm not seeing any code to handle this case in the Darwin sources either. Guess the man page lied...
  11. V

    ftp user access (restrictions)???

    Your comp won't have the file unless you create it. You'll need to su to root then create the file with vi.
  12. V

    ftp user access (restrictions)???

    Quoting from the man page for ftpd: > If the user name appears in the file /etc/ftpchroot the > session's root will be changed to the user's login directory > by chroot(2) as for an ``anonymous'' or ``ftp'' account. > However, the user must still supply a password. This > feature is...
  13. V

    X windows on os x

    4) WeirdX. See http://www.jcraft.com/weirdx/
  14. V

    Copying files?

    So I decide to install OS X on the box I'm normall using to run OS 9 on. I copy all the files off of a partition to another partition which has enough space, install OS X onto the partition I've just cleaned off, and am now trying to copy my old stuff back on. I have 2.3GB of stuff I've...
  15. V

    Initilizing Network hangs

    FWIW on my Beige G3 when I installed OS X and told it I didn't have a network, it hung like this at Initializing Network. I let it sit all day and it didn't move. I had to re-install, telling it to go ahead and use the Ethernet (which isn't plugged into anything) and it went fine. I would...
  16. V

    OS X and Multiple IP Addresses

    You're going to have to find or make a script to execute it at boot. The first thing I'd try is adding it to /etc/iftab; add a line at the end something like: en0 alias <address> netmask <netmask> The man page for iftab is more than a little bit fuzzy. If that doesn't work, a quick...
  17. V

    OS X and Multiple IP Addresses

    Yeah, but not on purpose. One of the fellows here was futzing about with a 3rd party network driver and happened to have the thing set up both in the 3rd party's startup script and in /etc/iftab. The system happily configured the network interface to respond to both address, and the system...
  18. V

    Stability Problems

    Well, I don't know how much I can help you. I'm not much of an Apple person, so I don't know the possibilities present in an Appletalk-only network. Enabling telnet is done by checking the "Turn on remote Telnet access" box in the Sharing control panel in System Preferences. You'll need to...
  19. V

    Stability Problems

    Have you tried turning on the telnet service and telnetting into the system? I occasionally have trouble with the GUI freezing, but I can usually telnet in when that happens. More often, I have trouble with the power going to my OS X box (which, due to a lack of outlets, is plugged into the...
  20. V

    Editing plain old text files

    My glib 'use vi' remark made me think of a can o' worms waiting to pounce on unwary MacOS X users: Classic uses ^M as the end of line while BSD use ^J. I..e, there are two flavors of text files on your system and half the tools aren't ready to deal with the text files created by the other...
Back
Top