* Establecer contraseña para super usuario / root sudo passwd root * Entrar como super usuario / root sudo su * Eliminar "GNOME Orca" y "LibreOffice" apt-get remove --purge gnome-orca apt-get remove --purge libreoffice* * Eliminar posibles dependencias de pogramas apt-get clean apt-get autoremove * Agregar "Mozilla Firefox" y "LibreOffice" a los Repositorios add-apt-repository ppa:mozillateam/firefox-next add-apt-repository ppa:libreoffice/ppa * Actualizar lista de repositorios apt-get update apt-get upgrade * Actualizar Sistema Buscar en Configuración del Sistema (reiniciar al acabar) * Instalar Mozilla Firefox, "LibreOffice" y "Gimp" sudo su apt-get install firefox apt-get install firefox-locale-es apt-get install libreoffice apt-get install libreoffice-l10n-es apt-get install libreoffice-help-es apt-get upgrade * Restaurar normativa eth0, eth1, etc rm -rf /etc/udev/rules.d/* nano /etc/default/grub GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0" ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules update-grub update-grub2 reboot * Configurar las direcciones IP de los puertos de red sudo su nano /etc/network/interfaces auto lo iface lo inet loopback # Tarjeta de Red Primaria (Internet) auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 # Tarjeta de Red Secundaria (DHCP-LSTSP) auto eth1 iface eth1 inet static address 10.0.0.254 netmask 255.0.0.0 * Configurar DNS nano /etc/resolvconf/resolv.conf.d/base nameserver 8.8.8.8 nameserver 4.4.4.4 * Reiniciar ordenador reboot * Comprobar si se mantienen las DNS cat /etc/resolv.conf nameserver 8.8.8.8 nameserver 4.4.4.4 * Probar si hay conexión sudo su ping 8.8.8.8 * Parar comprobación Presionar "Control + Z" * Instalar servicio LTSP apt-get install ltsp-server-standalone openssh-server * Asignar ETH1 como servidor DHCP nano /etc/default/isc-dhcp-server INTERFACES="eth1" * Configurar rango DHCP nano /etc/ltsp/dhcpd.conf GNU nano 2.2.6 Archivo: /etc/ltsp/dhcpd.conf # # Default LTSP dhcpd.conf config file. # authoritative; subnet 10.0.0.0 netmask 255.0.0.0 { range 10.0.0.1 10.0.0.100; option domain-name "example.com"; option domain-name-servers 10.0.0.254; option broadcast-address 10.255.255.255; option routers 10.0.0.254; # next-server 10.0.0.254; # get-lease-hostnames true; option subnet-mask 255.0.0.0; option root-path "/opt/ltsp/i386"; if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" { filename "/ltsp/i386/pxelinux.0"; } else { filename "ltsp/i386/nbi.img"; } } * Reiniciar el servidor DHCP /etc/init.d/isc-dhcp-server restart * Crear usuarios adduser usuario01 adduser usuario02 adduser usuario03 adduser usuario04 adduser usuario05 * Instalar "ntopng" para controlar tráfico de red apt-get install ntopng * Configurar ntopng para que escuche la tarjeta de red ETH1 y utilice el puerto 3001 nano /etc/ntopng.conf -i=eth1 -w=3001 * Reiniciar ordenador e iniciar ntop systemctl restart ntopng * Comprobar que servicio ntop funciona Abrir navegador e ir al enlace "http://localhost:3001" User: admin Pass: admin * Instalar "htop" para monitorizar los procesos activos de los clientes apt-get install htop * Comprobar si htop funciona htop * Parar comprobación Presionar "Control + Z" * Instalar WakeOnLAN apt-get install wakeonlan * Preparar imagen para clientes ligeros ltsp-build-client --arch i386 --copy-package-cache --keep-package * Establecer entorno GNOME CLASSIC por defecto para los clientes (se ha de crear) nano /var/lib/tftpboot/ltsp/i386/lts.conf [DEFAULT] # Inicio automático por IP LDM_AUTOLOGIN = TRUE [10.0.0.1] LDM_USERNAME = usuario01 LDM_PASSWORD = qwerty [10.0.0.2] LDM_USERNAME = usuario02 LDM_PASSWORD = qwerty [10.0.0.3] LDM_USERNAME = usuario03 LDM_PASSWORD = qwerty [10.0.0.4] LDM_USERNAME = usuario04 LDM_PASSWORD = qwerty [10.0.0.5] LDM_USERNAME = usuario05 LDM_PASSWORD = qwerty * Instalar "epoptes" para poder monitorizar y controlar a los clientes apt-get install epoptes * Establecer usuario servidor para el uso de epoptes gpasswd -a "server" epoptes * Loguearse como cliente ltsp para hacer modificaciones varias ltsp-chroot --arch i386 * Actualizar repositorios apt-get update apt-get upgrade * Instalar funcion "nano" para editar ficheros apt-get install nano * Instalar "epoptes client" apt-get install epoptes-client * Establecer nombre de servidor ltsp para epoptes, puede ser la ip del servidor. Quitar "#" nano /etc/default/epoptes-client SERVER=10.0.0.254 * Obtener Certificados epoptes-client -c * Salir del modo client ltsp exit * Acabar la imagen ltsp-update-kernels ltsp-update-sshkeys ltsp-update-image * Reiniciar y probar reboot