Entradas

Objetos en Flash y el "z-index"

Actualmente estoy trabajando en el desarrollo de un sitio web basado en WebGUI, paquete en Debian y me encontré con un problema. Este sitio web tiene embedido un objeto flash y un menú horizontal desplegable, lo que sucede es que al desplegar el menú este queda ubicado por debajo del objeto en flash. Queremos entonces que suceda todo lo contrario, al desplegarse el menú este quede posicionado por encima del objeto flash. Solución: Encerrar el objeto flash dentro de un "div" y agregar la siguiente propiedad flash: Listo!! Esto hace una especia de truco, que permite ver el menú en vez del objeto. No quiere decir que el menú esté ahora por encima del objeto. Al colocar un objeto flash dentro de un HTML, este queda instantáneamente ubicado por encima de cualquier cosa! Ojo: Al parecer declarar un style="z-index: -cualquiernúmero;position: laquesea" dentro del div, no afecta en lo absoluto el comportamiento del objeto.

Solución ATI - FGLRX

Problema de instalación para tarjetas recientes de ATI. CASO: Tarjeta de video ATI HD 5770. Sistema Operativo: Debian Sid. Kernel: 2.6.32-5-amd64 Problema: Al intentar instalar el módulo fglrx y cargarlo según los pasos regulares. # m-a prepare # m-a update # m-a a-i fglrx Se obtiene un error al momento de ejecutar: # m-a a-i fglrx Existe un error para compilar el módulo fglrx ya que se renombró una función interna en el archivo kcl_ioctl.c, lo que produce que se arroje el siguiente error: > >> /var/lib/dkms/fglrx/10-9/build/kcl_ioctl.c: In function > >> ‘KCL_IOCTL_AllocUserSpace32’: /var/lib/dkms/fglrx/10-9/build/kcl_ioctl.c:196: > >> error: implicit declaration of function ‘compat_alloc_user_space’ Solución: 1) Esperar por un patch de Debian. 2) Editar el archivo que se muestra en la ruta dada en el mensaje de error: # vim /var/lib/dkms/fglrx/10-9/build/kcl_ioctl.c Y realizar el siguiente cambio: void* ATI_API_CALL KCL_IOCTL_AllocUserSpace32(long ...

WEBGUI EN DEBIAN TIENE SOPORTE

Debian already has WebGUI support If you want to install WebGUI on a Debian GNU/Linux you can use the readily available packages from Debian's repository. Bear in mind that Debian carries the latest stable WebGUI releases, usually available a day or two after Plainblack's release. Installation is done using either aptitude from the command line or synaptic from your preferred desktop environment. Debian Sid (Unstable) If you are running an up to date Debian Sid (unstable) system, you only need to aptitude install webgui in order to get the latest available package installed, including all its dependencies. If you want to have MySQL in the same server, you will need to aptitude install mysql-server in order to get it installed. Debian Lenny (stable) If you are running an up to date Debian Lenny (stable) sytem, you need to do a few extra things in order to use the WebGUI and YUI packages from Sid, while keeping the rest of your system in Lenny. Start by adding a prope...

Información a Considerar #4

Imagen
Herramientas de Monitoreo: The commands discussed below are some of the most basic commands when it comes to system analysis and debugging server issues such as: Finding out bottlenecks. Disk (storage) bottlenecks. CPU and memory bottlenecks. Network bottlenecks. #1: top - Process Activity Command The top program provides a dynamic real-time view of a running system i.e. actual process activity. By default, it displays the most CPU-intensive tasks running on the server and updates the list every five seconds. Fig.01: Linux top command Commonly Used Hot Keys The top command provides several useful hot keys: Hot Key Usage t Displays summary information off and on. m Displays memory information off and on. A Sorts the display by top consumers of various system resources. Useful for quick identification of performance-hungry tasks on a system. f Enters an interactive configuration screen for top. Helpful for setting up top for a specific task. o ...

Información a Considerar #3

Asegurando un servidor, Consejos: #1: Encrypt Data Communication All data transmitted over a network is open to monitoring. Encrypt transmitted data whenever possible with password or using keys / certificates. Use scp, ssh , rsync, or sftp for file transfer. You can also mount remote server file system or your own home directory using special sshfs and fuse tools. GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kind of public key directories. Fugu is a graphical frontend to the commandline Secure File Transfer application (SFTP). SFTP is similar to FTP, but unlike FTP, the entire session is encrypted, meaning no passwords are sent in cleartext form, and is thus much less vulnerable to third-party interception. Another option is FileZilla - a cross-platform client that supports FTP, FTP over SSL/TLS (FTPS), and SSH File Transfer Protocol (SFTP). OpenVPN is a cost-effective, lightweight SSL...

Información a Considerar #2

Imagen
Mejores Prácticas sobre el uso de OpenSSH (seguridad): Default Config Files and SSH Port /etc/ssh/sshd_config - OpenSSH server configuration file. /etc/ssh/ssh_config - OpenSSH client configuration file. ~/.ssh/ - Users ssh configuration directory. ~/.ssh/authorized_keys or ~/.ssh/authorized_keys - Lists the public keys (RSA or DSA) that can be used to log into the user’s account /etc/nologin - If this file exists, sshd refuses to let anyone except root log in. /etc/hosts.allow and /etc/hosts.deny : Access controls lists that should be enforced by tcp-wrappers are defined here. SSH default port : TCP 22 SSH Session in Action #1: Disable OpenSSH Server Workstations and laptop can work without OpenSSH server. If you need not to provide the remote login and file transfer capabilities of SSH, disable and remove the SSHD server. CentOS / RHEL / Fedora Linux user can disable and remove openssh-server with yum command: # chkconfig sshd off # yum erase openssh-server Debian...