Search results

  1. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    It looks like you got rid of name and replaced it with volume name, which seems like a good choice to eliminate ambiguity. I assume that if I don't specify server name but do specify hostname then previous behavior is unchanged, but if both are specified then server name should override...
  2. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    The hostname option, which is confusingly described in the docs as advertising the resolved IP address from the specified hostname, seems to be the only way to specify the server's name for AppleTalk (i.e. the name that shows up in the Chooser.) There is already an afp listen option for...
  3. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    That's strange. The documentation for afp.conf says that section names are case sensitive. For the above entry, the section name [Applications] means you should be seeing Applications as the volume name (i.e. the section name minus the enclosing brackets). The path value doesn't have to contain...
  4. thecloud

    MPEG2 playback on Mac OS 9?

    Just to make sure, I set up a new Mac OS 9.2.2 install in a VM, installed QuickTime 6.0.3 on top of that (since Mac OS 9.2.2 comes with QuickTime 5), then opened the .qup update file mentioned above. It installed the QuickTime MPEG2 file into the QuickTime Extensions directory.
  5. thecloud

    MPEG2 playback on Mac OS 9?

    Files with the .component extension are for OS X and go into /Library/QuickTime/. For OS 9, you are looking for a file named "QuickTime MPEG2" that goes into :System Folder:Extensions:QuickTime Extensions:. I think you probably need to install the third download here.
  6. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    That's what I thought too, but apparently I must have deselected it when I installed NetBSD because: arm64# dumpfs / | head file system: /dev/rdk1 format FFSv2 endian little-endian ... which means I didn't get extended attributes. If I had, the format would have been FFSv2ea. It looks like I...
  7. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    Your pre-System 7.5 systems will almost certainly be running the version of AppleShare that was installed with them. You probably didn't install an updated Mac OS 8 or 9 version of the AppleShare client extension onto your pre-7.5 system, which I think is the edge case that this refers to. It...
  8. thecloud

    EDUCOMP HyperCard Stacks

    For these specific images it's not a big deal, because the original disks had bad sectors and the checksum isn't going to be something you could use reliably to compare your image against someone else's copy. The images mount fine in an emulator and the files can be read. But imagine a scenario...
  9. thecloud

    EDUCOMP HyperCard Stacks

    Thanks for taking the time to image the floppies! One thing to keep in mind next time you make Disk Copy images: they do have a resource fork where the data checksum is saved. Resource fork information is lost when you upload the file as data to a server, unless you wrap the disk image in a...
  10. thecloud

    Netatalk 4.0 - Future-proofing Apple File Sharing

    Leopard was the last version of the Mac OS to support the AppleTalk protocol stack. No version since then has the required support in the kernel, so macOS cannot run atalkd directly. When you fire up atalkd on a macOS host, it will just print an error message and exit. If you want to use a macOS...
  11. thecloud

    EDUCOMP HyperCard Stacks

    Based on these two links, it appears they changed their name from EDUCOMP to EDUCORP around 1988. https://www.worthpoint.com/worthopedia/vintage-1987-catalog-educomp-public-1806771042 https://www.worthpoint.com/worthopedia/1988-educorp-catalog-mac-macintosh-4073672142 Was this the auction you...
  12. thecloud

    EDUCOMP HyperCard Stacks

    Surprisingly, Internet Archive doesn't seem to have the EDUCOMP/EDUCORP disk catalogs or the shareware disk collections. They used to be everywhere, like AOL disks. I probably have some put away in a box somewhere.
  13. thecloud

    EDUCOMP HyperCard Stacks

    EDUCOMP was a company who downloaded every piece of freeware and shareware they could find on BBS systems and internet archives, then published a catalog. You could buy disks from their catalog with collections of games, fonts, utilities, HyperCard stacks, dithered bitmap porn, you name it. It...
  14. thecloud

    TashRouter: An AppleTalk Router

    Here is a cleaner diff for the BSD support. With this change applied, TashRouter is working fine on NetBSD, and should behave as it did before on Linux. diff --git a/tashrouter/port/ethertalk/tap.py b/tashrouter/port/ethertalk/tap.py index eb0fba6..86223b2 100755 ---...
  15. thecloud

    TashRouter: An AppleTalk Router

    Indeed, that was the case. Now that I could see the router actually working, I ended up assigning one zone name to the LtoudpPort instance and a different single zone name to the TapPort instance, so all the Mini vMac instances appear in the "Danger Zone" and the rest of the network is...
  16. thecloud

    TashRouter: An AppleTalk Router

    YES!!! That was it! Didn't realize it *wasn't* supposed to match the actual interface address. Thank you for all the help! Now tap0 is showing all the expected communication between various nodes in net 1, net 2, and net 3. Mini vMac sees the Netatalk server, and the Powerbook G3 sees both...
  17. thecloud

    A/UX standalone program space is too small

    You have too much memory in the Quadra, maybe? The Apple Memory Guide has this to say about the Quadra 700: "Memory configurations above 20 MB have not been tested and are not officially supported by Apple Computer, Inc." You would need 32 bit memory addressing enabled to use >16MB of RAM. The...
  18. thecloud

    TashRouter: An AppleTalk Router

    Ugh. Thanks for catching that. I updated both atalkd and TashRouter configs so the same two zones are listed in the same order. It seems to pick the first one listed as the default zone. I commented out the specific line that rejects datagrams based on source node: # invalid values for...
  19. thecloud

    TashRouter: An AppleTalk Router

    One last update for tonight. I got multiple zones to appear on the Powerbook G3 by doing this: atalkd.conf: vioif0 -seed -phase 2 -net 2 -addr 2.22 -zone "EtherTalk Network" tap0 -seed -phase 2 -net 3 -addr 3.33 -zone "Danger Zone" route.py: router = Router('router', ports=(...
  20. thecloud

    TashRouter: An AppleTalk Router

    After restoring the TashRouter config to provide explicit network and zone information for the tap0 port, I am seeing AppleTalk nbp-lkup queries appear again on tap0 when the Chooser is opened in Mini vMac, and I also see both zones in the Chooser. If I omit the seed_* parameters, then incoming...
Back
Top