Skip to main content

How To Mount Linux Partitions Under FreeBSD

To mount ext2fs filesystems under FreeBSD(a free Unix-like operating system descended from AT&T UNIX via BSD UNIX.), you first 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.
Read the FreeBSD handbook to learn how to do that.

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”

Popular posts from this blog

Minecraft - Pocket Edition - $4.91 game for free

Mine Craft, a widely known game name worldwide. It is one of the most favorite games in the world. This game is now available for android mobile. Mine craft - pocket edition is all about building and surviving. This game is mostly created based on graphical blocks.  Google play store has this game up for $4.91. ETT is giving away the game absolutely for free. Download Minecraft - Pocket Edition from the bellow link. Minecraft - Pocket Edition

Download Apple Mac Theme for Windows

Most of the computer users in the world use clone PCs other than apple mac. So none of them gets the feeling of using an apple mac operating system. There is no easy way to use apple mac OS in the general clone PCs, but the user interface can be made like apple just by using this apple mac theme. This apple mac theme is very easy to install and use.  It can be installed normally.

How to create Windows 10 ISO from current installation

Microsoft Windows 10 is the most popular & need to use operating system these days. For both official and personal purposes. Each time you install a fresh windows 10 you have to install a bunch of required software. What if we could avoid that by making an ISO installation file of our own along with all of our required software already installed in it! Yup! For those who are looking for these options, this tutorial is for them. Let's find out how to create an installation media (ISO file) of Windows 10 from the current installation. To create an ISO file from the currently running Windows 10, you have to follow the below steps. 1. Download Microsoft's media creation tool. 2. Choose  Create installation media (USB flash drive, DVD, or ISO) for another PC  and hit Next . 3. Choose your preferred version of windows, architecture (32/64/amd), and language. Hit Next . 4. Choose ISO and hit Next  to start the ISO creation process. 5. Once complete, you will have an ISO ima...