<?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>Wojciech Jamrozy blog &#187; Freebsd</title>
	<atom:link href="http://www.wojtekrj.net/category/freebsd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wojtekrj.net</link>
	<description>Blog about computer science, programming and linux</description>
	<lastBuildDate>Sun, 23 Oct 2011 21:57:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[Ubuntu, Freebsd] How to mount Freebsd 7.2 partition under Ubuntu 9.04</title>
		<link>http://www.wojtekrj.net/2009/09/ubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04/</link>
		<comments>http://www.wojtekrj.net/2009/09/ubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 11:45:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebsd]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[mounting]]></category>
		<category><![CDATA[partition]]></category>
		<category><![CDATA[ufs]]></category>

		<guid isPermaLink="false">http://www.wojtekrj.net/?p=322</guid>
		<description><![CDATA[1. Be sure you have following options checked in your Ubuntu kernel: File systems -&#62; Miscellaneous filesystems -&#62; UFS file system support (read only) (UFS_FS) File systems -&#62; Partition Types -&#62; PC BIOS (MSDOS partition tables) support (MSDOS_PARTITION) -&#62; BSD disklabel (FreeBSD partition tables) support (BSD_DISKLABEL) Default kernel for Ubuntu has already this options. 2. [...]]]></description>
			<content:encoded><![CDATA[<p>1. Be sure you have following options checked in your Ubuntu kernel:<br />
File systems -&gt; Miscellaneous filesystems -&gt; UFS file system support (read only) (UFS_FS)<br />
File systems -&gt; Partition Types -&gt; PC BIOS (MSDOS partition tables) support (MSDOS_PARTITION) -&gt; BSD disklabel (FreeBSD partition tables) support (BSD_DISKLABEL)<br />
Default kernel for Ubuntu has already this options.</p>
<p>2. After rebooting type in console:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dmesg</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> bsd</pre></div></div>

<p>You shoud receive similar output:</p>
<pre>[ 2.108529] sda4: &lt;bsd: sda8 sda9&gt;</pre>
<p>It means that you have Freebsd installed on sda4 partition, and sda8 and sda9 are so-called &#8220;slices&#8221;</p>
<p>3. Use command similar to:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-t</span> ufs <span style="color: #660033;">-r</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">ufstype</span>=ufs2 <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda8 <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">free</span></pre></div></div>

<p>For older versions of Freebsd:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-t</span> ufs <span style="color: #660033;">-r</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">ufstype</span>=44bsd <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda8 <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">free</span></pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-t</span> ufs <span style="color: #660033;">-r</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">ufstype</span>=ufs <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda8 <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">free</span></pre></div></div>

<p>might be more suitable.</p>
<p><a class="a2a_button_wykop" href="http://www.addtoany.com/add_to/wykop?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Wykop" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/wykop.png" width="16" height="16" alt="Wykop"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Digg" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_msdn" href="http://www.addtoany.com/add_to/msdn?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="MSDN" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/msdn.png" width="16" height="16" alt="MSDN"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_technotizie" href="http://www.addtoany.com/add_to/technotizie?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="Technotizie" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/technotizie.png" width="16" height="16" alt="Technotizie"/></a><a class="a2a_button_technet" href="http://www.addtoany.com/add_to/technet?linkurl=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;linkname=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" title="TechNet" rel="nofollow" target="_blank"><img src="http://www.wojtekrj.net/wp-content/plugins/add-to-any/icons/technet.png" width="16" height="16" alt="TechNet"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.wojtekrj.net%2F2009%2F09%2Fubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04%2F&amp;title=%5BUbuntu%2C%20Freebsd%5D%20How%20to%20mount%20Freebsd%207.2%20partition%20under%20Ubuntu%209.04" id="wpa2a_2">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wojtekrj.net/2009/09/ubuntu-freebsd-how-to-mount-freebsd-7-2-partition-under-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

