Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Debian GNU/Linux Reference Guide
Prev Home Next

8.3.1 Grundlegende Kommandos zum Kopieren eines Unterverzeichnis

M�chte man seine Verzeichnisstruktur neu arrangieren, verschiebt man den Inhalt inklusive Datei-Links wie folgt:

     Standardmethode:
     # cp -a /source/directory /dest/directory # erfordert GNU cp
     # (cd /source/directory && tar cf - . ) | \
             (cd /dest/directory && tar xvfp - )
     Wenn ein harter Link beteiligt ist, ben�tigt man eine pedantische
     Methode:
     # cd /Pfad/zum/alten/Verzeichnis
     # find . -depth -print0 | afio -p -xv -0a /neues/Verzeichnis
     Vom entfernten Rechner:
     # (cd /Quell/Verzeichnis && tar cf - . ) | \
             ssh [email protected] (cd /Ziel/Verzeichnis && tar xvfp - )
     Wenn es keine Links gibt:
     # scp -pr [email protected]:/Quell/Verzeichnis \
               [email protected]:/Ziel/Verzeichnis

Hier gilt scp <==> rcp und ssh <==> rsh.

Die folgenden vergleichenden Informationen zum Kopieren eines kompletten Unterverzeichnis wurden von Manoj Srivastava [email protected] auf [email protected] aufgef�hrt.


Debian GNU/Linux Reference Guide
Prev Home Next

 
 
  Published under the terms of the GNU General Public License Design by Interspire