source: images/thinclient/server/start @ 0105685

gcc484ntopperl-5.22
Last change on this file since 0105685 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 772 bytes
Line 
1#!/bin/bash
2
3echo " [ SYN-3 thin client ]"
4
5#we currently still have an ip, but the dhcp client is gone, so start a new one:
6#FIXME: when the server doesnt give the same adress, we will get a long delay because of the network mount. so use another dhcp client that asks for the same adress as is currently assigned.
7dhcpcd eth0 &
8
9#for debugging (use test private rsa key)
10/etc/rc.d/rc.sshd start &
11
12#do some dialog-configuring stuff?
13if grep "configure" /proc/cmdline; then
14        dialog bla
15fi
16
17####################### START GRAPICAL SESSION
18
19
20#Use XDMCP thin client mode:
21#/usr/X11/bin/X -broadcast
22
23#Use rdesktop/vnc/nxclient modes:
24#xinit ./xinitrc -- /usr/X11/bin/X -config /etc/X11/syn-3/framebuffer.conf
25#auto-config
26xinit ./xinitrc -- /usr/X11/bin/X
27
28/bin/bash
Note: See TracBrowser for help on using the repository browser.