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:
Uget-Best download Manger for Ubuntu Linux Uget (formerly urlgfe) is a Free and Open Source download manager written in GTK+ , it has many of features like easy-to-use , cross-platform (Wind… Read More
How to add Twitter (twitgin) in Pidgin for LinuxPidgin does not support Twitter protocol by default. Hence you need to install a plugin for that. There are a lot of plugins available to add twitter … Read More
Howto Record Video Using VLC in Ubuntu / Debian VLC can also used for recording videos during Playback. But, By default the record button is hidden in VLC. First you have to enable the Record Butt… Read More
Speed up Ubuntu Linux - Fine tuning UbuntuSpeed launch your Ubuntu using the following steps Stop unnecessary Applications and Services that start automatically at boot time. First Stop the… Read More
Simple Linux Socket Programming in UbuntuNormally, people start learning programming with some simple typical Hello World sample. However, I'm searching for some challenge as my first try. So… Read More
0 comments:
Post a Comment