Extracted the data from the squashfs.img in the Centos 6 LiveDVD and then proceeded to try to mount the file ext3fs.img<br />
<br />
sudo mount -t ext3 -o loop squashfs-root/squashfs-root/LiveOS/ext3fs.img ext3-root/<br />
<br />
This failed with the following in dmesg:<br />
<br />
[27624.258466] EXT3-fs (loop1): error: couldn't mount because of unsupported optional features (240)<br />
<br />
Then decided to ommit the -t ext3 to let it mount figure out the filesystem and it worked:<br />
<br />
sudo mount -o loop squashfs-root/squashfs-root/LiveOS/ext3fs.img ext3-root/<br />
<br />
output from dmesg shows that it's ext4:<br />
<br />
[27957.697343] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null)<br />
<br />
The only reason I initialy thought that the filesystem was ext3 was because the name is ext3fs.img. Suggest renaming it to ext4fs.img
↧