Grub EFI USB ISOs unable to find live medium The Next CEO of Stack OverflowHow do I boot an ISO file from my drive using grub2 on UEFI machines?Can I create a dedicated partition for GParted and launch from GRUB?Ubuntu 10.04 and fedora 14 grub conflictproblem with setting up multiboot ISO usb using syslinuxGetting an error on Live USB boot: “(initramfs) Unable to find a medium containing a live file system”How to remove unnecessary EFI entries from GRUB?Unable to reduce Grub boot delayCan't boot Windows 7 from USB, GRUB still therewhen installing in EFI mode GRUB will find the ESP on its own?18.04 dual boot showing grub2 manualMac Mini 2.1 (32bit EFI / 64bit CPU) Ubuntu 18.04.2 Server - GRUB reports unknown filesystemBoot (Ubuntu) from grub manually

Workaholic Formal/Informal

What happens if you roll doubles 3 times then land on "Go to jail?"

Do I need to enable Dev Hub in my PROD Org?

Does it take more energy to get to Venus or to Mars?

Sending manuscript to multiple publishers

Won the lottery - how do I keep the money?

Between two walls

How to make a variable always equal to the result of some calculations?

Received an invoice from my ex-employer billing me for training; how to handle?

How did people program for Consoles with multiple CPUs?

Is it professional to write unrelated content in an almost-empty email?

Why did we only see the N-1 starfighters in one film?

Inappropriate reference requests from Journal reviewers

What is ( CFMCC ) on ILS approach chart?

Limits on contract work without pre-agreed price/contract (UK)

Is HostGator storing my password in plaintext?

Is there an analogue of projective spaces for proper schemes?

WOW air has ceased operation, can I get my tickets refunded?

Rotate a column

Is there a way to save my career from absolute disaster?

Is micro rebar a better way to reinforce concrete than rebar?

How to solve a differential equation with a term to a power?

Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?

What happened in Rome, when the western empire "fell"?



Grub EFI USB ISOs unable to find live medium



The Next CEO of Stack OverflowHow do I boot an ISO file from my drive using grub2 on UEFI machines?Can I create a dedicated partition for GParted and launch from GRUB?Ubuntu 10.04 and fedora 14 grub conflictproblem with setting up multiboot ISO usb using syslinuxGetting an error on Live USB boot: “(initramfs) Unable to find a medium containing a live file system”How to remove unnecessary EFI entries from GRUB?Unable to reduce Grub boot delayCan't boot Windows 7 from USB, GRUB still therewhen installing in EFI mode GRUB will find the ESP on its own?18.04 dual boot showing grub2 manualMac Mini 2.1 (32bit EFI / 64bit CPU) Ubuntu 18.04.2 Server - GRUB reports unknown filesystemBoot (Ubuntu) from grub manually










1















My goal:



Install grub2 EFI in a USB to be multiboot with ISOs.

I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.



What works:



Install grub in the USB from a live linux using chroot:



sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1


The USB boots the grub.



What does not work:



I add the menuentry, for example of clonezilla:



menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



... but I always get the error




Unable to find a medium containing a live file system




But from the grub console I can check that the paths and names are correct.

I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.



What am I doing wrong or what am I missing?










share|improve this question
























  • Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

    – oldfred
    Mar 7 at 4:16











  • This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

    – C.S.Cameron
    Mar 7 at 4:28












  • @oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

    – guillermo chamorro
    Mar 7 at 12:40











  • @C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

    – guillermo chamorro
    Mar 7 at 12:46











  • Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

    – oldfred
    Mar 7 at 13:56
















1















My goal:



Install grub2 EFI in a USB to be multiboot with ISOs.

I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.



What works:



Install grub in the USB from a live linux using chroot:



sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1


The USB boots the grub.



What does not work:



I add the menuentry, for example of clonezilla:



menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



... but I always get the error




Unable to find a medium containing a live file system




But from the grub console I can check that the paths and names are correct.

I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.



What am I doing wrong or what am I missing?










share|improve this question
























  • Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

    – oldfred
    Mar 7 at 4:16











  • This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

    – C.S.Cameron
    Mar 7 at 4:28












  • @oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

    – guillermo chamorro
    Mar 7 at 12:40











  • @C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

    – guillermo chamorro
    Mar 7 at 12:46











  • Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

    – oldfred
    Mar 7 at 13:56














1












1








1








My goal:



Install grub2 EFI in a USB to be multiboot with ISOs.

I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.



What works:



Install grub in the USB from a live linux using chroot:



sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1


The USB boots the grub.



What does not work:



I add the menuentry, for example of clonezilla:



menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



... but I always get the error




Unable to find a medium containing a live file system




But from the grub console I can check that the paths and names are correct.

I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.



What am I doing wrong or what am I missing?










share|improve this question
















My goal:



Install grub2 EFI in a USB to be multiboot with ISOs.

I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.



What works:



Install grub in the USB from a live linux using chroot:



sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1


The USB boots the grub.



What does not work:



I add the menuentry, for example of clonezilla:



menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



... but I always get the error




Unable to find a medium containing a live file system




But from the grub console I can check that the paths and names are correct.

I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.



What am I doing wrong or what am I missing?







grub2 live-usb iso grub-efi






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 1:23









zx485

1,47131215




1,47131215










asked Mar 6 at 22:19









guillermo chamorroguillermo chamorro

1063




1063












  • Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

    – oldfred
    Mar 7 at 4:16











  • This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

    – C.S.Cameron
    Mar 7 at 4:28












  • @oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

    – guillermo chamorro
    Mar 7 at 12:40











  • @C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

    – guillermo chamorro
    Mar 7 at 12:46











  • Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

    – oldfred
    Mar 7 at 13:56


















  • Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

    – oldfred
    Mar 7 at 4:16











  • This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

    – C.S.Cameron
    Mar 7 at 4:28












  • @oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

    – guillermo chamorro
    Mar 7 at 12:40











  • @C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

    – guillermo chamorro
    Mar 7 at 12:46











  • Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

    – oldfred
    Mar 7 at 13:56

















Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

– oldfred
Mar 7 at 4:16





Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…

– oldfred
Mar 7 at 4:16













This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

– C.S.Cameron
Mar 7 at 4:28






This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.

– C.S.Cameron
Mar 7 at 4:28














@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

– guillermo chamorro
Mar 7 at 12:40





@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.

– guillermo chamorro
Mar 7 at 12:40













@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

– guillermo chamorro
Mar 7 at 12:46





@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.

– guillermo chamorro
Mar 7 at 12:46













Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

– oldfred
Mar 7 at 13:56






Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…

– oldfred
Mar 7 at 13:56











1 Answer
1






active

oldest

votes


















0














I changed



menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



for



set root='hd0,1'

menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img



... and it works fine.





share























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123619%2fgrub-efi-usb-isos-unable-to-find-live-medium%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I changed



    menuentry "Clonezilla live (Default settings, VGA 800x600)"
    loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
    linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
    initrd (loop)/live/initrd.img



    for



    set root='hd0,1'

    menuentry "Clonezilla live (Default settings, VGA 800x600)"
    loopback loop /clonezilla-live-2.6.0-37-i686.iso
    linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
    initrd (loop)/live/initrd.img



    ... and it works fine.





    share



























      0














      I changed



      menuentry "Clonezilla live (Default settings, VGA 800x600)"
      loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
      linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
      initrd (loop)/live/initrd.img



      for



      set root='hd0,1'

      menuentry "Clonezilla live (Default settings, VGA 800x600)"
      loopback loop /clonezilla-live-2.6.0-37-i686.iso
      linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
      initrd (loop)/live/initrd.img



      ... and it works fine.





      share

























        0












        0








        0







        I changed



        menuentry "Clonezilla live (Default settings, VGA 800x600)"
        loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        initrd (loop)/live/initrd.img



        for



        set root='hd0,1'

        menuentry "Clonezilla live (Default settings, VGA 800x600)"
        loopback loop /clonezilla-live-2.6.0-37-i686.iso
        linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        initrd (loop)/live/initrd.img



        ... and it works fine.





        share













        I changed



        menuentry "Clonezilla live (Default settings, VGA 800x600)"
        loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        initrd (loop)/live/initrd.img



        for



        set root='hd0,1'

        menuentry "Clonezilla live (Default settings, VGA 800x600)"
        loopback loop /clonezilla-live-2.6.0-37-i686.iso
        linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
        initrd (loop)/live/initrd.img



        ... and it works fine.






        share











        share


        share










        answered 1 min ago









        guillermo chamorroguillermo chamorro

        1063




        1063



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123619%2fgrub-efi-usb-isos-unable-to-find-live-medium%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

            Where else does the Shulchan Aruch quote an authority by name?Parashat Metzora+HagadolPesach/PassoverShulchan Aruch UTF-8Anonymous glosses in the Shulchan AruchWhy is the Shulchan Aruch definitive?Siman 32, Kitzur Shulchan Aruch: UntranslatedLitvaks/Yeshivish and Shulchan AruchBuying a Shulchan AruchEnglish version of SHULCHAN ARUCHIs there any place where Shulchan Aruch rules with the Rosh against the Rif and Rambam?Are there practices where Sepharadim do not hold by Shulchan Aruch?5th part of the shulchan aruch

            fallocate: fallocate failed: Text file busy in Ubuntu 17.04? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)defragmenting and increasing performance of old lubuntu system with swap partitionIssue with increasing the root partition from the swapthis /usr/bin/dpkg returned error || ubuntu-16.04, 64bitDefault 17.04 swap file locationHow to Resize Ubuntu 17.04 Zesty Swap file size?Ubuntu freezes from online formsMy Laptop is not starting after upgrade ubuntu 16.04 (Kernel 4.8.0-38 to 04.10.0-36)hcp: ERROR: FALLOCATE FAILED!Not sure my swap is being usedWine 3.0 asking for more virtual free swap