博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fedora 操作系统
阅读量:6049 次
发布时间:2019-06-20

本文共 2468 字,大约阅读时间需要 8 分钟。

hot3.png

双系统

uefi+gpt下win10/fedora双系统实现方案

UEFI模式下Win10+Fedora25双系统安装

Fedora yum源配置

  1. 下载网易yum源       

到[,在其首页上找到并点击“Fedora使用帮助“,下载repo文件并拷贝到/etc/yum.repos.d/目录下,进入下载的目录

# cp fedora-updates-163.repo /etc/yum.repos.d/# cp fedora-163.repo /etc/yum.repos.d/ 
  1. 下载开源软件库

下载著名的第三方yum源

rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm

rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  1. 建立yum缓存

    # yum clean all# yum makecache

参考:

fedora普通用户修改root密码

fedora的workstation版本的默认密码是一串乱码,所以我们如果需要root权限的话就需要重置root的密码。

  1. 通过sudo命令获得权限

    sudo su
  2. 输入我们当前用户的密码

  3. 通过passwd更改root的密码

    passwd root
  4. 输入两次root的密码

  5. 通过exit退出su界面

原文:

开机启动

  1. 查看/usr/lib/systemd/system/rc-local.service

其中ExecStart=/etc/rc.d/rc.local start指向服务文件

  1. 创建/etc/rc.d/rc.local 文件
#!/bin/bash    sh /usr/share/xx-net/code/default/xx_net.sh    exit 0
  1. 赋以可执行权限

    #chmod +x /etc/rc.d/rc.local
  2. 然后使用systemd开机自启动

    #systemctl enable rc-local.service
  3. 设置systemd需要在多用户启动时还是图形启动时自启动这个脚本

    编辑/usr/lib/systemd/system/rc-local.service,加入Install部分

#  This file is part of systemd.    #    #  systemd is free software; you can redistribute it and/or modify it    #  under the terms of the GNU Lesser General Public License as published by    #  the Free Software Foundation; either version 2.1 of the License, or    #  (at your option) any later version.        # This unit gets pulled automatically into multi-user.target by    # systemd-rc-local-generator if /etc/rc.d/rc.local is executable.    [Unit]    Description=/etc/rc.d/rc.local Compatibility    ConditionFileIsExecutable=/etc/rc.d/rc.local    After=network.target        [Service]    Type=forking    ExecStart=/etc/rc.d/rc.local start    TimeoutSec=0    RemainAfterExit=yes    [Install]    WantedBy=multi-user.target
  1. 再使用systemd开机自启动

    #systemctl enable rc-local.service
  2. 查看状态

    #systemctl status rc-local.service

参考:

http://blog.csdn.net/ztguang/article/details/52176067http://www.edward-han.com/341.htmlhttps://semsevens.com/2016/03/08/make-startup-script-in-fedora/https://www.m00nie.com/2012/07/check-service-is-running-with-systemctl-and-start-it-if-stopped-mail/

設置Fedora合盖不睡眠

文件 / etc / systemd / logind . conf

HandlePowerKey:按下電源鍵後的動作HandleSleepKey:按下掛起鍵後的動作HandleHibernateKey: 按下休眠鍵後的動作HandleLidSwitch:合上筆記本蓋後待機 poweroff 关闭suspend 待机hibernate 休眠

参考:

转载于:https://my.oschina.net/u/2501904/blog/748756

你可能感兴趣的文章
RGB颜色转换算法C语言实现
查看>>
用GOACCESS分析NGINX日志
查看>>
NSRunLoop
查看>>
C语言版本学生信息管理系统
查看>>
AsyncTask、HandlerThread、IntentService和线程池
查看>>
Android常见问题总结(二)
查看>>
浅copy与深copy
查看>>
润乾集算报表实现参数级联查询
查看>>
安装配置 redis
查看>>
Reactor
查看>>
digital clock based C
查看>>
[经验交流] CentOS7 docker 使用 overlay 存储
查看>>
52 个CSS选择器
查看>>
(三)流-概念和分类
查看>>
微信Demo导入遇到的问题
查看>>
Xamarin.Android调用百度地图
查看>>
MySQL慢查询(二) - pt-query-digest详解慢查询日志 pt-query-digest 慢日志分析
查看>>
关于案例教学说几句
查看>>
个人作业-Week3
查看>>
web -- Angularjs 笔记2
查看>>