[wiki] [sites] rename kioskmode to kiosk_mode and add note about sshd || Christian Hesse

From: <git_AT_suckless.org>
Date: Tue, 12 Mar 2013 10:50:52 +0100

commit 317523c870c12cba1511ac48bd14e1ad1260224f
Author: Christian Hesse <mail_AT_eworm.de>
Date: Tue Mar 12 10:49:54 2013 +0100

    rename kioskmode to kiosk_mode and add note about sshd

diff --git a/surf.suckless.org/files/kiosk_mode.md b/surf.suckless.org/files/kiosk_mode.md
new file mode 100644
index 0000000..40bca18
--- /dev/null
+++ b/surf.suckless.org/files/kiosk_mode.md
_AT_@ -0,0 +1,74 @@
+kiosk mode
+==========
+
+Description
+-----------
+
+With these steps you can change your system into a kiosk mode terminal.
+Please note that you do not have any access to the system but the web
+browser. To undo the changes you need a rescue system.
+
+Software
+--------
+
+This software has to be installed on the system for my whoto to work:
+
+* 'lxdm' login manager
+* 'i3' window manager
+* 'surf' web browser
+
+Feel free to use other components if desired.
+
+Basic setup
+-----------
+
+We have to ensure that the basic system can not be altered, so we lock
+all user accounts ('root' and 'kiosk' in this example):
+
+ passwd -l root
+ passwd -l kiosk
+
+Additionally we create a file '/etc/X11/xorg.conf.d/15-no-vt.conf'.
+
+ Section "ServerFlags"
+ Option "DontVTSwitch" "True"
+ EndSection
+
+Now X.org does not allow to change to the virtual terminal via
+'Ctrl-Alt-F1'.
+
+Depending on your setup you may want to stop and disable services like
+ssh daemon and/or disable public key authentication.
+
+Login manager
+-------------
+
+As the accounts are locked we need to enable auto login in the login
+manager. To make sure the correct window manager is started we add this
+in '/etc/lxdm/lxdm.cond', too.
+
+ autologin=kiosk
+ session=i3
+
+Window manager
+--------------
+
+The window manager 'i3' is locked down to just start web browser 'surf'
+with parameter '-k' in fullscreen mode. All key strokes are disallowed,
+except Ctrl+Shift+C to poweroff the system (via 'systemd'). Save the
+following file to '/home/kiosk/.i3/config':
+
+ set $mod Mod4
+
+ # shut down system with systemd/polkit
+ bindsym Control+Shift+E exec /usr/bin/systemctl poweroff
+
+ for_window [title="surf"] fullscreen enable
+ exec /usr/bin/surf -k http://surf.suckless.org/
+
+Now reboot your system and have fun. ;)
+
+Author
+------
+
+* Christian Hesse <mail_AT_eworm.de>
diff --git a/surf.suckless.org/files/kioskmode.md b/surf.suckless.org/files/kioskmode.md
deleted file mode 100644
index 271a668..0000000
--- a/surf.suckless.org/files/kioskmode.md
+++ /dev/null
_AT_@ -1,71 +0,0 @@
-kiosk mode
-==========
-
-Description
------------
-
-With these steps you can change your system into a kiosk mode terminal.
-Please note that you do not have any access to the system but the web
-browser. To undo the changes you need a rescue system.
-
-Software
---------
-
-This software has to be installed on the system for my whoto to work:
-
-* 'lxdm' login manager
-* 'i3' window manager
-* 'surf' web browser
-
-Feel free to use other components if desired.
-
-Basic setup
------------
-
-We have to ensure that the basic system can not be altered, so we lock
-all user accounts ('root' and 'kiosk' in this example):
-
- passwd -l root
- passwd -l kiosk
-
-Additionally we create a file '/etc/X11/xorg.conf.d/15-no-vt.conf'.
-
- Section "ServerFlags"
- Option "DontVTSwitch" "True"
- EndSection
-
-Now X.org does not allow to change to the virtual terminal via
-'Ctrl-Alt-F1'.
-
-Login manager
--------------
-
-As the accounts are locked we need to enable auto login in the login
-manager. To make sure the correct window manager is started we add this
-in '/etc/lxdm/lxdm.cond', too.
-
- autologin=kiosk
- session=i3
-
-Window manager
---------------
-
-The window manager 'i3' is locked down to just start web browser 'surf'
-with parameter '-k' in fullscreen mode. All key strokes are disallowed,
-except Ctrl+Shift+C to poweroff the system (via 'systemd'). Save the
-following file to '/home/kiosk/.i3/config':
-
- set $mod Mod4
-
- # shut down system with systemd/polkit
- bindsym Control+Shift+E exec /usr/bin/systemctl poweroff
-
- for_window [title="surf"] fullscreen enable
- exec /usr/bin/surf -k http://surf.suckless.org/
-
-Now reboot your system and have fun. ;)
-
-Author
-------
-
-* Christian Hesse <mail_AT_eworm.de>
Received on Tue Mar 12 2013 - 10:50:52 CET

This archive was generated by hypermail 2.3.0 : Tue Mar 12 2013 - 11:00:07 CET