Many GNU/Linux programs don't handle directly accessing files on other machines the way programs can in Windows (UNC paths).  This has to do with that dynamic UNC handing being part of your desktop manager rather than lower down in the software, so Gnome has its way to do it, and so does KDE.  So what you do is 'mount' those UNC paths to a directory on your machine.  Below, we make a directory to mount to (I chose /mnt/YourServerName/YourShareName).
<br><br>mkdir -p /mnt/YourServerName/YourShareName<br>mount -t cifs //YourServerName/YourShareName /mnt/YourServerName/YourShareName -o user=&lt;YourWindowsUserName&gt;,pass=&lt;YourWindowsPassword&gt;<br><br>Now the contents of //YourServerName/YourShareName will appear as if it were in  /mnt/YourServerName/YourShareName on the linux machine.&nbsp; But if you reboot you would have to re run the mount command, and that would be the suck.&nbsp; So there&#39;s this file called /etc/fstab, and you want to add the following line to it.&nbsp; This file lists things to be automounted when you boot up.
<br><br>//YourServerName/YourShareName&nbsp; /mnt/YourServerName/YourShareName&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; user=&lt;YourWindowsUserName&gt;,pass=&lt;YourWindowsPassword&gt; 0 0<br><br>-Billy<br><br><div><span class="gmail_quote">On 10/10/07, <b class="gmail_sendername">
Michael Haworth</b> &lt;<a href="mailto:rddesign@darkroad.com">rddesign@darkroad.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Alright, I have tried this by myself for three nights now, and I am tapped<br>out. I am running Ubuntu 7.04 on a machine that I am going to be hooking up<br>to my entertainment center (to replace the media center computer that is
<br>full of endless blue-screens). At this point, the only thing holding this<br>back is that I can&#39;t get mplayer (or VLC, totem, etc.) to play the video<br>from the share (on a server 2k3 machine), they return an error that there is
<br>&#39;no input plugin to handle the location of this movie&#39; - totally stumped.<br>Here are the steps that I have tried so far.<br><br>(server side)<br>Start -&gt; All Programs -&gt; Administrative Tools -&gt; Domain Controller Security
<br>Policy, then went to Local Policies: Security Options, and changed:<br><br>* Microsoft Network Server: Digitally sign communications (always): DISABLED<br>* Microsoft Network Server: Digitally sign communications (if client
<br>agrees): ENABLED<br>* Microsoft Network Client: Digitally sign communications (always): DISABLED<br>* Microsoft Network Client: Digitally sign communications (if server<br>agrees): ENABLED<br>* Domain Member: Digitally encrypt or sign secure data channel (always):
<br>DISABLED<br>* Domain Member: Digitally encrypt secure data channel (when possible):<br>ENABLED<br>* Domain Member: Digitally sign secure data channel (when possible): ENABLED<br><br>I have set appropriate permissions on the shares and the ntfs folders
<br><br>(client side)<br>* Installed the codec packs from automatix<br>* Installed smbfs &amp; smbclient<br>* Followed (or tried to) the directions at<br><a href="http://ubuntuforums.org/showthread.php?t=280473&amp;highlight=mounting+smb+share">
http://ubuntuforums.org/showthread.php?t=280473&amp;highlight=mounting+smb+share</a><br>s<br>* Also mapped the drives through the &#39;Connect to Server&#39; under Places<br><br>If I copy a file to the local drive, it plays fine, so I know that I have
<br>the correct codecs and permissions, all I need to figure out is how to fix<br>this last minor issue...<br><br>Any help is appreciated<br>Michael<br><br>_______________________________________________<br>Kclug mailing list
<br><a href="mailto:Kclug@kclug.org">Kclug@kclug.org</a><br><a href="http://kclug.org/mailman/listinfo/kclug">http://kclug.org/mailman/listinfo/kclug</a><br></blockquote></div><br>