Tablet BIOS (UEFI) won't accept boot from USB

45

Solution 1

Try Switching off UEFI and change to 'Compatibility" mode in the BIOS to see if it helps.(This may slow the boot of Windows unfortunately)

If not try this link which may help. https://help.ubuntu.com/community/UEFI

Good luck and ask for more help if necessary

Solution 2

I'm glad you got it. As far as wubi goes (for anyone taking a look at this): Wubi will not work will not work along side Windows 8 (which I assume you were using) as long as the system is a UEFI system.

For more information you can check out https://wiki.ubuntu.com/WubiGuide

Share:
45

Related videos on Youtube

chrips
Author by

chrips

Updated on September 18, 2022

Comments

  • chrips
    chrips over 1 year

    I'm passing the attribute into the model and making sure it's not null...

    Controller:

    @GetMapping(Mappings.MAIN) // AliasFor @RequestMapping(method = RequestMethod.GET)
        public String getMainView(Model model,
                                  @ModelAttribute(AttributeNames.VIEW_RECIPE) ViewRecipe recipe){
    
            log.info(recipe.toString());
    
            if(recipe==null){
                recipe = new ViewRecipe();
                recipe.setIngredientList(new ArrayList<>());
    
            }
            model.addAttribute(AttributeNames.VIEW_RECIPE, recipe);
    
    
            return ViewNames.MAIN_VIEW;
        }
    

    Utility classes:

    public class ViewNames {
        public static final String HOME = "home";
    
    public class AttributeNames { 
        public static final String VIEW_RECIPE="view-recipe";
    
    public class Mappings {
        public static final String HOME ="home";
    

    Thymeleaf template:

    <form id="get-recalculated-recipe" action="#" method="post">
        <table>
            <tr><th>Quantity</th>
                <th>Unit</th>
                <th>Ingredient Name</th>
                <th>Multiplier</th>
    
            </tr>
            <tr th:each="ing : ${view-recipe.ingredientList}">
                <td>
                <input type="text" th:field="*{ing.quantity}"/>
                </td>
                <td>
                    <input type="text" th:field="*{ing.unit}"/>
                </td>
                <td>
                    <input type="text" th:field="*{ing.ingredientName}"/>
                </td>
                <td>
                    <input type="text" th:field="*{ing.ingredientName}"/>
                </td>
            </tr>
        </table>
    </form>
    
    • Marc
      Marc over 9 years
      Didn't seem to merit a down-vote to me, especially with no comment. If it's a dumb question, explain why it's a dumb question.
    • Marc
      Marc over 9 years
      More info on the system would help.
    • Abdel
      Abdel over 9 years
      It is a tablet running an Intel 3537 along with 2 gb of ram. Bios version is 2.16 Aptio from AMI.
    • j0h
      j0h about 9 years
      LOL Linux can be made to boot via NTFS. Read documentation carefully help.ubuntu.com/community/Installation/FromUSBStick
    • david6
      david6 about 9 years
      It might be more correct to say that Bay Trail tablet's firmware generally ONLY support 32-bit UEFI. The tablet may still support 64-bit OS. For example: kyledavidson.ca/blog/2015/3/15/…
    • vphilipnyc
      vphilipnyc almost 5 years
      Does it work when you remove @ModelAttribute(AttributeNames.VIEW_RECIPE) ViewRecipe recipe and just create a new Recipe object with some ingredients and add it to the model?
    • vphilipnyc
      vphilipnyc almost 5 years
      Aside, ViewRecipe seems like a good candidate for a builder btw. Like new ViewRecipe().withIngredients(ingredients). It's almost textbook.
    • Jorge.V
      Jorge.V almost 5 years
      What is your purpose? Do you want to add new elements INSIDE the table showing those which you already have? Do you want to edit those which are already in the table? Do you want just to view them?
    • chrips
      chrips almost 5 years
      @Jorge.V Yes I want to copy whatever fields and List data I have for (AttributeNames.VIEW_RECIPE) ViewRecipe into the model every time a client Gets Mappings.MAIN
    • Greenonline
      Greenonline over 2 years
      Your "Update 2" should be posted as an answer.
  • chrips
    chrips almost 5 years
    I Can't thank you enough, this was a huge problem for me since... I've been slowly studying Spring and MVC pattern for 1.5 years and feel like...I'll never be employable like this. This brings to light that i DONT TEST MY CODE! Brutal. Would you use Mock4J or something else?
  • Jorge.V
    Jorge.V almost 5 years
    You are very welcome, please be confident in yourself! You had a lot of good ideas, just needed some small fixes. For testing, I'd go with mockito for webservices, services and the such, and mochajs for js (although I don't really know this last one well).