我是靠谱客的博主 殷勤毛巾,最近开发中收集的这篇文章主要介绍Fedora添加开机启动项,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

以前在ubuntu中添加开机启动项是直接在/etc/rc.local中添加一行路径加参数,到Fedora中添加启动项好像就不灵了在网上查了资料说是可以在systemd中添加,路径为/etc/systemd/system,这是一个目录,里面存放了可以启动脚本的配置文件,创建task.txt,包含如下内容

#  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.

#!/bin/bash

curpath=$(dirname $0)
name=$1

rm -f /etc/systemd/system/$name.service is executable.
[Unit]
Description=it is my service
After=network.target
[Service]
Type=forking
ExecStart=/yourpath /yourarg
TimeoutSec=0
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target


其中ExecStart=/yourpath /yourarg表示你要启动的文件和参数

Description=it is my service为服务描述

然后将task.txt复制为/etc/systemd/system/hello_world.service

然后设置该文件为可执行:chmod +x /etc/systemd/system/hello_world.service

然后将其设置为有效:systemctl enable hello_world.service

这样就ok了,其中hello_world为服务的名字,可以自定义

为了方便可以将上诉操作写为脚本AddTask.sh

AddTask.sh

#!/bin/bash
  
curpath=$(dirname $0)
 
path=$1
name=$2


echo $curpath/my.txt
 
sed 's:/yourpath:'$path':g' $curpath/task.txt > $curpath/my.txt


cp $curpath/my.txt /etc/systemd/system/$2.service
chmod 777 /etc/systemd/system/$2.service
systemctl enable $2.service

传入的第一个参数为路径,第二个参数为服务名,这样就ok了

如果要删除服务可以直接调用DelTask.sh文件,文件内容如下:

#!/bin/bash

name=$1

rm -f /etc/systemd/system/$name.service

这样就完成了开机启动项的添加和删除




最后

以上就是殷勤毛巾为你收集整理的Fedora添加开机启动项的全部内容,希望文章能够帮你解决Fedora添加开机启动项所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部