Hello Guest,
Although this is more a Linux question than a Zaurus question, I\'ll answer it. You obviously need the right components (samba ipk\'s or your own compiled arm binaries) to do this on a Zaurus system.
1. Search through the network for Windows or Samba file-sharing devices.
nmap -port 139 192.168.1.1-254
2. Once you have the IP addresses of the devices running Windows shares, you need to find the Netbios names of these computers.
nmblookup -A 192.168.1.10
3. Now you have a valid name, time to check for shares on it.
smbclient -N -L win_pc_name
4. Finally you can use smbmount to mount the file share.
smbmount //win_pc_name/share_name /mnt/samba
5. Use standard Linux console commands or File Explorer to browse through the files on the share.
Note that password-protected shares will need you to enter username and password at appropriate stages.
Regards,
Edo. :idea: