Jump to content

Search the Community

Showing results for 'create bootable grub2 image'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Drives
    • Media
    • FAQ
    • Guides
  • ImgBurn
    • ImgBurn Support
    • ImgBurn Bugs
    • ImgBurn Suggestions
    • ImgBurn Translations
    • ImgBurn General
  • Other
    • Chat
    • Test

Calendars

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Hello everyone, i'm creating a digital archive of my favourite games. I've succesfully copied many CDs and DVDs without issues, but i can't create a .bin file from Thief the dark project. After troubleshooting i assume that the soldout software is preventing IMGburn from reading the CD. The process is stuck to session1 track 2. I think that the problem may be software protection. I don't know if that matters but the soldout software uses flash format to boot the setup. Any help would be greatly appreciated.
  2. It could be that the 2 image.dat files are just raw sector dumps, the same as an iso. are their sizes a multiple of 2048? try and open the one from the layer 0 folder in Write mode. if that use the ‘create .dvd file’ option in the tools menu and add both files to the list. Specify the layer break as whatever the size of layer 0 image.dat is, divided by 2048. Save the .dvd file and then load that in Write mode. you could test the .dvd file by mounting it in virtual clonedrive. If you can see the contents by browsing the virtual drive, go ahead and burn the .dvd to disc in write mode.
  3. I've no idea what you have there. Generally, it's not easy to determine what files exactly are on Layer 0 and which are are Layer 1. .DAT files could be anything. I just know they're not DVD Video. Is this some kind of car navigation disc, possibly? What contents are in the Layer 1 folder? Depending on what these files are for, this may or may not work. In Build mode, add all the files and folders from the Layer 0 folder to the root directory of the Project and repeat for the Layer 1 folder. If you are prompted to replace any files, you may as well give up because it's probably impossible to determine which files are the "real" ones (From Layer 0 or Layer 1.) and which are not. Then, create an ISO from this Build job and burn the ISO to a DVD DL disc.
  4. I am creating an image file (ISO) from a mounted Win 11 Pro ISO. I used the 'Extract Boot Image' option to extract the boot image from the mounted Win11 ISO. When I accept the option to 'use the boot image file in your current project', the Platform ID is set to 80x86. My system,though, is UEFI. Before I save the project should I change the Platform ID to UEFI or leave it at 80x86? If I do change the Platform ID from 80x86 to UEFI prior to the build, will this create a problem during future Win 11 boot installations with a USB boot drive created by Rufus from the ISO?
  5. Sorry for a very late reply, due to the very poor/varying quality of affordable DL Blu-ray I pretty much stopped using them. But I used Google Gemini AI to write a script in Powershell, for BD movies, basically it is like this : First a couple of notes: I don't know Powershell. This was pretty much entirely written by Gemini. I just changed the layer size a bit. The code has no error correction or anything. If the STREAM-folder is close to 50GB it won't work. It will only accept the STREAM-folder (for BD movies, script depends on all big files being in the same folder - for data discs it could be other folder than STREAM folder obviously). param( # Path to the folder containing the files [Parameter(Mandatory=$true)] [string] $FolderPath ) # Set the size limits in bytes $maxSizeLayer = 24000000000 # Function to get the total size of files function Get-TotalFileSize { param( [Parameter(Mandatory=$true)] [string[]] $FilePaths ) $fileSizes = $FilePaths | ForEach-Object { Get-Item $_ -Force | Select-Object Length } $fileSizes | Measure-Object -Sum | Select-Object -ExpandProperty Sum } # Get all files in the folder sorted alphabetically $files = Get-ChildItem -Path $FolderPath -File | Sort-Object Name # Track the total size and last added file $totalSize = 0 $lastFile # Loop through files until reaching limit foreach ($file in $files) { $fileSize = $file.Length if ($totalSize + $fileSize -lt $maxSizeLayer) { $totalSize += $fileSize $lastFile = $file } else { break } } $paddingFileSize = (25GB - $totalSize) # Calculate padding file size $paddingSize = $paddingFileSize # Check if padding is needed if ($paddingFileSize -gt 0) { # Create padding filename based on last added file $paddingFileName = ($lastFile.Name.Split('.')[-2] + "dummy") + "." + ($lastFile.Name.Split('.')[-1]) $paddingFilePath = Join-Path $FolderPath -ChildPath $paddingFileName # Write message about padding file Write-Host "Creating padding file: $paddingFileName with size: $($paddingSize / 1KB) KB" fsutil file createNew $paddingFilePath $paddingSize } else { Write-Host "No padding file needed. Total size reached the limit." } To use this script, create a text document, for example padder.ps1 , I put my on my Desktop. Then I open Powershell, , and run Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process (My Windows is restricted from running scripts in Powershell) I then drag my script to the Powershell windows, run it, and drag the STREAM-folder, and will get something looking like this: PS C:\Users\MattKarma> Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process PS C:\Users\MattKarma> C:\Users\MattKarma\Desktop\Padder.ps1 cmdlet Padder.ps1 at command pipeline position 1 Supply values for the following parameters: FolderPath: C:\multiAVCHD\AVCHD\BDMV\STREAM Creating padding file: 00006dummy.m2ts with size: 3742564 KB File C:\multiAVCHD\AVCHD\BDMV\STREAM\00006dummy.m2ts is created PS C:\Users\MattKarma> Again, this is a very crude solution, and it also assumes the burning program burns files alphabetically and not based on when files were created or something else. It also assumes that the size of .mt2ts files are reasonable, I use something like 4000 MB m2ts media split in MultiAVCHD. If you have 3 15GB .m2ts files it won't work.
  6. Hello, I recently created a program to automate writing cue files based on the titles of MP3 files in a given directory. I followed the exact same format as imgburn's cue files and got the program to succeed even without putting in the line of the REM FILE DECODED size for each track: Imgburn could recognize the file and burn the disc with the exact CD text I desired. My only concern is that now, Imgburn performs 'Analyzing Audio Files' each time I want to burn the image files created with my program. This is opposed to it only doing it once when I create a cue file from Imgburn itself and it won't have to decode each file every time I want to burn that image. This isn't really a big deal; however, I do burn many copies of an image and having to convert files prior to each burn of the image would be a bit taxing on my computers. (I use older machines for burning.) I think this is only because I don't specify the REM file decoded size in my custom cue files from my program. I did some more digging and I saw someone able to do it when they were creating a similar program of writing cue files with python. I personally am using Java for my program and there was no good way of getting the decoded size of an MP3 in MM:SS:FF format. However, there is an easy way to just get the normal playable length of the MP3 file using java. This leads me to my question of: Can I just use the length of the MP3 file itself as the REM file decoded size? I also read somewhere that the length should be almost the same and the only difference would be a couple of frames; there are 74 frames in a whole second of audio so I would only be compromising a maximum of a single second in audio? I really wouldn't notice that at all. But I just want to make sure that what I plan to do won't ruin the whole point of a traditional audio CD as opposed to a data CD of MP3s or MP3 CD. Another general question I had about the way Imgburn works: are these decoded files whenever Imgburn performs the 'Analyzing Audio Files' constructed in memory as the disc burns? I still can't piece my around how I have normal cue files that do not correspond with a binary file of the raw data structure of an audio CD. I feel like I read somewhere on the forum that the files are constructed in small segments in memory as the burn proceeds but I just wanted to confirm. I apologize for a very long initial post and I thank those who bother reading even a portion of it. Thanks for any help in advance!
  7. Hello experts. I'm in need of create image file from optical disc in these 3 formats: dmg , pdi , gi It was on the list of ImgBurn supported formats, not sure if is read only or write also supported? If not, please advise which Windows software can do it? Or anywhere we can download a small disc image in dmg , pdi , gi formats? Thankssssss
  8. The Vinpower drive is actually an LG based on MT1959 chipset . I also have an LG with the same chipset, BH series , but it does not support Disc Quality or FE/TE in OptiDriveControl . I have a GTA V for PS4 that fails to install on the console but in ImgBurn i managed to create an ISO . I can't test any further since i don't have a compatible drive, looking for one.
  9. I created a 4 episode on DVD FAB and made a customized menu. DVD Burned fine. It plays on any drive connected to my computer but will NOT Play on the Sony DVD player I have connected to my TV. Just a blenk screen, no messges, nothing. don't know what file to submit. snapshots of one of the dvds follow: HL-DT-STBD-RE_BT10N GNOB (USB) Current Profile: BD-ROM Disc Information: Status: Complete State of Last Session: Complete Erasable: No Sessions: 1 Sectors: 10,343,200 Size: 21,182,873,600 bytes lime: 2298:31:25 (MM:SS:FF) MID: VERBAT-IMe-000 Supported Write Speeds: 2x, 4x, 6x TOC Information: Session 1... (LBA: 0) -> Track 01 (Mode 1, LBA: 0 - 10343199) -> LeadOut (LBA: 10343200) Disc Definition Structure: Certified: No Scanned: No Manufacturers Name: PIONEER Additional ID: BD-RW BDR-212V Serial Number: ADDL010097WL BD Disc Information: Disc ID: VERBAT-IMe-000 Disc Type: BD-R Disc Size: 120 mm Disc Class: 0 Disc Version: 1 Disc Time Stamp: 03/2010 Number of Layers: 1 Layer Type: Writable DVD Layer Present: No CD Laver Present: No Channel Bit Length: 74.50 nm (25 GB Per Layer) Push-Pull Polarity: Positive Recorded Mark Polarity: HTL| BCA Present: Yes Maximum Transfer Rate: Not Specified First PAA of Data Zone: 131,072 Last PAA of Data Zone: 1,658,494 Performance (Write Speed): Descriptor 1... - > BO: 0x02, B1: 0x00, B2: 0x00, B3: 0x00 - > EL: 12219391 (0x00BA73FF) - > RS: 26,973 KB/s (6x) - WS: 8,991 KB/s (2x) Descriptor 2... - > B0: 0x02, B1: 0x00, B2: 0x00, B3: 0x00 - > EL: 12219391 (0x00BA73FF) - > RS: 26.973 KB/s (6x) - WS: 17.982 KB/s (4x) Descriptor 3... - > BO: 0x02, B1:0x00, B2: 0x00, B3: 0x00 - > EL: 12219391 (0x00BA73FF) - > RS: 26,973 KB/s (6x) - WS: 26,974 KB/s (6x)
  10. While it seems madFLAC is pretty standard with ImgBurn, while not as convenient, I use Foobar2000 to convert FLAC back to standard WAV temporarily anytime I want to burn a standard Audio CD. but on Linux it appears I don't have much choice as, at least to my knowledge, madFLAC can't be setup on ImgBurn on Linux. so my ImgBurn is just on a basic installation which it can directly use WAV files without issue. so I guess the general point is... even if you can't get any special stuff (madFLAC etc) working with ImgBurn, as long as ImgBurn installs and it's basic function works, you can do what I do to create a standard Audio CD with ImgBurn.
  11. I bought a music box-set that contains a number of discs (CD, DVD Audio, Blu-ray audio). To prevent damage to the originals, I would like to create 1:1 disc clones (as my personal copies, ie. not for resale) and play those instead of my originals. Some of these formats contain 24bit/96kHz uncompressed, 24bit/192kHz uncompressed, 24-bit/48 kHz uncompressed, Dolby Digital @448 kbps, Dolby Digital @640 kbps. Can someone direct me on how I can create exact 1:1 copies. Thanks.(I'm located in Canada)
  12. This isn't really a bug, per se. More like a request to adjust disc type determination logic. Here's the scenario: I was trying to create a DVD Video disc with a VIDEO_TS in the root directory. The root directory also had an AVI file in it. ImgBurn detected the VIDEO_TS folder and then asked me if I wanted to make a DVD Video disc, which I said yes to. ImgBurn THEN detected the AVI file and asked me if I wanted to make a Divx Disc. I said no to that. Should the ImgBurn logic in this case determine if the user makes one choice, like in the above situation, it should refrain from asking to change the disc type again? Thanks!
  13. Downloaded ISO files, a folder, of gparted-live CD, 451mb, and tried to burn it onto an empty CD, but failed. Seems that it did not write anything onto the empty CD. No trace of writing on the empty CD. At the bottom of Imgburn, it says, Not Ready (Drive Can't Write inserted Disc). Help, please. How to burn ISO files of live CD onto an empty CD? Thank you.
  14. Can ImgBurn create an ISO of an existing Windows10 OS Hard Drive that has 3rd party apps already installed beforehand? My plan is to take this Win10 ISO and use it inside of a VirtualBox VM I have running in Linux Mint. Will my idea work? I ask because I am uncertain if ImgBurn can create an ISO of an existing Win10 OS. And also whether VirtualBox will accept such an ISO. If ImgBurn cannot create such an ISO please share any alternatives that may work. Any opinions welcome.
  15. Thanks for that Microsoft account workaround! I knew it existed, but I couldn't recall what it was. My setup is okay as it was a Windows 10 that I created back when local accounts were possible and upgraded to Windows 11. But, on my next new PC, I wanted to create a local account, but couldn't remember how to do it.
  16. Sorry for the late reply as I just noticed your post here a week later. anyways, I took a quick look online and I think I found the Reddit post you mentioned which is about 5 months ago. when I did my HWID stuff it was late October 2023. so less than 5 months ago when I did the HWID activation. but for kicks I installed Windows 10 in a fresh QEMU/KVM VM a moment ago. then checked activation status, which is not activated as expected, then I tried that HWID method and... it worked ; you can clearly see it's activated... 'Activation Windows is activated with a digital license'. before that it was in red saying it was not activated etc. but just to make sure the HWID activation method also still works on Win11, I tried Windows 11 on a fresh VM a moment ago and checked activation status and said not activated. then I ran the HWID method and it shows 'Windows is activated with a digital license'. just to do one last test to confirm it lasts... I completely deleted the VM's virtual hard drive and created one fresh, but used the same UUID when it was activated a moment ago on the previous VM's virtual hard drive, and... it still worked as you install Win11, skip over the activation part when it asks, then once you reach the desktop I checked activation status and it's activated with no further action needed on my end. so in short... that HWID still works on Win10/11. TIP: to dodge Microsoft's 'forced' Microsoft account junk just type in 'no at thankyou dot com' (with 'at' being '@' and 'dot' being '.') and then enter any random password (it does not matter what it is and you don't even need to remember it) and it will error shortly after that and allow a local account instead (which you then create with your own password like usual which you want to remember) as I saw that on another site and heard it worked but I never tried that until now and it worked exactly as they said.
  17. ImngBurn can create such an ISO, but whether that ISO will backup all files is questionable. And whether that ISO can be made "bootable" in a virtual machine or run as a Windows installation I wouldn't know. I've never done any virtualization, so I know nothing about VirtualBox.
  18. I'm copying several CDs and DVDs to preserve my collection of videogames. Never had an issue before, all the videogames are original and well preserved (all PC games from 1996-2000). This specific game is a multitrack CD and obviously i can't create an ISO file from a multitrack CD, therefore i was trying to create a .bin file, but suddently it's showing sectors:0 size:0bytes and the process remain stuck at session 1 track2. I've waited over 40 minutes, restarted, opened Imgburn as administrator, tried some troubleshooting without any progress. Am i missing something? It may be caused by the fact that i've reinstalled ImgBurn after several years and may have forgotten some plug-ins i should have installed?
  19. Good morning to the whole community. I'm trying to understand where is the mistake I'm making even though I have dozens of tests without a correct result, that is, I can't boot the ISO created from a bootable USB pen drive. Premise I downloaded Kaspersky Rescue Disk. The file is an ISO. I install the ISO on the pen drive through RUFUS. The pen drive is bootable and its operation is correct (tested on PC after bios post and before the operating system). Problem How do I get the reverse process now? That is, through imgburn I want to create a bootable ISO starting from the pen drive. Resolution (currently unsolved). Obviously I start the ImgBurn program, click on creating a new image from files/folders. I select the source letter of the pen drive, select the advanced tab, then select the bootable disk tab. I activate the make a bootable disk flag Now I tried to extract the boot image and insert it into the boot image. Start the creation of the ISO but the newly created file is not bootable (tested with a virtual machine) while the original ISO works correctly (again tested with a virtual machine). I also tried looking for a boot image from the disk, but I can't figure out which file to select and if there is any other flag or value I need to set This helps me understand which are the correct settings I need to use. The problem is that some programs allow you to directly create a bootable USB pen drive without the possibility of having an ISO to manage instead. Where is the error? Thank you
  20. Probably the program you are referring to is ventoy (open source). A utility that formats the USB pen drive and makes it multi-bootable. The program partitions the drive into two parts, the first with a very small operating system, the second available for the user to copy multiple bootable ISOs inside. Unfortunately OnTrack EasyRecovery does not create CDs or ISOs but only bootable USB pen drives. Extracting the files for a bootable ISO from the pen drive would be much more malleable and flexible as a solution, because an ISO can be managed much more easily without tying up a pen drive for a long time.
  21. I remember doing a search online towards the end of last year for something to make ISO's from bootable flash drives. I had this application that would create a bootable flash drive and then you could select ISO's from the flash drive for booting from. That way, you don't need multiple flash drives, just multiple ISO's on one flash drive. I found nothing that could make ISO's, like you said. And as I said, Macrium Reflect does not create ISO's. It instead uses a proprietary format. Is there a particular reason why you need ISO specifically and that any of those other program's read file formats aren't suitable?
  22. the basis of this thread is creating an ISO file from a bootable USB pen drive. I started from the Kaspersky Rescu Disk base because I had the test ISO and it is available for anyone who wants to answer me and find a solution. It is obvious that if I have an ISO that without it I have to create a bootable USB pen drive and then create the ISO again. I actually have a bootable USB stick with the OnTrack EasyRecovery program bootable. The program itself creates this bootable USB pen drive. There is no ISO that I could handle differently. So here's the dilemma. So like in the first post, I have a bootable USB pen drive and I want to get a bootable ISO file. There are also other programs that allow you to create bootable pen drives but do not create ISOs. Now if it exists (and I think so, perhaps we need to look in the boot image for the solution) let's try to find the solution. Thank you all
  23. If you have a bootable ISO you downloaded and wrote to a USB flash drive, why do you want to create a new bootable ISO? Did you add files to the flash drive and want them rolled up into a new bootable ISO? If so, for that, I use a piece of paid software called UltraISO. It allows you to inject files into an existing ISO.
  24. What’s the reason behind trying to create an iso from your usb stick rather than using the iso you originally downloaded? The original iso was meant for burning to disc. What Rufus has created on your usb stick isn’t.
  25. Well, very few people actually patrol the forums much anymore. So, you're probably not likely to get another answer. In the meantime, if you haven't tried this already, see this Guide: Unfortunately, this guide is fairly old and it was what I followed to try and create bootable ISO's that never booted.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.