Zimbra install centos 5

How to Install Zimbra 4.5 on CentOS5Version 1.0 Written by Neil McCauley Here are the steps required to successfully install zimbra on CentOS5 the system will work perfectly even after its rebooted. This has been tested and is working on a production server. 1. Install Centos5 from DVD or CDROM configure the entire disk2. Configure… Leer más: Zimbra install centos 5 »

asm linux

section .data hello:     db ‘Hello world!’,10    ; ‘Hello world!’ plus a linefeed character helloLen:  equ $-hello             ; Length of the ‘Hello world!’ string                                    ; (I’ll explain soon) section .text global _start _start: mov eax,4            ; The system call for write (sys_write) mov ebx,1            ; File descriptor 1 – standard output mov ecx,hello        ; Put the offset of hello in ecx mov edx,helloLen    … Leer más: asm linux »

To disable IPv6 in a virtual machine running Linux vmware

To disable IPv6 in a virtual machine running Linux 1 If the file /etc/sysconfig/network contains the line NETWORKING_IPV6=yes, change the line to NETWORKING_IPV6=no. 2 In the file /etc/modules.conf, add the following lines:alias ipv6 offalias net-pf-10 off Tags: wmware+disable+ipv6