La funcionalidad de Zones Parallel Patching fue liberada para Sparc y X86 el cual existe en el contenido de los utilities patch, Version 119254-66 (SPARC) and 119255-66 (x86). Las condiciones que se deben de tener para aplicar esto son las siguientes: |
Regresar |
MOVING FILES WITH CPIO
If you have a multitude of
files to move from one
directory or filesystem to
another, here's a one liner:
# find /old_directory -depth | cpio -pdmv /new_directory
This will move all of the
files under the specified
old_directory to the
new_directory, keeping the
same ownership, permissions,
and directory structure.