Clone mounts as is


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Clone mounts as is
# 1  
Old 11-02-2013
Clone mounts as is

Hello,


Iam trying to clone AS IS two mounts like below

HTML Code:
/class_test/sa
/class_dev/fd
from one server onto another.

I want to use tar and gzip to compress. Please let me know the options I have to use.

Also I want to untar it in the destination server, so let me know how to do that too.

Please keep in mind my main criteria is AS IS ( permissions, owner, group everything )
# 2  
Old 11-02-2013
For those kinds of tasks I'm always using CPIO. Try that:
Code:
cd /class_test/sa; find . | cpio -o | gzip | ssh root@remote 'cd /class_test/sa && gunzip | cpio -imdu'

# 3  
Old 11-02-2013
cpio won't preserve SELinux contexts, if you are using Linux and have SELinux enabled, or ACL's.

If you require those consider using star instead, something like:

Code:
cd /class_test/sa
star -xattr -acl -H=exustar -c -f=- . | ... | star -x -acl -f=.

# 4  
Old 11-04-2013
What about using tar?

Can anyone give an example of how to use tar to achieve this?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

NFS mounts query

We have 2 servers in cluster. Node1 has an ext3 mount for backups and the other connects using NFS to this node1. I believe the reason it is configured in this manner is to not duplicate backups since this is a Database server. Not sure this was the reason though. Right now if node1 goes down all... (5 Replies)
Discussion started by: ikn3
5 Replies

2. Red Hat

Issue with mounts CIFS

I donot know much about CIFS but i have been asked to look into an issue related to mounting CIFS filesystem On my redhat 5.6 the /etc/fstab file has the following entry //172.25.x.x/de0/ /dir1/de0 cifs username=bodsadm,password=12345,dir_mode=0777,file_mode=0777,uid=de0adm,gid=sapsys,rw 0 0... (2 Replies)
Discussion started by: Tirmazi
2 Replies

3. Solaris

Max. number of NFS mounts

Hi, I was wondering, whether there is a limit regarding the max number of nfs mounts in Oracle Solaris 10 (newest update). The data center plans to migrate from a fibre channel based storage environment (hitachi) to a nfs based storage environment (netapp). Regarding the Solaris 10 database... (1 Reply)
Discussion started by: schms
1 Replies

4. UNIX for Dummies Questions & Answers

Automount show aval. mounts

Hi all I have an question about AMD daemon under unix. We have an /share folder under folders mapped with NIS. Now my question is Im root I go to /share folder then enter ls -la it shows nothing, but I know f.e. now that there is a folder "dumps" which isnt visible. If I enter cd dumps, it... (2 Replies)
Discussion started by: kl1ngac1k
2 Replies

5. Solaris

How to check NAS mounts being used ?

Hi, How can i check if a particular Netapps NAS share being used on some other servers - ie: being accessed, mounted? example: somedir - rw, intr servernetapp.net.com:/vol/vol100/somedir is being mounted on some filesystem on other server. is it possible to check on the NIS? (1 Reply)
Discussion started by: greencored
1 Replies

6. AIX

NFS mounts and user permissions

We need to allow ordinary users to preform NFS mounts on a AIX server without giving them root access to the server. Is there a way to give an ordinary users root access on a tem basis or a script to allow them to preform NFS mounts? (4 Replies)
Discussion started by: daveisme
4 Replies

7. UNIX for Dummies Questions & Answers

Mounts

Hi, I'm new to Linux and to this forum too. Now, I need some info. I have an application which writes some data onto one mount(logs and others). Now, I want to have some convention or script where if the mount(where the application is writing data) reaches certain amount of memory or if it... (1 Reply)
Discussion started by: krisdasword
1 Replies

8. AIX

Combining Mounts

I have 2 mounts with me. Each 200 Gigs. I have some heavy duty processing, that may require more than 200 Gigs at time. Is there anyway that I can make the two points a clubbed up directory. Or create a symbolic link (bleahhh). Here are factors: 1. two mounts are two different hard drives. (just... (0 Replies)
Discussion started by: seemit
0 Replies

9. Solaris

new mounts

hi, i have currently below mounts in solaris box and i want to create new mount points. please let me know how can i do it? bash-3.00# df -h Filesystem size used avail capacity Mounted on / 1000M 350M 609M 37% / /dev 1000M 350M ... (3 Replies)
Discussion started by: rags_s11
3 Replies

10. UNIX for Dummies Questions & Answers

Unix Stale Mounts

Is there an easy way to find all stale mounts on a system? (2 Replies)
Discussion started by: derf912
2 Replies
Login or Register to Ask a Question