scp a partition to another server


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users scp a partition to another server
# 1  
Old 12-14-2009
scp a partition to another server

I am in the process of migrating a server to another machine.

Without much thought, i just copied one partition to the other server using, simple scp in at job which ended up in mess.

Code:
scp -r /mnt/sda6/* root@IP:/mnt/sda9/

At first sight, it seemed correct. So i did this, for all the partitions which i want to copy.

And today, once after the weekend, when all the huge partitions are copied to here, when i investigate the directories, the partitions got filled up without really copying all the files. And found that, the links are copied, that is where as only the link is supposed to be copied, the original file also copied.

I am worried about what else went wrongly ?

So here is my question, how to exactly copy a partition to another server ?

Note: I actually seen the following, and it did not want to take risk something like this ? ( is this is a risk or good way to copy ? )

Code:
bzip2 -c /dev/sda1 | netcat hostA 2222

Code:
netcat -p 2222 -l |bzip2 -d | dd of=/dev/sdb3

I sincerely appreciate any help on this.
# 2  
Old 12-14-2009
Its a "classic"...
I havent yet tried a variant to use in ssh mode (since you were using scp...) or style, perhaps you will give me a good solution (while Im busy at other things... but I know it will be handy for me beginning next year...)
I till now used for such purpose (copying filsystem content from on host to another) 2 things:
1)the use of .rhosts file
2) tar
command on source host:
go the the source directory and type
Code:
tar -cf - * | remsh <remotehost> "(cd <dest_dir>;tar -xvf -)"

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

I want to scp file from one server to another, both server have different user name and

i want to scp file from one server to another. both server have different user name and it needs to give password to transfer file.how can we mention password in the script itself so that we need not mention password while running the script. Say from servers cpli with user abc and file path /opt... (7 Replies)
Discussion started by: Moon1234
7 Replies

2. Shell Programming and Scripting

scp without password for destination server

I am using the below command to scp the file to destination server ($server). The ssh keys have been created between the source and destination servers. Still I am getting password authentication after executing the below scp command: scp $Local_dir/$file_pattern* $username@$server:/$ftp_dir/... (1 Reply)
Discussion started by: Ganesh L
1 Replies

3. Shell Programming and Scripting

How to scp File from root user in one server to say crt user in another server and avoid password?

Can someone help in writing some script through which I can transfer file (scp) from root user in abc server to crt user in hfg server and can give the crt user password in script itself so that it doesn't prompt me every time for password (4 Replies)
Discussion started by: Moon1234
4 Replies

4. Cybersecurity

How to go about partition encryption on remote server?

Hi, im having an linux webserver located in another country and i have just SSH access. My aim is to protect (by encryption) /home partition on which are located website files and mysql database data. So i found "LUKS" SW which can encrypt partition, but the thing i dont understand is how... (2 Replies)
Discussion started by: postcd
2 Replies

5. Shell Programming and Scripting

Check the partition size on server

Dear All, I need notification mail from server while device size crossed 80% approximately.I tried following shell .its working fine when the device name like /dev/sdc1 etc.Its not working in LVM name.For example Script: #!/bin/sh echo "Storage server space details"; df -H | grep -vE... (4 Replies)
Discussion started by: kpoobathi
4 Replies

6. Shell Programming and Scripting

scp to same server

Suppose I am in server A . I have a file at one location in server A and I want to do scp of the file to same server A but to different location without asking password ( passwordless login to same server) .Pls help (1 Reply)
Discussion started by: maitree
1 Replies

7. Shell Programming and Scripting

scp files from other server with check

Hi all, I am new to this forum,and it has been really a great pleasure to be a part of this forum:) well,i m trying to write a shell script where i m transfering a set of files from other server to my own server. for this i m using scp... (1 Reply)
Discussion started by: prasson_ibm
1 Replies

8. Shell Programming and Scripting

scp file to another server without asking for password

hi I tried reading some of the threads w.r.t scp/sftp file to another server in the same network without asking for password while copying files.....but couldnot succeed. i have generated the public key for the system using "ssh-keygen -t " and kept it in the .ssh/authorized_keys file. ... (8 Replies)
Discussion started by: aemunathan
8 Replies

9. UNIX for Dummies Questions & Answers

scp or sftp to Window server

Dear Unix Gurus, I have a question to confirm before I proceed to script my program. I'm currently running on IBM AIX Ver 5.3. I just like to know if it's compatible to use scp or sftp between AIX and Wintel server? I'm trying to scp or sftp a file from AIX to Window server and I was... (1 Reply)
Discussion started by: lweegp
1 Replies

10. Shell Programming and Scripting

SCP logfiles from one server to another server

Hi, I want to copy all the logs except current date logs from one server to another server every day, so i want to write a script for it and put it in crontab. Can anyone help how to write the script. Regards, Srini (1 Reply)
Discussion started by: srinivasvandana
1 Replies
Login or Register to Ask a Question