MINIX 3 use Minix File System (MFS). More precisely MFS V3.
Also it supports ext2 which can be used as root fs. Another supported
filesystems are ISO9660FS, NTFS (fuse-ntfs-3g, it is not merged into
master yet), HGFS and ProcFS.
On Sat, Oct 8, 2011 at 9:33 PM, Patchaiappan
<greenlowj...@gmail.com> wrote:
> Can anyone tell me what file system is the MINIX 3 using.
>
> --
> You received this message because you are subscribed to the Google Groups "minix3" group.
> To post to this group, send email to min...@googlegroups.com.
> To unsubscribe from this group, send email to minix3+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/minix3?hl=en.
>
>
--
Evgeniy Ivanov
Yes, the Linux kernel supports MFS V1/V2 and V3 filesystems.
--
--------------------
Maurizio Lombardi
On Sun, Oct 9, 2011 at 5:15 PM, Paul <paul-...@hotmail.co.uk> wrote:
> So in reality, a fully EXT2 based Minix system is not really feasable
> (yet)?
It is feasible, but it requires some work. I recall that somebody from
VU did a ext2 based MINIX installation.
Though there are almost no reasons for that, because ext2 and MFS are
pretty similar.
--
Evgeniy Ivanov
You must use the -t option, try the following command:
#mount -t minix /dev/hdb1 /mnt/minix
Cheers,
--
--------------------
Maurizio Lombardi
It should work if your MINIX file system is installed on /dev/c0d1p0;
it is not the most usual option though.
<UNTESTED>
Assuming that MINIX is installed in /dev/c0d1p0s[012], and assuming
there are no extended (DOS) partition on the drive, you would try
mount -t minix /dev/hdb5 /mnt/minix
mount -t minix /dev/hdb7 /mnt/minix/usr
mount -t minix /dev/hdb6 /mnt/minix/home
</UNTESTED>
Antoine
Command I've used to check which device have minix partitions...
#dmesg | grep minix
[ 2.585994] sda1: <minix: sda5 sda6 sda7 >
Also check if your linux kernel supports minix filesystem:
#grep minix /proc/filesystems
minix
If no result then filesystem is not supported or its compiled as module
and not yet loaded so, try:
#sudo modprobe minix
#grep minix /proc/filesystems
If still no positive result then I would rebuild linux kernel and make
sure that minix filesystem is compiled within...
BR,
Janne
> Command I've used to check which device have minix partitions...
> #dmesg | grep minix
> [ 2.585994] sda1: <minix: sda5 sda6 sda7 >
Ah, nice trick. I was wondering how to to get the device names
for the subpartitions!
You can also check your kernel config using one of these commands:
# grep MINIX /boot/config-`uname -r`
# zgrep MINIX /proc/config.gz
CONFIG_MINIX_FS=y <- built into kernel
CONFIG_MINIX_FS=m <-separate kernel module
CONFIG_MINIX_FS is not set <- No Minix support
CONFIG_MINIX_SUBPARTITION <-will either be "y" or "is not set"
- Jeff
- Jeff
On Wed, Oct 12, 2011 at 7:59 PM, Janne Kiiski <janne....@gmail.com> wrote:
> On 10/11/2011 12:03 AM, Maurizio Lombardi wrote:
>>>
>>> mount /dev/hdb1 /mnt/minix
>>> but linux doesn't like this, does minix not use the traditional
>>> partition system?
>>
>> You must use the -t option, try the following command:
>>
>> #mount -t minix /dev/hdb1 /mnt/minix
>>
>> Cheers,
>
> Command I've used to check which device have minix partitions...
>
> #dmesg | grep minix
> [ 2.585994] sda1: <minix: sda5 sda6 sda7 >
Good trick. But I believe, that "fdisk -l /dev/sda" shows it as well.
> Also check if your linux kernel supports minix filesystem:
>
> #grep minix /proc/filesystems
> minix
>
> If no result then filesystem is not supported or its compiled as module and
> not yet loaded so, try:
>
> #sudo modprobe minix
> #grep minix /proc/filesystems
>
> If still no positive result then I would rebuild linux kernel and make sure
> that minix filesystem is compiled within...
>
> BR,
> Janne
>
> --
> You received this message because you are subscribed to the Google Groups
> "minix3" group.
> To post to this group, send email to min...@googlegroups.com.
> To unsubscribe from this group, send email to
> minix3+un...@googlegroups.com.