0

I'm trying to mount an iso on my ubuntu 11.04 natty

when I

df - T 

I get that ext4 is my filesystem

However when I try to mount the iso using the

mount -o loop -t ext4 ....

I get :

can't find ext 4 filesystem

Any solutions to that?

Thanks for your help

Alon_T
  • 1,430
  • 4
  • 26
  • 47
  • This is [off-topic for Stack Overflow](http://stackoverflow.com/faq#questions). You might want to ask about this on [Ask Ubuntu](http://askubuntu.com), [Unix.SE](http://unix.stackexchange.com), or [Super User](http://superuser.com) (but search for it there first!). – Eliah Kagan Jan 07 '13 at 00:37

1 Answers1

1

In the mount command, the -t parameter specifies the type of the filesystem being mounted, not the place where the directory is where the new filesystem will be mounted onto. You say that the filesystem you're about to mount is an ISO file. So the type is probably iso9960.

This question really belongs on superuser or serverfault.

Windows programmer
  • 7,871
  • 1
  • 22
  • 23