Problem: I've set up Samba on my Linux box and can access my Windows shares fine. However, every time I want to access a file from my Windows share, Linux, difficult motherfucker that it is, downloads the file, stores it in a temp directory and then plays it.. So, if I want to play .. say a 1.4 GB movie, I have to download the entire damn thing across my network to see it.. Not Good Enough.
Solution: The solution is to mount the Windows share locally in Linux (not unlike Map Network Drive in Winblows), and this problem goes away. To accomplish this, the following steps have to be followed:
sudo apt-get install smbfs
mp3 in /media.cd /mediasudo mkdir mp3
sudo mount -t smbfs -o username=jubal //10.0.0.7/MP3 mp310.0.0.7 is the IP of my windows box and MP3 is the name of my share. You should now be asked to enter the password to access the share. Do so, and you are done.
If necessary, you can dump the mount information into /etc/fstab to mount the share on every boot.