Archivo de la categoría: Nix

sh file

#!/bin/shzip -r wp.zip public_html/wpmysqldump -uusuario -pclave -hlocalhost carlosap_crm > carlosap_crm.sqlecho «respaldo  Ok» echo «Pregunta (y/n) ? «read respuestaif test $respuesta = y  thencp -v hola hola2fi     Tags: sh

zip files

zip -r wp.zip public_html/wp Tags: zip, files

Apache 2 – WebDAV

This document describes setting up WebDAV on Apache 2 on a Red Hat 9 system. It assumes that apache is more or less unmodified – if you’ve made changes, adjust accordingly. Requirements (…fix me…) Outline

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 »

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 »