But I can not connect from my Mac to the Z be it with Samba or FTP.
So my questions are (be aware that I don't know anything about Linux):
1. How can I check if Samba is running
Open a terminal (e.g. ssh or using a local terminal). Type ps -ef and watch out for "smbd"
2. Do I need to have a fix IP address or can I use a dynamic one as I'm doing currently?
I found an article in ZUG which has a listing with a lot of commands and adjustments to configure Samba over WiFi - is all that programming necessary?
Unfortunately, yes.
The Samba server "smbd" is configured by Sharp so that it can be accessed only through the USB line. This is a security feature since otherwise, anybody would be able to insert any code (virus, trojan horse, spyware, ...) into your PDA. USB is seen to be an interface where you need to have "local" access to the device. So it is more protected.
There are a lot of commands to issue to configure the smbd differently so that it reacts on other access methods like WLAN.
To copy files, I usually recommend to either use the USB cable or a memory card. Or make a tar package, send over ssh and unpack. This could look like (commands issued in a Mac Terminal!):
(cd /someDirectoryOnYourMac; tar czf - filesToSend) | ssh root:password@192.168.129.201 sh -c "(cd /destinationDirectoryOnZaurus && tar xvzf -)
Unfortunately, this also copies the Resource forks of files to the Zaurus and I have not yet found an option to switch that off.
-- hns