<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Architecting Life &#187; Finder</title>
	<atom:link href="http://xujiwei.com/blog/tags/finder/feed/" rel="self" type="application/rss+xml" />
	<link>http://xujiwei.com/blog</link>
	<description>Just do it</description>
	<lastBuildDate>Thu, 05 Apr 2012 17:19:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>解决 Finder 中挂载 Samba 出现“输入的文本似乎不是可识别的 URL 格式”错误</title>
		<link>http://xujiwei.com/blog/mount-samba-in-finder-problem/</link>
		<comments>http://xujiwei.com/blog/mount-samba-in-finder-problem/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 09:06:42 +0000</pubDate>
		<dc:creator>Xu Jiwei</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Samba]]></category>

		<guid isPermaLink="false">http://tmp.xujiwei.com/blog/?p=74</guid>
		<description><![CDATA[<a href="http://xujiwei.com/blog/mount-samba-in-finder-problem/" title="解决 Finder 中挂载 Samba 出现“输入的文本似乎不是可识别的 URL 格式”错误"></a>在公司里为了让笔记本和台式机共享文档，决定用内部的 Samba 做中转，但是在 Finder 中直接使用“连接到服务器”时，会出现“输入的文本似乎不是可识别的 URL 格式”错误，但是我输入的地址明明是 smb:// 开头的。 用这个错误信息在网上找了找，没有找到任何解决文案，遂放弃。 今天决定再尝试一下，换了个关键字，直接用“iDeneb samba”作为关键字来搜索，慢慢发掘之后还真找到了有用的信息：http://www.hackint0sh.org/f179/81233.htm 按照文中说明，到 /System/Library/Filesystems 目录下，把 afpfs.fs 删除，并重新创建到 /System/Library/Filesystems/AppleShare/afpfs.kext 的软链接，但是操作完之后还是会提示“输入的文本似乎不是可识别的 URL 格式”。 再找了找，找到了这篇：http://www.insanelymac.com/forum/i &#8230; opic=92989&#38;st=580，似乎说是系统安装完成时 afpfs.fs 到 /System/Library/Filesystems/AppleShare/afpfs.kext 的软链接少了开头的斜杠，也就是说它的软链接地址是 System/Library/Filesystems/AppleShare/afpfs.kext。 好吧，我在之前操作的时候为了省事，直接进入 Filesystems 目录用相对路径来创建软链接的，看了文章之后，老老实实的用全路径再次创建软链接，Command+K，双击，成功连上 Samba 服务器：） 完整的操作步骤也只有两步： sudo rm /System/Library/Filesystems/afpfs.fs sudo ln -s /System/Library/Filesystems/AppleShare/afpfs.kext /System/Library/Filesystems/afpfs.fs 注意：一定不能省略了路径最开始的斜杠（/）或者使用相对路径。 所以，如果你也是用黑苹果的，也碰到了这个问题，不妨试试这个解决方法吧。]]></description>
			<content:encoded><![CDATA[<a href="http://xujiwei.com/blog/mount-samba-in-finder-problem/" title="解决 Finder 中挂载 Samba 出现“输入的文本似乎不是可识别的 URL 格式”错误"></a><p>在公司里为了让笔记本和台式机共享文档，决定用内部的 Samba 做中转，但是在 Finder 中直接使用“连接到服务器”时，会出现“输入的文本似乎不是可识别的 URL 格式”错误，但是我输入的地址明明是 smb:// 开头的。</p>

<p>用这个错误信息在网上找了找，没有找到任何解决文案，遂放弃。</p>

<p>今天决定再尝试一下，换了个关键字，直接用“iDeneb samba”作为关键字来搜索，慢慢发掘之后还真找到了有用的信息：<a rel="external" href="http://www.hackint0sh.org/f179/81233.htm">http://www.hackint0sh.org/f179/81233.htm</a></p>

<p>按照文中说明，到 <em>/System/Library/Filesystems</em> 目录下，把 afpfs.fs 删除，并重新创建到 <em>/System/Library/Filesystems/AppleShare/afpfs.kext</em> 的软链接，但是操作完之后还是会提示“输入的文本似乎不是可识别的 URL 格式”。</p>

<p>再找了找，找到了这篇：<a rel="external" href="http://www.insanelymac.com/forum/index.php?showtopic=92989&amp;st=580">http://www.insanelymac.com/forum/i &#8230; opic=92989&amp;st=580</a>，似乎说是系统安装完成时 afpfs.fs 到 <em>/System/Library/Filesystems/AppleShare/afpfs.kext</em> 的软链接少了开头的斜杠，也就是说它的软链接地址是 <em>System/Library/Filesystems/AppleShare/afpfs.kext</em>。</p>

<p>好吧，我在之前操作的时候为了省事，直接进入 Filesystems 目录用相对路径来创建软链接的，看了文章之后，老老实实的用全路径再次创建软链接，Command+K，双击，成功连上 Samba 服务器：）</p>

<p>完整的操作步骤也只有两步：</p>

<blockquote>sudo rm /System/Library/Filesystems/afpfs.fs

sudo ln -s /System/Library/Filesystems/AppleShare/afpfs.kext /System/Library/Filesystems/afpfs.fs</blockquote>

<p><strong>注意：一定不能省略了路径最开始的斜杠（/）或者使用相对路径。</strong></p>

<p>所以，如果你也是用黑苹果的，也碰到了这个问题，不妨试试这个解决方法吧。</p>
]]></content:encoded>
			<wfw:commentRss>http://xujiwei.com/blog/mount-samba-in-finder-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

