
Originally Posted by
McChikenhanger
The machines that I'll be using are laptops, so they will be connecting through the wireless. Is it difficult to get them working in this way? They all have HDDs so I think I'll have them booting up from there, instead of PXE. Don't think you can do PXE boot through Wireless. I was thinking of using something like Ubuntu, seems fairly easy to get that one working.
We use Debian, a basic text-only install with XFCE added as the user interface. I have the following notes on setting it up:
Code:
Install Debian - text only, no GUI components.
Set hostname: KSOS
Root password: ......
New user: administrator
Same password
Set minimal boot time in grub settings:
nano /boot/grub/grub.cfg
set timeout=0
Install minimal GUI
apt-get install xfce4
Wireless
Edit /etc/apt/sources.list:
Edit line to read:
deb http://ftp.us.debian.org/debian squeeze main contrib non-free
apt-get update
apt-get install firmware-ralink wireless-tools wpasupplicant
chmod 0600 /etc/network/interfaces
Edit /etc/network/interfaces:
auto wlan0
iface wlan0 inet dhcp
wpa-ssid NameGoesHere
wpa-psk ......
Auto-logon administrator
From http://forums.debian.net/viewtopic.php?t=29333:
Edit /etc/inittab, Comment out the line:
1:2345:respawn:/sbin/getty 38400 tty1
And replace with:
1:2345:respawn:/bin/login -f administrator tty1 </dev/tty1 >/dev/tty1 2>&1
Reboot
Auto logged on as administrator, edit .bashrc, add to the end:
if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then
startx
fi
Reboot
Install Chrome:
Download from Google, place on to memory stick, load on target machine seems to be best bet - target machine
doesn't have web browser by default.
dpkg -i google-chrome-stable_current_i386.deb
apt-get -f install
rm google-chrome-stable_current_i386.deb
Run Chrome
Set homepage to http://frog/eyfs
Set mouse cursor:
apt-get install big-cursor
In XFCE: Start menu, Settings, XFCE 4 Settings Manager
Add item for Chrome:
google-chrome --incognitio --kiosk
To install rdesktop you'll can probably just type something alogn the lines of "apt-get install rdesktop".