ubuntu20.04 开机自启动配置

1、使用root权限操作,因为开机自启动一般是在root用户运行,所以对应的环境也要在root下
2、配置 rc-local 服务

sudo cp /usr/lib/systemd/system/rc-local.service   /etc/systemd/system/            #复制 rc-local.service 文件

3、新建 rc.local 文件

sudo touch /etc/rc.local
sudo chmod 777 /etc/rc.local

4、在 rc.local 文件中加入自己想要开机自启的程序

#!/bin/bash -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other value on error.
#
# In order to enable or disable this script just change the execution bits.
#
# By default this script does nothing.
  
# /mnt/tss/monitor.sh
#/home/tcwg/agent_tmp/wsssr_install/install -c 10.168.43.13 -U aeac1528f6654448a4f9b9aeb84655be -d

cd /mnt/tss && ./monitor-root.sh 
#su tcwg -c "/bin/bash /mnt/tss/monitor.sh"	#临时使用tcwg用户运行文件

exit 0

5、设置开机自启动

systemctl enable rc-local
systemctl start rc-local.service  #启动服务
systemctl stop rc-local.service  #暂停服务
systemctl status rc-local.service #查看状态
systemctl daemon-reload # 重新加载自启服务

运行中遇到的bug:

1.The unit files have no installation config (WantedBy, RequiredBy, Also, Alias settings in the [Install] section, and DefaultInstance for template units). This means they are not meant to be enabled using systemctl.

ln -s /lib/systemd/system/rc.local.service /etc/systemd/system/

在文件 rc-local.service 下面添加如下内容,并且修改ExecStart

[Service]
ExecStart=/etc/rc.local start
[Install]  
WantedBy=multi-user.target  
Alias=rc-local.service
systemctl enable rc-local
systemctl daemon-reload # 重新加载自启服务

2.开机自启动脚本可以正常运行,但是启动不了服务
nohup: failed to run command ‘python’: No such file or directory
nohup: failed to run command ‘gunicorn’: No such file or directory

sudo ln -s /opt/miniconda3/envs/tss/bin/python3.7 /usr/bin/python
sudo ln -s /usr/local/miniconda3/envs/tss/bin/gunicorn /usr/bin/gunicorn
### 回答1: 在Ubuntu 20.04中,你可以使用以下步骤将程序设置为开机自启动。 1. 打开“启动应用程序”设置。你可以通过在活动栏中搜索“启动应用程序”或通过点击系统菜单,在“设置”菜单下找到它。 2. 在“启动应用程序”窗口中,你会看到一个应用程序列表,其中列出了在系统启动时自动运行的程序。 3. 点击窗口右下角的“+”按钮添加新的自启动程序。 4. 在弹出的对话框中,输入你要添加的自启动程序的名称和命令。例如,如果你要添加Firefox浏览器,你可以使用命令“firefox”或是你的应用程序的完整路径,如“/usr/bin/firefox”。 5. 添加好自启动程序后,点击“添加”按钮完成设置。 现在,当你重新启动系统时,你添加的程序将自动启动。你可以重复上述步骤来添加其他需要在开机时运行的程序。如果你希望禁用或删除某个自启动程序,只需在“启动应用程序”窗口中找到它,并切换相应的开关或点击“-”按钮即可。 希望以上内容对你有所帮助! ### 回答2: 要让Ubuntu 20.04开机时自动启动特定的应用程序或服务,可以按照以下步骤进行设置。 首先,确保要自动启动的应用程序或服务已经安装在您的系统上。 1. 打开终端,按下Ctrl + Alt + T组合键,或通过“应用程序”菜单中的“终端”选项进入终端界面。 2. 在终端中,输入以下命令以编辑启动配置文件: sudo nano /etc/rc.local 3. 在rc.local文件中,您可以添加要在启动时自动运行的命令。例如,如果要自动启动“firefox”浏览器,可以在文件中添加以下行: firefox & 注意:确保在命令的末尾加上“&”符号,以使应用程序在后台运行。 4. 完成后,按下Ctrl + X组合键,然后按下Y键,最后按下Enter键来保存并关闭文件。 5. 接下来,通过运行以下命令来确保rc.local文件的可执行权限: sudo chmod +x /etc/rc.local 6. 最后,通过运行以下命令重新启动系统来使更改生效: sudo reboot 完成上述步骤后,当您的计算机启动时,应该会自动打开指定的应用程序或服务。 请注意,以上步骤适用于Ubuntu 20.04版本。对于其他版本的Ubuntu或其他Linux发行版,可能会有所不同。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值