V. R. Iglesias recomienda CentOS Linux


         
 

¿Cómo limpiar el Master Boot Record?

dd if=/dev/zero of=/dev/hda bs=512 count=1

 

How to clear the Master Boot Record?

dd if=/dev/zero of=/dev/hda bs=512 count=1

 
         
 

¿Cómo crear una imagen ISO de una partición, CD o carpeta?

dd if=/dev/hda0 of=imagen.iso

o así, si quieres compactar el ISO:

dd if=/dev/hda0 | gzip > imagen_compactada.gz

Si quieres un ISO de sólo una carpeta escribe lo siguiente:

mkisofs -o /tmp/usuario_backup.iso /home/usuario/

Para descargar o volcar una imagen a una partición:

A partir del ISO:

dd if=imagen.iso of=/dev/hda0

A partir del compactado (.gz):

gzip -dc imagen.gz | dd of=/dev/hda0

 

How to create an ISO image from a partition, CD or folder?

dd if=/dev/hda0 of=image.iso

if you want a zipped file from the ISO image:

dd if=/dev/hda0 | gzip > gzipped_image.gz

From a folder:

mkisofs -o /tmp/user_backup.iso /home/user/

To dump the image to a partition:

From the ISO image:

dd if=image.iso of=/dev/hda0

From the zipped file (.gz):

gzip -dc gzipped_image.gz | dd of=/dev/hda0

 
        
 

¿Cómo montar una imagen ISO?

mount -t iso9660 imagen.iso /mnt/cdrom

 

How to mount an ISO image in linux?

mount -t iso9660 image.iso /mnt/cdrom

 
         
 

¿Cómo instalar Xwindows y Gnome en CentOS con Yum?

yum groupinstall "X Window System" "GNOME Desktop Environment"

 

How to install Xwindows and Gnome on Centos with Yum?

yum groupinstall "X Window System" "GNOME Desktop Environment"

 
         


Home / Inicio