首页 > 其他分享 >给 systemd-boot 设置默认启动项

给 systemd-boot 设置默认启动项

时间:2022-12-26 13:12:03浏览次数:63  
标签:systemd windows boot 默认 启动项 设置

title: 给 systemd-boot 设置默认启动项
description: 安装 windows 和 linux 双系统后, 设置 windows 为默认启动项
tags:
  - linux
date: 2022-10-19 15:35

目录

安装 archlinux 时默认包含了 systemd-boot, 可直接安装
systemd-boot 会自动扫描 Windows 启动管理器添加到启动项

打印可用的启动项

其中每一项的 id 在下面设置默认启动项时作为值会用得到

# 打印可用的启动项
bootctl list

设置默认启动项

Adding loaders

添加(已有则修改) default 项
<bootid> 为上面打印出的想要设为默认项的 id 字段对应的值

双系统下, systemd-boot 扫描出的 windows 启动项的 id 为 auto-windows

# /boot/loader/loader.conf

default <bootid>
# 默认启动 windows
default auto-windows

标签:systemd,windows,boot,默认,启动项,设置
From: https://www.cnblogs.com/liam220818/p/17005568.html

相关文章

  • 【Swagger】SpringBoot快速集成Swagger
    目录:1、依赖2、配置类3、注解引用4、可能遇到的问题5、拓展  1、依赖<!--swagger--><!--https://mvnrepository.com/artifact/io.springfo......
  • springboot利用Condition机制解决Kafka监听不到服务时报错的问题
    一般情况下,我们在写springboot使用Kafka监听的代码时,都是直接写个类,然后在方法上加个@KafkaListener就可以了,简单省事。就像下面这样@Component@Slf4jpublicclassKa......
  • SpringBoot2.x系列教程汇总-从入门到精通
    因为N没有分类归纳博客的功能,所以特写本帖汇总SpringBoot2.x系列教程,方便大家查阅!本套案例源码地址:https://gitee.com/sunyiyi/SpringBoot-demos​​SpringBoot2.x系列教程......
  • springboot 连接不上 redis 的三种解决方案!
    针对于这种情况,首先,我们最简单直接的方法就是需要确认Redis是否已经正常启动(验证方法:如果安装在Linux下的话可以使用ps-ef|grepredis来进行确认是否开启) 如果未开启,我......
  • bootstrap-switch
    <inputtype="checkbox"name="switch"/><!--<inputtype="checkbox"name="switch"checked/>默认启动--><linkhref="https://cdn.bootcss.com/bootstrap......
  • 笑死,面试官又问我SpringBoot自动配置原理
    面试官:好久没见,甚是想念。今天来聊聊SpringBoot的自动配置吧?候选者:嗯,SpringBoot的自动配置我觉得是SpringBoot很重要的“特性”了。众所周知,SpringBoot有着“约定大于配置......
  • bootstrap表单
    内联表单:   <formclass="rowg-3"role="form"><divclass="col-md-2">......
  • SpringBoot的Maven项目使用SystemPath引用本地jar
    对于本地jar的maven引用,在不方便使用私有maven仓库的情况下,使用SystemPath方式引用还是比较合适的,这里以uid-generator-1.0.0-SNAPSHOT.jar这个本地包为例。1.将打好的包拷......
  • Spring Boot中使用Swagger2构建强大的RESTful API文档
    由于SpringBoot能够快速开发、便捷部署等特性,相信有很大一部分SpringBoot的用户会用来构建RESTfulAPI。而我们构建RESTfulAPI的目的通常都是由于多终端的原因,这些终端会......
  • springboot运行jar包报 "XXX中没有主清单属性"
    报错原因:打包后的jar文件中的MANIFEST.MF缺少项目启动项,即没有Main-Class解决:在项目pom.xml文件中添加插件spring-boot-maven-plugin:<build><plugins><plugin>......