Instalación de OpeNSLUg en Español

Pasos: primero sube el firmware. fdisk para particionar formatear mkfs.ext3 /dev/sda1 formatear swat mkswap /dev/sda2 turnup disk -i /dev/sda1 -t ext3 to create a root filesystem on the disk. (Or turnup memstick -i /dev/devicememstick -t ext3) turnup init arrancar (deberia hacerlo desde el HD) ipkg update ipkg upgrade ipkg install samba ipkg install xinetd ipkg install swat crea un fichero en /etc/xinetd.d/swat que contenga: service swat { disable = no port = 901 socket_type = stream protocol = tcp wait = no user = root server = /usr/sbin/swat log_on_failure += USERID } ipkg install nano -> editor de texto MUY BUENO Next you should create the directory /var/log/samba. Users must be added to the smbpasswd file in order to get access to SMB shares, but only users that exist in your system file may be used by Samba (users are listed in /etc/passwd). If the user guest does not exist, create it with: adduser guest The password used here will only be used to allow the user to log into the system, not to access SMB shares. The corresponding samba user can now be created using smbpasswd -a guest Choose any password (it may remain blank). This adds a line to the /etc/samba/private/smbpasswd file. Also note that /var/lock needs to have its permissions changed to 0755, use the following command chmod 0755 /var/lock para montar particiones: # xecute the command: swapon /dev/sda2 -> para montar la swap Si tu particion numero 3 es ext3 # Create on the root directory the /opt dir # Edit the /etc/fstab file # Add the following line at the end: /dev/sda3 /opt ext3 defaults 1 1 # Add the following line at the end: /dev/sda2 swap swap defaults 0 0 si se trata de fat16 o fat32 crea en mnt un directorio /mnt/vfat edita el /etc/fstab con esto: /dev/sda2 swap swap defaults 0 0 /dev/sdb5 /mnt/vfat vfat iocharset=iso8859-1,codepage=850,umask=000 0 0 ojo esta linea es para locale es_ES osease para España (sin contar gibraltar) pa ke esto vaya debes intalar los modulos del Kernel en español ipkg install kernel-module-nls-iso8859-1 ipkg install kernel-module-nls-cp850 para montar fat en castellano usa este comando: mount -o codepage=850,iocharset=iso8859-1 /dev/sdb5 /mnt/vfat

accder desde internet al disco duro

Volver a la configuracion inicial