Archivo de la categoría: Nix

ZFS SOlaris XEN DomUS

Author Content seriv Sep 21, 200710:05 AM I’ve posted yesterday an opposite installation tips. See [[email protected]]I think having OpenSolaris as Dom0 gives you a lot of advantages. You may use zfs zvols as storage devices for your DomUs. This really makes backup, both full and incremental, easy and fast. Just use zfs snapshot, then zfs… Leer más »

NX+freenx server binary tarball for Solaris 10 x86I compiled and built this ready to use nx+freenx server tarball for solaris10 x86. This is both freenx 0.7.0 and the nomachine NX libraries version 2.1.0-2.

I compiled and built this ready to use nx+freenx server tarball for solaris10 x86. This is both freenx 0.7.0 and the nomachine NX libraries version 2.1.0-2.Tested on a fresh solaris 10 x86 u4 8/07 Here’s gnome and CDE on sol10x86, for the non-believers. Just download nx_freenx_sol10x86.tar.gz place it in your server at /, and uncompress.… Leer más »

grub centos

http://forums.theplanet.com/index.php?showtopic=57473

resize the virtual disk image?

Solution:  This solution is to increase your virtual disk size:  cd /var/lib/xen/images/vlinux1 #use dd to create a 1 GB file dd if=/dev/zero of=Tempfile bs=1024 count=1000000 #append this file to virtual image file (in this case is hda) cat Tmpfile >> hda  resize2fs -f hda  ——————  este es como vmware que te da espacio pero no… Leer más »

script generates a MAC address for Xen guests

#!/usr/bin/python # macgen.py script generates a MAC address for Xen guests # import random mac = [ 0x00, 0x16, 0x3e, random.randint(0x00, 0x7f), random.randint(0x00, 0xff), random.randint(0x00, 0xff) ] print ‘:’.join(map(lambda x: «%02x» % x, mac))

Hide sendmail version

vim sendmail.cf Cambiar lo siguiente: # SMTP initial login message (old $e macro) #O SmtpGreetingMessage=$j Sendmail $v/$Z; $b O SmtpGreetingMessage=$j Sendmail ; $b

Hide apache and php version

http://nixcraft.com/server-configuration-tutorials/746-apache-php-web-server-security-hiding-version-information.html How do I Hide Apache Version info? Open httpd.conf file (located in /etc/httpd/ directory /etc/apache2/ )   Code: vi httpd.conf Set Apache ServerTokens to product only but don’t show version and other info:   Code: ServerTokens Prod This directive controls whether Server response header field which is sent back to clients includes a description… Leer más »