Se voce tem um micro velho com pouco HD, pouca memória, processador muito limitado pode-se transformá-lo em um terminal de outro micro facilmente com os seguintes procedimentos. A máquina deve ter placa de rede.
$ dd if=ficheiro of=/dev/fd0 bs=1024 conv=sync ; sync- Iniciar o micro a ser instalado com o disquete
boot.img
. O sistema pedirá para voce inserir os demais. root
e fazer o seguinte:apt-get install xserver-xorg
/etc/inittab
no trecho indicando abaixo deixando da seguinte forma (troque xxx.xxx.xxx.xxx pelo IP de sua máquina servidora da xdm):
# Format: # <id>:<runlevels>:<action>:<process> # # Note that on most Debian systems tty7 is used by the X Window System, # so if you want to add more getty's go ahead but skip tty7 if you run X. # #1:2345:respawn:/sbin/getty 38400 tty1 1:2345:respawn:/usr/X11R6/bin/X -indirect xxx.xxx.xxx.xxx 2:23:respawn:/sbin/getty 38400 tty2 #3:23:respawn:/sbin/getty 38400 tty3 #4:23:respawn:/sbin/getty 38400 tty4 #5:23:respawn:/sbin/getty 38400 tty5 #6:23:respawn:/sbin/getty 38400 tty6
Feito! Agora quando reiniciar o sistema ele vai identificar as servidoras na sua rede que podem ser vistas delo xdm.
Outra dica: se voce tiver um hardware antigo, com mouse serial modifique "Protocol" e "Device" em /etc/X11/xorg.conf
como a seguir
Section "InputDevice" Identifier "Generic Serial Mouse" Driver "mouse" Option "Device" "/dev/ttyS0" Option "Protocol" "Microsoft" Option "Emulate3Buttons" "true" Option "SendCoreEvents" "true" EndSection