Results 1 to 2 of 2

Thread: Mounting ARM img Issue

  1. #1
    Join Date
    2013-Mar
    Posts
    18

    Angry Mounting ARM img Issue

    UPDATE: I got around the mount issue by using macfuse and then copying into a disk image through vmware.


    I wasn't sure whether to throw this into the arm section or desktop section as it deals with both.

    I'm trying to mount the ss808 image in the desktop VM of Kali to work on a resize, and no matter what FS type I use I get something along the lines of:

    Code:
    Wrong FS type, bad option, bad superblock on dev/loop1
    and if I check dmesg, I get

    Code:
    error: can't find ext(x) filesystem on dev loopx
    Commands I've tried:

    Code:
    mount -o loop /img /mnt
    
    mount -o loop -t extx /img /mnt
    
    losetup /dev/loop0 /img
    mount -o loop -t ext4 /dev/loop /mnt
    I've tried mounting as ext2, 3 and 4. Same error.

    Any help would be awesome! Thanks!
    Last edited by expphoto; 2013-03-25 at 06:03.

  2. #2
    Join Date
    2013-Apr
    Posts
    14
    since its an img not an iso you have to set its offest, in this case 512. so you would mount it like "$sudo mount -o loop,offset=512 /path/to/kali.img /path/to/mountpoint"

    to determine the offset you need to multiply the block size by its start, fdisk -l the kali.img and you will find 512 and 1. hence 512 is your offset.

Similar Threads

  1. Mounting USB failed
    By koncleng in forum Installing Archive
    Replies: 3
    Last Post: 2017-11-29, 12:35
  2. mounting error
    By yhi in forum General Archive
    Replies: 1
    Last Post: 2016-06-27, 11:51

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •