helvede.net is one of the many independent Mastodon servers you can use to participate in the fediverse.
Velkommen til Helvede, fediversets hotteste instance! Vi er en queerfeministisk server, der shitposter i den 9. cirkel. Welcome to Hell, We’re a DK-based queerfeminist server. Read our server rules!

Server stats:

159
active users

#localtalk

0 posts0 participants0 posts today

Think I finally cracked using jrouter, tashtalk and netatalk together to work with netatalk and #globaltalkk

- Separate systems for netatalk and tashtalk
- tashtalk and jrouter can be on the same system
- tashtalk and jrouter must use unique MAC addresses
- tashtalk uses tap interface on a network bridge
- jrouter uses network bridge
- netatalk uses network bridge
- netatalk atalkd.conf set to autodiscover on network bridge
- jrouter is a seed router, netatalk and tashtalk are non-seed routers
- Startup order is: jrouter, netatalk, tashtalk, clients

I tried many things to consolidate down to a single RaspberryPi, but even with adding a USB NIC for jrouter/tashtalk and netatalk on the internal NIC things still wouldn't work 100%.

Packets were somehow "eaten", which was odd because the AppleTalk zones would show up in Chooser, but the netatalk file server wouldn't, or when it did it could give an error when trying to connect to it.

#localtalk #livelaughlocaltalk #raspberrypi #retrocomputing #vintagemacs

Continued thread

The way it works is this:

1. A print is initiated from a device to the CUPS-PDF driver on my #netatalk Raspberry Pi.
2. The resulting PDF is placed in the AFP share of netatalk/afpd.
3. An emulated PPC Mac 9.2.2 running the #AppleScript below is watching for new files in that folder and will print them using Acrobat Reader to the #ImageWriterII via #LocalTalk using the MacPalette II driver.

It works, but crashes with dialog that I can't auto-dismiss.

I’ve been rebuilding a #RaspberryPi installation that supports my classic Mac habit 😄

I used to use the awesome #MacIPGW image which includes a ton of pre-configured software like #netatalk. But it hasn’t been updated in a while so I used it as excuse to start from scratch.

I used this Pi Zero W as my starting point. HDMI video stopped working on it for unknown reasons. I added an Ethernet/USB hub hat and a #TashTalk 2 hat for #LocalTalk devices.

Replied to paulrickards

@paulrickards Okay, here you go! Made a quick pair of #HyperCard stacks to show a queue counter over #LocalTalk.

The script to choose the display:

on mouseUp
global RepairsMac
answer program "Where is your Repairs Display?"
put it into RepairsMac
end mouseUp

And to increment:

on mouseUp
global RepairsMac
put cd fld "RepairsServing" into temp
add 1 to temp
put temp into cd fld "RepairsServing"
send "put "&temp&" into cd fld Display" to program RepairsMac
end mouseUp