For ext2fs filesystem Support under FreeBSD, You have to build a new kernel with ext2fs support. Put the line
options “EXT2FS”
in your kernel configuration file for the new kernel and compile.
or
Do the following steps to enable ext2fs support in the kernel:
# cd /usr/src/sys/modules/ext2fs
# make
# make install
You can use ‘kldload‘ to load the ext2fs module in to the kernel.
# kldload ext2fs
Then you will be able to mount your linux partitions by giving a command like:
# mount -t ext2fs /dev/ad1s1 /mnt
to unload module use
# kldunload ext2fs
To load the module automatically on system startup
add the following line in to /boot/loader.conf
ext2fs_load=”YES”
Mount A Linux Partition In FreeBSD
Related Posts:
Howto Create .ISO images from CD or DVD in Linux In Linux computer, we have a simple tool to create CD or DVD .ISO file. This is very helpfull to backup your CD and DVD into ISO images: T… Read More
How to Burn a CD’s/DVD’s in Ubuntu LinuxGnomeBaker is a Gnome CD/DVD burning application.GnomeBaker is a GTK2/Gnome CD/DVD burning application. I’ve been writing it in my spare time so progr… Read More
How to install PHP6 in ubuntu / Debian LinuxThe full stable version of PHP6 is not yet released. But pre-built package is available. Early birds can start now. You can install a development snap… Read More
How to Open and Extract .DAA Image FilesDAA stands for Direct Access Archive is PowerISO proprietary and private disk image format which supports compression, password protection, and split … Read More
How to Create and Extract RAR Files in LinuxI've been sharing mp3s with my close friends for years. We share mp3 files within our same interest in music. As I'm now a total Linux desktop user (I… Read More
0 comments:
Post a Comment