From 2bb30fb96c887eee2588de831e56a80f8809ecc8 Mon Sep 17 00:00:00 2001 From: Michael Teeuw Date: Sat, 9 Apr 2016 00:11:38 +0200 Subject: [PATCH] First info about the configuration of the Raspberry. --- Configuring-the-Raspberry-Pi.md | 77 +++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 Configuring-the-Raspberry-Pi.md diff --git a/Configuring-the-Raspberry-Pi.md b/Configuring-the-Raspberry-Pi.md new file mode 100644 index 0000000..1bef108 --- /dev/null +++ b/Configuring-the-Raspberry-Pi.md @@ -0,0 +1,77 @@ +##Rotating the screen +edit _/boot/config.txt_: +```` +sudo nano /boot/config.txt +```` +Add the following line: +```` +display_rotate=1 +```` + +##Autohiding the Mouse Cursor +Install _unclutter_: +```` +sudo apt-get install unclutter +```` + +##Disabling the screensaver + +edit _/etc/xdg/lxsession/LXDE-pi/autostart_: +```` +sudo nano /etc/xdg/lxsession/LXDE-pi/autostart +```` +Add the following lines: +```` +@xset s noblank +@xset s off +@xset -dpms +```` + +Edit _/etc/lightdm/lightdm.conf_: +```` +sudo nano /etc/lightdm/lightdm.conf +```` +Add the following line below [SeatDefaults] +```` +xserver-command=X -s 0 -dpms +```` + +## Enable file sharing with OS X + +Install _Netatalk_: +```` +sudo apt-get install netatalk +```` + +## Enable VNC + +Install _x11vnc_: +```` +sudo apt-get install x11vnc +```` + +Set VNC password: +```` +x11vnc -storepasswd +```` + +Create an auto-start file: +```` +cd ~/.config +mkdir autostart +cd autostart +nano x11vnc.desktop +```` + +Add the following lines: +```` +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Name=X11VNC +Comment= +Exec=x11vnc -forever -usepw -display :0 -ultrafilexfer +StartupNotify=false +Terminal=false +Hidden=false +```` \ No newline at end of file