Ubuntu-18.04不能像ubuntu14一样通过编辑rc.local来设置开机启动脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu-18.04不能像ubuntu14一样通过编辑rc.local来设置开机启动脚本相关的知识,希望对你有一定的参考价值。
参考技术A ubuntu-18.04不能像ubuntu14一样通过编辑rc.local来设置开机启动脚本,通过下列简单设置后,可以使rc.local重新发挥作用。1、建立rc-local.service文件
sudo vi /etc/systemd/system/rc-local.service
2、将下列内容复制进rc-local.service文件
[Unit]
Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
3、创建文件rc.local
sudo vi /etc/rc.local
4、将下列内容复制进rc.local文件
#!/bin/sh -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.
echo "看到这行字,说明添加自启动脚本成功。" > /usr/local/test.log
exit 0
5、给rc.local加上权限
sudo chmod +x /etc/rc.local
6、启用服务
sudo systemctl enable rc-local
7、启动服务并检查状态
sudo systemctl start rc-local.service
sudo systemctl status rc-local.service
8、重启并检查test.log文件
cat /usr/local/test.log
ubuntu系统能不能做成跟封装xp一样的Ghost版文件呢
可以用最新版的GHOST给自己的ubuntu系统做备份,但做不了GHOST版的安装系统。因为这个系统有好多硬件是不支持的,做出来也是缺点多多,没有人会用的。 参考技术A 目前还不可以、UB的安装也还蛮简单的!!没有必要GHOST?而且也会定期更新。 参考技术B 装ubuntu就能学好啊?!建议你装个xp然后在xp下装ubuntu..两个系统都可以用..多爽?!
学习游戏两不误..呵呵...找非xp版的客户端是很麻烦的...即使你找到了这个软件的ubuntu版...要还有其它软件要用呢?!也找?!
哎...听我 的吧.. 参考技术C 不可以:一个很简单的原因,没有ubuntu 版本的ghost软件; 参考技术D 最新的ubuntu10.4-desktop 在WINDOWS下用WUBI.exe安装的结果就很像的。。他是在WINDOWS分区中建了一个像磁盘镜像的文件。
以上是关于Ubuntu-18.04不能像ubuntu14一样通过编辑rc.local来设置开机启动脚本的主要内容,如果未能解决你的问题,请参考以下文章
官方教程中的GStreamer示例不能使用GStreamer 1.14.1在Ubuntu 18.04上运行