In the A768 there is a samba daemon which makes it possible to see the files of the phone as a network drive in windows.
If you have installed the drivers on the PC and connect the phone to the PC with an USB cable, the phone gets assigned an IP adress if you go to setup->usb net->on in the phone.

Assume the IP address is 169.254.142.2.
Then in windows you can "dir \\169.254.142.2\home" or ""dir \\169.254.142.2\system" to view the files in the pone.

Normally, \\169.254.142.2\home is assigned to the Z: drive on windows with "net use Z: \\169.254.142.2\home".

On the phone, this is achieved by the samba server "/usr/sbin/smbd".
It is started with "/usr/sbin/smbd -- -D -l /dev/null".
(See /etc/init.d/samba)

The samba configuration is in /etc/samba/smb.conf

Jens Martin Schlatter