1.ubuntu系统安装完成后,首先需要关闭系统自动更新功能,打开“软件和更新”,将下列需要更新的内容全部去掉

ubuntu20.04开机自动打开浏览器全屏访问指定页面_desktop


ubuntu20.04开机自动打开浏览器全屏访问指定页面_前端_02


2.安装chrome浏览器

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

sudo apt install ./google-chrome-stable_current_amd64.deb

3.添加开机启动chrome任务,终端输入命令:gnome-session-properties 打开启动设置

google-chrome-stable --kiosk --noerrdialogs --start-fullscreen http://localhost:9527

删除以下文件确保不弹出软件更新器弹窗
sudo rm /etc/apt/apt.conf.d/99update-notifier

FireFox(火狐浏览器):ubuntn自带的FireFox

1、下载(全屏)组件:AutoFullScreen 添加到火狐浏览器

​​ https://addons.mozilla.org/zh-CN/firefox/addon/autofullscreen/​​ 2、设置浏览器打开指定地址

ubuntu20.04开机自动打开浏览器全屏访问指定页面_firefox_03


3、设置浏览器开机启动

编写.desktop文件

cd /etc/xdg/autostart

vim fexfox.desktop

[Desktop Entry]
Comment=The System manager Eleycy Tools
Comment[zh_CN]=firefox
Exec=firefox
GenericName=firefox
GenericName[zh_CN]=firefox
Name=Tools
Name[zh_CN]=firefox
StartupNotify=false
Terminal=false
Type=Application
Categories=Network;
Icon=/home/docker-data/icon/tools.png

然后运行命令 chmod 777 fexfox.desktop
命令 desktop-file-validate fexfox.desktop 检查文件是否存在错误,无报错表示成功