标签:
以下为自己使用到的一些树莓派下的技巧,均在网络上找到的方法,具体出处有些已经忘了。
为了防止以后忘记,特此记录一下:
树莓派上使用代理上网:
终端下:
sudo vim /etc/apt/apt.conf
编辑,输入以下一行:
Acquire::http::Proxy "http://server:port/";
(示例:Acquire::http::Proxy "http://10.90.36.38:8000/";)
树莓派禁止休眠:
http://blog.csdn.net/burgess_liu/article/details/8721389
终端下:
sudo vim /etc/profile.d/Screen.sh
编辑,输入以下2行:
xset dpms 0 0 0
xset s off
sudo vim /etc/lightdm/lightdm.conf
[SeatDefaults]下加入
xserver-command=X -s 0 dpms
树莓派(raspberry pi)学习7: 自动登录、自动运行startx、自动运行程序
http://blog.csdn.net/c80486/article/details/8460325
http://shumeipai.nxez.com/2015/02/09/run-python-script-when-the-raspberry-pi-start.html
标签:
原文地址:http://www.cnblogs.com/jakeyChen/p/4384380.html