Results 1 to 10 of 10

Thread: Suggestions on a good ISO or IMG creator?

  1. #1
    Join Date
    Jan 2010
    Beans
    261
    Distro
    Ubuntu 12.04 Precise Pangolin

    Suggestions on a good ISO or IMG creator?

    Hello again!

    I had a strange curiosity... I'd only used a couple ISO creator (rip the image form disk type o' thing) apps, like AcetoneISO and liked it.... but would anyone have another suggestion on a better program?
    When your entire life is measured in one moment, you change the concept of time.

  2. #2
    Join Date
    May 2006
    Beans
    167

    Re: Suggestions on a good ISO or IMG creator?

    Better, what do you mean? What features do you need?

  3. #3
    Join Date
    Jan 2010
    Beans
    261
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Suggestions on a good ISO or IMG creator?

    Easier to use I guess.... Creating ISO's from a disk seemed to be a pain in the backside and would never work when I tried them in virtualbox.... though I didn't exactly use a legitimate Microsoft Windows 7 disc (I'm in Iraq so piracy isn't even a word).... But it still should've worked if it installed on two computers.

    As far as I could tell it was odd to burn ISO's back onto a blank disc.

    Perhaps I mean a more graphical way? My friend had the same issues... we're both just looking at alternatives. If not, I'll stick to Acetone, it's a very good program.
    When your entire life is measured in one moment, you change the concept of time.

  4. #4
    Join Date
    Jun 2009
    Location
    0000:0400
    Beans
    Hidden!

    Re: Suggestions on a good ISO or IMG creator?

    dd can do this for you:
    Code:
    dd if=/dev/cdrom of=/path/to/cdimage.iso bs=1M
    You could make this into a bash function...
    Code:
    makeiso () {
      dd if=/dev/cdrom of="$*" bs=1M
    }
    And then add this to your ~/.bash_aliases. Then, to make an iso, you'd only have to open a prompt and type "makeiso nameofimage.iso".

  5. #5
    Join Date
    May 2006
    Beans
    167

    Re: Suggestions on a good ISO or IMG creator?

    Quote Originally Posted by JiuJitsu500 View Post
    Easier to use I guess.... Creating ISO's from a disk seemed to be a pain in the backside and would never work when I tried them in virtualbox.... though I didn't exactly use a legitimate Microsoft Windows 7 disc (I'm in Iraq so piracy isn't even a word).... But it still should've worked if it installed on two computers.

    As far as I could tell it was odd to burn ISO's back onto a blank disc.

    Perhaps I mean a more graphical way? My friend had the same issues... we're both just looking at alternatives. If not, I'll stick to Acetone, it's a very good program.
    Of course I would suggest to use AcetoneISO, nothing more simple. About Windows 7, that's because it's an UDF file system. I think AcetoneISO doesn't correctly support making images of an UDF disc. It's also unable to mount UDF images.

  6. #6
    Join Date
    Jan 2010
    Beans
    261
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Suggestions on a good ISO or IMG creator?

    Well.... I didn't expect such great answers I like the Bash idea and using dd.... I think I'll have to try this out in a little while. I got those commands saved in a document now... sweet... And the file made.

    And I though Acetone would be what most suggest, I'd probably do the same. It is damn easy after all. Thanks for the replys to both of you!

    And as for UDF, any way to convert it to something usable in virtualbox? I don't need it, but it would definately be cool... I have Windows XP Vienna concept in one, and not everyone likes it. Like 3 people I think want iTunes on their boxes (because of the lack of support for all the phones and touches coming out).... And Zune is too easy, but if there were an app for Zune I'd like to know.... even if installing a linux-based software on it would do the trick (though I do NOT want to lose my music, I already deleted my whole external hard drive on accident)....
    When your entire life is measured in one moment, you change the concept of time.

  7. #7
    Join Date
    May 2006
    Beans
    167

    Re: Suggestions on a good ISO or IMG creator?

    Quote Originally Posted by JiuJitsu500 View Post
    Well.... I didn't expect such great answers I like the Bash idea and using dd.... I think I'll have to try this out in a little while. I got those commands saved in a document now... sweet... And the file made.

    And I though Acetone would be what most suggest, I'd probably do the same. It is damn easy after all. Thanks for the replys to both of you!

    And as for UDF, any way to convert it to something usable in virtualbox? I don't need it, but it would definately be cool... I have Windows XP Vienna concept in one, and not everyone likes it. Like 3 people I think want iTunes on their boxes (because of the lack of support for all the phones and touches coming out).... And Zune is too easy, but if there were an app for Zune I'd like to know.... even if installing a linux-based software on it would do the trick (though I do NOT want to lose my music, I already deleted my whole external hard drive on accident)....
    To make an iso of Windows 7, try this command:

    genisoimage -udf -J -o windows7.iso /Path_to_Mounted_Windows7_Cdrom


    On a default system it should be,

    genisoimage -udf -J -o windows7.iso /media/cdrom


    Please keep in mind genisoimage support to UDF filesystem is labeled as ALPHA status.
    Last edited by bulletxt; January 21st, 2010 at 04:14 PM.

  8. #8
    Join Date
    Sep 2007
    Beans
    94
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Suggestions on a good ISO or IMG creator?

    How about K3B?

  9. #9
    Join Date
    May 2006
    Beans
    167

    Re: Suggestions on a good ISO or IMG creator?

    Quote Originally Posted by bolucpap View Post
    How about K3B?
    K3B uses mkisofs/genisoimage as backend. Exactly like AcetoneISO.

  10. #10
    Join Date
    Jan 2010
    Beans
    261
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Suggestions on a good ISO or IMG creator?

    Sweet.... so I'll stick with Acetone after all and those crazy commands.... I will try both to see if I can get a bootable version for sure...

    How about Windows XP now though, I have an XP Black DVD... how would this come out? The Vienna works great so I think Black should too.... but I don't know
    When your entire life is measured in one moment, you change the concept of time.

Bookmarks

Posting Permissions

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