<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How-to: Mount a Network drive in Ubuntu</title>
	<atom:link href="http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/</link>
	<description>adjective: of or pertaining to things that should work but go awry</description>
	<lastBuildDate>Wed, 14 Sep 2011 19:38:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: [Ubuntu] Mount a share</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1599</link>
		<dc:creator>[Ubuntu] Mount a share</dc:creator>
		<pubDate>Thu, 28 Jul 2011 11:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1599</guid>
		<description>[...] so, I&#039;m guessing you need to install smb/Samba on your Ubuntu machine.  This might shed some light How-to: Mount a Network drive in Ubuntu &#124; automaticable               Reply With Quote &#160;   [...]</description>
		<content:encoded><![CDATA[<p>[...] so, I&#039;m guessing you need to install smb/Samba on your Ubuntu machine.  This might shed some light How-to: Mount a Network drive in Ubuntu | automaticable               Reply With Quote &nbsp;   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How-to: Mount a Network drive in Ubuntu &#124; automaticable &#124; muistiinpanot</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1557</link>
		<dc:creator>How-to: Mount a Network drive in Ubuntu &#124; automaticable &#124; muistiinpanot</dc:creator>
		<pubDate>Sun, 26 Jun 2011 10:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1557</guid>
		<description>[...] How-to: Mount a Network drive in Ubuntu &#124; automaticable.   This entry was posted in Uncategorized. Bookmark the permalink.    &#8592; How to install firefox 5 on ubuntu &#124; Ubuntu Geek [...]</description>
		<content:encoded><![CDATA[<p>[...] How-to: Mount a Network drive in Ubuntu | automaticable.   This entry was posted in Uncategorized. Bookmark the permalink.    &larr; How to install firefox 5 on ubuntu | Ubuntu Geek [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ron hyatt</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1402</link>
		<dc:creator>ron hyatt</dc:creator>
		<pubDate>Fri, 25 Mar 2011 02:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1402</guid>
		<description>This is the kind of thing that turns people off linux.  This should be a checkbox or right click menu item &quot;logon to this drive every boot&quot; when you mount it.</description>
		<content:encoded><![CDATA[<p>This is the kind of thing that turns people off linux.  This should be a checkbox or right click menu item &#8220;logon to this drive every boot&#8221; when you mount it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JonathanSFL</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1349</link>
		<dc:creator>JonathanSFL</dc:creator>
		<pubDate>Mon, 03 Jan 2011 23:02:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1349</guid>
		<description>Using Ubuntu 10.04LTS
Why must I use the IP address to mount a (Win2K3 Svr) network drive using CIFS or SMBFS? 
I have the Windows server in my /etc/hosts file as: my_hostname_which_pings_fine  192.168.1.40
pinging hostname: my_hostname_which_pings_fine returns a solid ping
WORKS:
[CODE]
sudo mount -t cifs //192.168.1.40/Photos /media/mnt_club_id_images -o username=replication,password=mypassword
sudo mount -t smbfs //192.168.1.40/Photos /media/mnt_club_id_images -o username=replication,password=mypasswordsudo mount -t 
[/CODE/
FAILS:
[CODE]
sudo mount -t cifs //my_hostname_which_pings_fine/Photos /media/mnt_club_id_images -o username=replication,password=mypassword
sudo mount -t smbfs //my_hostname_which_pings_fine/Photos /media/mnt_club_id_images -o username=replication,password=mypasswordsudo mount -t 
[/CODE]

when i run the failing commands at command prompt I get error:
[ERROR]
mount.cifs kernel mount options: unc=//bst_webserver\Photos,ver=1,rw,username=replication,nounix,ip=192.168.1.40,pass=********
mount error(5): Input/output error
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

Why does the hostname use fail but the IP Address use succeeds??</description>
		<content:encoded><![CDATA[<p>Using Ubuntu 10.04LTS<br />
Why must I use the IP address to mount a (Win2K3 Svr) network drive using CIFS or SMBFS?<br />
I have the Windows server in my /etc/hosts file as: my_hostname_which_pings_fine  192.168.1.40<br />
pinging hostname: my_hostname_which_pings_fine returns a solid ping<br />
WORKS:<br />
[CODE]<br />
sudo mount -t cifs //192.168.1.40/Photos /media/mnt_club_id_images -o username=replication,password=mypassword<br />
sudo mount -t smbfs //192.168.1.40/Photos /media/mnt_club_id_images -o username=replication,password=mypasswordsudo mount -t<br />
[/CODE/<br />
FAILS:<br />
[CODE]<br />
sudo mount -t cifs //my_hostname_which_pings_fine/Photos /media/mnt_club_id_images -o username=replication,password=mypassword<br />
sudo mount -t smbfs //my_hostname_which_pings_fine/Photos /media/mnt_club_id_images -o username=replication,password=mypasswordsudo mount -t<br />
[/CODE]</p>
<p>when i run the failing commands at command prompt I get error:<br />
[ERROR]<br />
mount.cifs kernel mount options: unc=//bst_webserver\Photos,ver=1,rw,username=replication,nounix,ip=192.168.1.40,pass=********<br />
mount error(5): Input/output error<br />
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)</p>
<p>Why does the hostname use fail but the IP Address use succeeds??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ubuntu &#171; awayfromwindows</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1348</link>
		<dc:creator>Ubuntu &#171; awayfromwindows</dc:creator>
		<pubDate>Wed, 29 Dec 2010 09:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1348</guid>
		<description>[...] Samba einrichten [...]</description>
		<content:encoded><![CDATA[<p>[...] Samba einrichten [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danish</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1347</link>
		<dc:creator>Danish</dc:creator>
		<pubDate>Mon, 27 Dec 2010 08:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1347</guid>
		<description>very very helpful

thanks all</description>
		<content:encoded><![CDATA[<p>very very helpful</p>
<p>thanks all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: the dsc</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1343</link>
		<dc:creator>the dsc</dc:creator>
		<pubDate>Fri, 24 Dec 2010 20:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1343</guid>
		<description>BJ Turnner, changing the hostname for an IP may work. But of course it will not be good if the IP keeps changing. I&#039;m not being able to make it work as it was supposed to. Funnily enough, I can access the machine via smb:/hostname on konqueror, but I can&#039;t make a fstab mont.</description>
		<content:encoded><![CDATA[<p>BJ Turnner, changing the hostname for an IP may work. But of course it will not be good if the IP keeps changing. I&#8217;m not being able to make it work as it was supposed to. Funnily enough, I can access the machine via smb:/hostname on konqueror, but I can&#8217;t make a fstab mont.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linux commands &#8211; for Daily usage &#124; Синеочко</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1341</link>
		<dc:creator>Linux commands &#8211; for Daily usage &#124; Синеочко</dc:creator>
		<pubDate>Thu, 23 Dec 2010 23:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1341</guid>
		<description>[...] Mount a Network Drive in Ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] Mount a Network Drive in Ubuntu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stacey</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1310</link>
		<dc:creator>Stacey</dc:creator>
		<pubDate>Thu, 25 Nov 2010 19:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1310</guid>
		<description>Just add the name and IP address of your NAS to /etc/hosts unless you use DHCP of course.</description>
		<content:encoded><![CDATA[<p>Just add the name and IP address of your NAS to /etc/hosts unless you use DHCP of course.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maverick Steel</title>
		<link>http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/comment-page-1/#comment-1206</link>
		<dc:creator>Maverick Steel</dc:creator>
		<pubDate>Mon, 06 Sep 2010 09:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.automaticable.com/2008/01/18/how-to-mount-a-network-drive-in-ubuntu/#comment-1206</guid>
		<description>I&#039;ve got the same problem as BJ Turner. The path I&#039;m using I get from nautilus. In the folder, it appears as smb://mybookworld/public, so I added 
//mybookworld/public /media/networkshare smbfs guest 0 0

I get the error:
Warning: mapping &#039;guest&#039; to &#039;guest,sec=none&#039;
mount error: could not resolve address for mybookworld: No address associated with hostname
No ip address specified and hostname not found

So I replaced &#039;guest&#039; with my username, and that got rid of the first part. The &quot;mount error:&quot; / &quot;no ip address specified&quot; errors remained.

I also tried putting in various combinations of capital letters into the address, since the folder reads as MYBOOKWORLD/PUBLIC when browsing with nautilus (though not in the address, strangely). Also tried using \\mybookworld\public, in case it was formatted for windows or something. I&#039;m not sure if I should be able to do this, but I can&#039;t cd to the directory either using that address.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got the same problem as BJ Turner. The path I&#8217;m using I get from nautilus. In the folder, it appears as smb://mybookworld/public, so I added<br />
//mybookworld/public /media/networkshare smbfs guest 0 0</p>
<p>I get the error:<br />
Warning: mapping &#8216;guest&#8217; to &#8216;guest,sec=none&#8217;<br />
mount error: could not resolve address for mybookworld: No address associated with hostname<br />
No ip address specified and hostname not found</p>
<p>So I replaced &#8216;guest&#8217; with my username, and that got rid of the first part. The &#8220;mount error:&#8221; / &#8220;no ip address specified&#8221; errors remained.</p>
<p>I also tried putting in various combinations of capital letters into the address, since the folder reads as MYBOOKWORLD/PUBLIC when browsing with nautilus (though not in the address, strangely). Also tried using \\mybookworld\public, in case it was formatted for windows or something. I&#8217;m not sure if I should be able to do this, but I can&#8217;t cd to the directory either using that address.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

