1. 安装upstart
sudo apt-get install upstart
2. 安装 vlc 播放器
sudoapt-get install vlc
3. 安装谷歌
去除login keyring,谷歌钥匙串,命令行手动执行,在本地,不用 root
python -c "import gnomekeyring;gnomekeyring.change_password_sync('login','g3nt00567','');"
4. 编写写开机自动启动程序
chrome.conf
start on desktop-start
stop on desktop-end
exec /usr/bin/google-chrome --start-fullscreen --app=http://www.baidu.com
vlc.conf
start on desktop-start
stop on desktop-end
exec /usr/bin/vlc --fullscreen --loop /home/setup/Desktop/video.avi
5.开机自启
将写好的程序chrome.conf 或 vlc.conf 放到~/.config/upstart 目录下即可。
原文链接:/ubuntu/353848.html