streda 4. decembra 2019

Klonovanie adresáru

Úvod

Potrebujem klonovať adresár:

1. mám užívateľov v /home/ , potrebujem ich zmigrovať do /home/users/

2. Použijem cp -rp

 cp poznáme

-r rekurzívne

-p zachováva pôvodné údaje, tj. mode, ownership, timestamp


Prakticky: 


Toto som potreboval prekopírovať

[root@reserv-15-vpn-fw ~]# ls -l /home/marcopolo/
total 604
-rw-r--r--. 1 marcopolo marcopolo 581843 Dec  4 14:41 moduli
-rw-r--r--. 1 marcopolo marcopolo   2276 Dec  4 14:41 ssh_config
-rw-------. 1 marcopolo marcopolo   3907 Dec  4 14:41 sshd_config
-rw-r-----. 1 marcopolo marcopolo    227 Dec  4 14:41 ssh_host_ecdsa_key
-rw-r--r--. 1 marcopolo marcopolo    162 Dec  4 14:41 ssh_host_ecdsa_key.pub
-rw-r-----. 1 marcopolo marcopolo    387 Dec  4 14:41 ssh_host_ed25519_key
-rw-r--r--. 1 marcopolo marcopolo     82 Dec  4 14:41 ssh_host_ed25519_key.pub
-rw-r-----. 1 marcopolo marcopolo   1679 Dec  4 14:41 ssh_host_rsa_key
-rw-r--r--. 1 marcopolo marcopolo    382 Dec  4 14:41 ssh_host_rsa_key.pub


príkaz:   cp -rp

[root@reserv-15-vpn-fw ~]# cp -rp /home/marcopolo/ /home/users

Výsledok

Čo nám vytvorilo?


[root@reserv-15-vpn-fw ~]# ls -l /home/users/marcopolo/
total 604
-rw-r--r--. 1 marcopolo marcopolo 581843 Dec  4 14:41 moduli
-rw-r--r--. 1 marcopolo marcopolo   2276 Dec  4 14:41 ssh_config
-rw-------. 1 marcopolo marcopolo   3907 Dec  4 14:41 sshd_config
-rw-r-----. 1 marcopolo marcopolo    227 Dec  4 14:41 ssh_host_ecdsa_key
-rw-r--r--. 1 marcopolo marcopolo    162 Dec  4 14:41 ssh_host_ecdsa_key.pub
-rw-r-----. 1 marcopolo marcopolo    387 Dec  4 14:41 ssh_host_ed25519_key
-rw-r--r--. 1 marcopolo marcopolo     82 Dec  4 14:41 ssh_host_ed25519_key.pub
-rw-r-----. 1 marcopolo marcopolo   1679 Dec  4 14:41 ssh_host_rsa_key
-rw-r--r--. 1 marcopolo marcopolo    382 Dec  4 14:41 ssh_host_rsa_key.pub


Zdroj: https://www.howtogeek.com/442101/how-to-move-your-linux-home-directory-to-another-hard-drive/

Klonovanie v praxi:-)

Žiadne komentáre:

Zverejnenie komentára