Greetings, all!
OK. I've got a bin file. Initially, I thought I could mount() it, by simply performing the following:
But that only returned:
Meaning; It wasn't a readily recognizable filesystem.
So I ran file() against it, to get a better picture of exactly what I was working with. This returned:
OK. It's a bootable FreeBSD filesystem. While I should, I don't know how I might properly convert this new found knowledge into a mountable object, on my system. That I can investigate, or modify.
Anyone care to share some thoughts on how I might accomplish this (mdconfig(), mount(), ...)?
Thanks!
--Chris
OK. I've got a bin file. Initially, I thought I could mount() it, by simply performing the following:
Code:
mdconfig -a -t vnode -f ./my.bin -u 0
mount /dev/md0 /mnt
Code:
mount: /dev/md0: Invalid argument
So I ran file() against it, to get a better picture of exactly what I was working with. This returned:
Code:
x86 boot sector; partition 4: ID=0xa5, active, starthead 0, startsector 0, 50000 sectors, code offset 0x3c, BSD disklabel
Anyone care to share some thoughts on how I might accomplish this (mdconfig(), mount(), ...)?
Thanks!
--Chris