Request for information from EFI Windows/Linux dual-booters

Hi,
As many of you know, I'm the developer of the rEFInd boot manager. I'm currently adding a new feature to rEFInd, the intent of which is to kick the Windows recovery boot options off of the main list of OSes and into the second row. The trouble is that I suspect there's a lot of variability in what the recovery boot loader is called. On a lot of computers with Windows 8 pre-installed, there seem to be recovery tools on a second non-ESP FAT partition, but I don't know what these tools are called in all cases. Thus, I'd appreciate it if those of you with Windows 8 EFI/UEFI installations could get back to me with this information. What I'd like is the filesystem label and complete file path to any Windows recovery tool(s) on your computer. For instance, "EFI/Manufacturer/bootmgfw.efi on the FOO filesystem boots to a Windows recovery tool." Note that the filesystem label is critical and it varies between manufacturers. It appears in the rEFInd menu (if rEFInd picks up the tool) and should be revealed by "blkid" under Linux. (I need the LABEL= value, not the PARTLABEL= value.) My intention is to incorporate all the known names as defaults in rEFInd, and give an override option to add to or replace that default list of filenames.
You can post here (if the forum moderators don't mind), send me a PM on this system, or e-mail me ([email protected]). Thanks in advance for any responses.

In my system originally created I have as follow
/dev/sda1: LABEL="SYSTEM" UUID="3EB7-5907" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="6b139546-f3e4-423c-8a5a-5429389899b4"
/dev/sda4: LABEL="OS" UUID="A478065E7806301A" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="a5dc35f6-5a5e-47f9-97d2-207ddf78489e"
/dev/sda6: LABEL="Restore" UUID="FAC20D83C20D44FB" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="14fa438d-4143-4e70-923a-f3a4f971ceb9"
As per partitioning
# gdisk /dev/sda -l
GPT fdisk (gdisk) version 0.8.8
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 1465149168 sectors, 698.6 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): E805A24A-C0ED-4E17-B852-352C5CD6A9F7
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1465149134
Partitions will be aligned on 2048-sector boundaries
Total free space is 3757 sectors (1.8 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 616447 300.0 MiB EF00 EFI system partition
2 179179520 220139519 19.5 GiB 0700
3 616448 2721791 1.0 GiB 0C01
4 2721792 179179519 84.1 GiB 0700 Basic data partition
5 588779520 1423183871 397.9 GiB 0700 Basic data partition
6 1423183872 1465147391 20.0 GiB 2700 Basic data partition
8 220139520 261099519 19.5 GiB EF02
9 261099520 383979519 58.6 GiB 0700
10 383979520 588779519 97.7 GiB 0700
$ sudo mount /dev/sda1 /boot/efi/
$ ls /boot/efi/EFI/
ASUS Boot Microsoft arch_grub gummiboot
$ find /boot/efi/ -iname 'bootmgfw.efi'
/boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
I hope I was of some help.

Similar Messages

  • Invalid request for a change in window state

    Ok...
    Creating a JSR168 portlet and it works fine in Pluto, but I get the following when I deploy to P7:
    ERROR: Content not available. REASONE: Invalid request for a change in window state
    Here is what the portlet is supposed to do:
    * Display a form
    * User clicks find
    * Lookup is performed
    * Window state in processAction() method of portlet is changed to MAXIMIZED
    * I'm guessing this is where the error is occuring
    I also think that for the TableContainer, I have some sort of attribute incorrect having to do with one of the channelsIs values.
    I tried toggling them one way or another without any effect.
    Suggestions?

    Ive run into this issue also. I need a way for a portlet to change to its maximized state for the purposes of user registration. Is there anyway this can be done? I know that sun jsp "Providers" which are shown on their example desktop, have some sort of maximized state that they can go into, but im not sure how to use this in a portlet.
    There seems to be very inconsistent support between the proprietary sun provider api, and the portlet api.

  • Email requests purportedly from Apple asking for account verification details, This includes a request for everything from email address to bank account sort code. This can't be for real! Is it?

    Email requests purportedly from Apple asking for account verification details.
    This includes a request for everything from email address to bank account sort code.
    This can't be for real! Is it?

    No, it's a scam.

  • A Request for help from me again! Yay!

    hi guys! I was working on implementing threads for the directions of the unit. When i press forward once...nothing happens, but when i press twice it gives me this HUGE list of errors. I dont have a clue. Again, any help would be appreciated.
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class NBoard extends JFrame implements KeyListener{
         int selection = 0;
         boolean selectionmade = false;
         final int WIDTH = 600;
         final int HEIGHT = 600;
         Image Viz =Toolkit.getDefaultToolkit().getImage(JOptionPane.showInputDialog("What character do you want?")+".gif");
         int XC = 50;
         int YC = 50;
         Thread moving = new Move();
         Unit Host = new Unit();
         public NBoard(){
              this.setSize(WIDTH,HEIGHT);
              selection = Integer.parseInt(JOptionPane.showInputDialog("What level design do you want?"));
              if(selection > 0){
                   selectionmade = true;
              addKeyListener(this);
              this.setVisible(true);
         public static void main(String args[]){
              new NBoard();
         public void paint(Graphics g){
              if(selectionmade == true){
                   if(selection == 1){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                   if(selection == 2){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine(WIDTH/2,0,WIDTH/2,HEIGHT);
                        for(int ctr = 1; ctr < 6; ++ctr){
                             g.drawRect(WIDTH/4 ,ctr * 100, 20, 20);
                             g.drawRect((WIDTH / 3) * 2 ,ctr * 100, 20, 20);
                   if(selection == 3){
                        g.setColor(Color.white);
                        g.fillRect(0,0,WIDTH,HEIGHT);
                        g.setColor(Color.black);
                        g.drawLine((WIDTH/2) - 90,0,(WIDTH/2) + 90,HEIGHT);
                   g.drawImage(Viz,XC,YC,this);
              public void keyPressed(KeyEvent e){                              //The Problem Areas
                   if(e.getKeyChar() == 'w'){
                        moving.start();                                             //Starting the thread to move up
                   else if(e.getKeyChar() == 's'){
                        YC = YC + 2;
                   else if(e.getKeyChar() == 'a'){
                        XC = XC - 2;
                   else if(e.getKeyChar() == 'd'){
                        XC = XC + 2;
                   System.out.println(e.getKeyChar());
                   repaint();
         public void keyReleased(KeyEvent e){                              //The Problem Areas
              if(e.getKeyChar() == 'w'){
                   moving.interrupt();                                             //Trying to interrupt the thread once the key is released
         public void keyTyped(KeyEvent e){}
    class Move extends Thread{                                                  //The Problem Areas
         public void run(){                                                       //The Thread
              Unit.XC = Unit.XC - 2;
              try{
                   Thread.sleep(1000);
              catch (Exception e){}
    class Unit{                                                                      //The Object which will hold all of the information about each unit
         static int XC = 30;
         static int YC = 30;
    } By the way, here is my order of events, so you can look forward to seeing requests for help for them (hopefully not).
    Threads: Moving the guy around
    Threads: Making him shoot a ball at the mouses position
    Network: Allow others to join/play game (This is gonna be HUGE probably), while host decides on game type.
    Thanks for all the help so far!

    Where does moving ever get started? Why does Move extend Thread instead of implementing Runnable? (Implementing runnable is preferred and often the correct way to do it and it is in this case)
    But regardless there shoud be a moving.start() somewhere or start of the Thread that has the Runnable target Move.... I don't think I see one. Unless I missed it.
    so...itll work if i change the setup to Runnable?

  • Need Best Practice for Migrating from Solaris to Linux

    Hi Team,
    We are migrating our Data Center from Solaris to Linux and our EBS 11i, database 10g (10.2.0.5) is 6TB. Please let us know the Best Practice to Migrate our EBS 11.5.10.2 from Solaris to Linux RHEL 5.
    we require Database 10g (10.2.0.5) on Linux x86-64 RHEL 5 and Application EBS on Linux x86 RHEL 5. Please let us know for any details.
    EBS version: 11.5.10.2
    DB version: 10.2.0.5
    We have checked the certifications in Oracle support.
    Oracle EBS 11.5.10.2 is not certified with Linux x86-64 RHEL 5. 
    Oracle EBS 11.5.10.2 is certified on Linux x86 RHEL 5.
    So we require Database 10g (10.2.0.5) on Linux x86-64 RHEL 5 and Application EBS on Linux x86 RHEL 5.
    Thank You.

    You can transportable tablespace for the database tier node.
    https://blogs.oracle.com/stevenChan/entry/10gr2_xtts_ebs11i
    https://blogs.oracle.com/stevenChan/entry/call_for_xtts_eap_participants
    For the application tier node, please see:
    https://blogs.oracle.com/stevenChan/entry/migrate_ebs_apptiers_linux
    https://blogs.oracle.com/stevenChan/entry/migrating_oracle_applications_to_new_platforms
    Thanks,
    Hussein

  • Request for quotation from enquiry or quotation level

    Hi,
    Can RFQ(request for quotation) be sent from enquiry or quotaion to suppliers for material procurement?
    Regards
    Suman

    hello,
    I have created new posting period and series for financial year 2011-12.
    In previous year I have created 600 voucher. My issue is that when I am creating new
    voucher, voucher number is showing 601. I want that for new series voucher number should be
    start from 1. but it seems like numbering series doesn't affect the voucher number.
    Because there are no series creation for journal voucher. In this case how can I solve my problem.
    Please help me on this.
    thanks
    Annu

  • Upload request for Quotation  from external data (ME47)

    Hi is there a easy way to upload request for change in SAP from external data.
    Maybe a functionmodule or BAPI.
    Like for transaction ME41 ME42 ME47 etc.
    Edited by: J. Paulina on Sep 23, 2008 3:55 PM

    For things to happen automatically, you'll need to use JavaScript. To import a record, you use the importTextData document method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.502.html
    Note that it can't work with Reader and it must be placed in a trusted function in a folder-level JavaScript file.
    To print programmatically, use the print method: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.511.html
    So the script could loop through the records, printing after each one populates the fields.

  • Notification Timeout when Requested for Information

    Hi,
    We have implemented a approval notification for our customer which on a high level is as follows
    requester -> Approver 1-> Approver 2
    Once a request is submitted, the 'approval' notification goes to Approver 1 followed by Approver 2. The request is approved when both approves approve the request. If no action is taken by the approvers, the original notifications are cancelled and escalation notification is sent to supervisor of approver 2.
    We have a timeout of 48 hours set for the initial approval notifications sent to the approvers (1 & 2). In case Approver 2 requests for more information using the 'Request information' button, the TIMEOUT clock does not seem to reset and the notification is cancelled after 48 hrs even if the notification is in the queue of the requester.
    This is causing the escalation notification to be supervisor of approver 2.
    The question here is why does the timeout clock not reset when the notification goes back to the requester for additional information. Is this how the standard oracle workflow notification behaves ? Is there a way to customize and achieve this ?
    Warm Regards,
    Ashwin

    There is an enhancement request for this bug (Enhancement Request Bug 14492570
    Bug 14492570 : ER: TIMEOUT OCCURS EVEN THOUGH YOU SEND A REQUEST FOR MORE INFORMATION To Bottom )
    Also see Note [ID 1483552.1] regarding this issue

  • How to install Flash Player plugin for FF3 from a Windows user account?

    Hello,
    How to install the Flash Player plugin for FireFox3 from a MS Windows (XP/Vista) standard user account (non admin account)?
    Launchuing "install_flash_player.exe" I get the message: You need admin privilege to install this software.
    Thanks.

    anandsrivastava.2612 wrote:
    i want plugin for adobe flash playe in my wesite
    I don't understand what you want - your visitors to download the plugin from your website?  Please explain!

  • HTTP_REFERER header is missing in request for .mp4 from Safari on ipad or iphone

    I just discovered that when I have a .mp4 file embedded in my webpage and I visit that page using Safari on the iPad, the request for the .mp4 is missing the referer header.  This is a problem for me because I use URL Rewriting in my web.config file on IIS and I redirect requests (in which the HTTP_REFERER does not begin with my own domain name) to a no hotlink image.  Safari on the iphone4 does the same thing when I visit this page--the HTTP_REFERER header in the request for the .mp4 is empty.  I've had to turn my hotlinking protection for MP4 files off on my site in order for ipad/iphone to display the video on my page.  If the hotlink protection (i.e., rewrite rule in my web.config) is turned on, the video does not display.
    It seems like this would be a common issue because hotlink protection is commonly implemented in this manner.
    Is there something I am issing?  Some special way of preventing hotlinking and yet letting the mp4 content through to idevices?
    Thank You!

    I have the same issue with Safari, but with mp3 files not playing using a HTML5 player on my website. I have hotlink protection enabled and the audio plays on every other browser except Safari, so there's seems to be a problem playing any videos or mp3 files when hotlink protection is enabled.

  • Request for DataSource from Souce System has a lesser SID than the request

    Hi Experts,
    Request REQU_48Q572FT5LVYNE8BD4KOD5WTV(72.714) has not or not correctly been updated; Please edit
    Message no. RSM096
    Diagnosis
    Request REQU_48Q572FT5LVYNE8BD4KOD5WTV (72.714) for DataSource 2LIS_13_VDKON from source system EP1CLNT410 has the status green and a lesser SID (and is therefore older) than the request that you currently want to update into the DataStore object.
    This is not possible because the sequence of requests has to be followed.
    Delta- and init requests have to be updated to the DataStore object in the request sequence.
    Procedure
    First update request REQU_48Q572FT5LVYNE8BD4KOD5WTV(72.714) for DataSource 2LIS_13_VDKON from source system EP1CLNT410 from the PSA into the DataStore object.
    You can also set request REQU_48Q572FT5LVYNE8BD4KOD5WTV(&V2) to 'RED' in the monitor if this data is not required in the DataStore object. The request is then ignored during the check for completeness.
    Request REQU_48Q572FT5LVYNE8BD4KOD5WTV (72.714 ) for DataSource
    2LIS_13_VDKON from source system EP1CLNT410 has the status green and a
    lesser SID (and is therefore older) than the request that you currently
    want to update into the DataStore object.
    This is not possible because the sequence of requests has to be
    followed.
    Delta- and init requests have to be updated to the DataStore object in
    the request sequence.
    First update request REQU_48Q572FT5LVYNE8BD4KOD5WTV (72.714 ) for
    DataSource 2LIS_13_VDKON from source system EP1CLNT410 from the PSA into
    the DataStore object.
    You can also set request REQU_48Q572FT5LVYNE8BD4KOD5WTV (72.714 ) to
    'RED' in the monitor if this data is not required in the DataStore
    object. The request is then ignored during the check for completeness.
    The error is triggered in the process chain, the request is already green, how do i resolve this, i already tried RSRQ is showed the request green, do you have any more idea to resolve this?
    Thank you in advance.

    Hi Ver Baylon,
    After having deleted the request in the manage ODS you should run DTP not the info package again. Better yet I think you should do the following steps.
    1. Double click on the corresponding info package. Then go to scheduler on the top left tab of the window and click on the “initialization options for source system”. There delete all the queues that exist.
    2. Manage the PSA and delete all the requests
    3. Delete form manage the DSO all the requests from the DSO.
    Then go to the info package in the update tab and do a “Initialize without data transfer”
    In the next step do a delta update.
    After that execute a full DTP.
    Check the results then
    Hope that helps
    John

  • Request for information regarding the Lumia Denim and WP 8.1 Update 1 for Lumia 920

    When can those of us with the Lumia 920 get the Lumia Denim update and the Windows Phone 8.1 Update 1 Update for our phones? And does AT&T have a time fram for getting us Lumia 920 owners the update or are we not going to get this update until Windows Phone 10 comes out?

    GLIMMERMAN76 wrote:
    the phone is almost 3 years old they may not update it..  But then again there are suprise around every corner sometimes.  People with the 830 are waiting for an update also.When the update came out the phone was about two years old.  Now we expect GDR2. On the Microsoft update page there are seven AT&T Lumia phones. There would be eight but the 830 is no longer listed. Did AT&T have it removed ? Only three of these phones have the Denim update available, that is 37.5%.  Is AT&T even trying, I don't think so.  The same models of phones all over the world have been updated. Now WP10 is coming up. Microsoft says they will update WP10 directly, no carrier in the middle and they say it will be available to all phones and only phones running Lumia Denim, OS version 8.10.14219.341 or higher can be upgraded.  So, the phone has to have at least Denim before you can update.Will Windows 10 update be available for my Lumia phone? We bought two 920's from AT&T in 2012. Wife is still using hers and I replaced mine with a 1520.3 last year. It has Qi wireless charging and 32GB memory, not the AT&T version. We no longer have a contract and never will, using 'bring your own phone'.The other 62.5% of the Lumia phone users with AT&T probably feel the same way.  

  • About CS4 vs CS5 - a request for information

    First my setup:
    Sager laptop NP8760
    CORE i7 820QM @ 1.73Ghz (both cores)
    ATI MR HD 5870 (1 GB)
    Ram: 8192MB DDR3 1333 (2 DIMMS)
    2 SATA 500GB WD hdd
    Win 7 64bit
    What I want to hear about, is given the hardware and that its 64 bit win 7... How different will I find CS5 encore to be.
    I've been working with CS4 on the same hardware for about a month.
    It sounds like CS5 Premier has a significant change with the new rendering engine, but what about Encore? Has it aquired some new and better way to grind avi into mpeg2?
    My usage is as an event videographer still in the learning phase in all respects.  Although I have finally developed some familiarity with the Adobe CS4 Production set.  And have been an off and on user of Photoshop, premiere, encore and Illustrator going back to the version where CS had no number following it.
    Its really hard to tell from the online descriptions that adobe has posted, although it appears they have put a good effort into trying to describe what to expect.  It isn't enough for me to understand what I might find better or worthwhile about CS5.

    John T Smith wrote:
    64bit (required for PPro CS5) means better use of more memory
    Your ATI graphics card does not allow hardware MPE in PPro
    Encore is still 32bit, since the "core" is licensed from Roxio, and they are still 32bit
    You might want to check http://ppbm5.com/ to see if there are any laptops like yours, and where they rank
    MPE ?... is that hardware acceleration?
    And what is the end result of not allowing MPE?
    I couldn't make much sense of the tightly woven pages at you citation... looked like it make take some serious pondering just to get started with that
    My laptop had 2 choices of vid card... the other one was `Nvidia Quadro FX 2800M 1gb Gddr3'  I didn't know enough about how to read the specs to make an informed choice... but shy'd away from Nvidia due to experineces on a P4 running winXP -pro where I reall couldn't even run encore CS4 without major problems... begining with having to turn hardware excelloration off.
    Would that card make a serious difference in working with PP and Encore?

  • BIOS Request for G580 Model 2189 Windows 7 x64

    Hello, could someone please provide an original BIOS for G580 Model 2189 x64 Windows 7? Thank you!

    Not to difficult to find... Why the "original" BIOS request?  Usually not a good idea to backstep BIOS unless directed to by support professionals.  Also, BIOS updates are independant of Windows Versions, the installer or "flashing": program used to install the BIOS file is sometimes Windows version dependant.
    Either way - check this page for BIOS files:  http://support.lenovo.com/us/en/products/laptops-and-netbooks/lenovo-g-series-laptops/lenovo-g580-no...
    Good luck.

  • Bank Reconciliation (India Specific)  for information from Non SAP systems

    Bank Reconcilaition to be performed in SAP ECC6 on data received from A Non SAP system
    Following is the scenario:
    1. Data is received in to SAP for Cheques deposited in to the Bank with a unique Key feild
    2. A Bank Reconciliation process is Run on the Line Items received using the Cheque numbers and amounts
    3. The honored Cheques need to be Cleared in SAP
    4. SAP will require to generate a report listing the Dishonored Cheques and also populate the Key feild against the Dishonored Cheques in the Report
    Kindly help as to how this can be acheived in SAP, as teh Automated BRS process is executed sequentialy for every line in the Bank statement received.
    Thanks in Advance

    Hi ,
      Check this link
      <a href="http://help.sap.com/saphelp_nw04/helpdata/en/58/54f9c1562d104c9465dabd816f3f24/frameset.htm">DB Connect</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/fe/65d03b3f34d172e10000000a11402f/frameset.htm">XML Connect</a>

Maybe you are looking for

  • How to read parameters from request object

    We want to read parameters from GET request but whenever we are calling GET_URI_PARAMETER from the REQUEST we don't see any results url is like http://coevi116.wdf.sap.corp:8000/sap(bD1lbiZjPTEwMA==)/bc/bsp/sap/z_test_json/jsontest.htm?PARAM=ABC But

  • Method Binding to JSF 1.0 validate-Method error

    Hi there, Iam impressed, changing from Beta to 1.0 wasn't that much work at all, I just got one problem left: <h:inputText value="#{methodsBean.orderNumber}" validator="#{methodsBean.checkOrderNumber}"/> This is my method:      public void checkOrder

  • How Does Apple Determine What Posts Are Not Allowed to Remain?

    Apple has deleted 2 posts that, while not favorable to Leopard, do not seem to violate any of the rules. I noticed that not all posts are favorable (naturally) but remain posted. Does Apple just search for the poster's user name and remove on that ba

  • How to transfer iTunes to new mac while keeping library on external drive?

    I have a new iMac (running 10.4.11). Old mac is a G4 powerbook, which is synched to my ipods and iphone. My iTunes library is on an external hard drive. How do I get the new computer to "own" the iTunes account and media library so it will synch with

  • Creative Cloud has disappeared from my MacBook Pro

    Help!  I went to install the Lightroom update only to find that my creative cloud is completely missing from my mac.  Here's the message I get when I try to reinstall it:  There is no application set to open the URL aam://SAPCode=LTRM?productVersion=