Questions tagged [file-copy]

Questions regarding copying files from one place to another

Common mechanisms include:

  • cp
  • rsync
  • dd
  • rcp
  • install
  • pax
  • tar
  • cpio
631 questions
1128
votes
10 answers

How to copy files from one machine to another using ssh

I'm using Linux (centos) machine, I already connected to the other system using ssh. Now my question is how can I copy files from one system to another system? Suppose, in my environment, I have two system like System A and System B. I'm using…
user3021349
  • 14,809
  • 8
  • 18
  • 21
316
votes
10 answers

Copy a file back to local system with ssh

If I'm logged in to a system via SSH, is there a way to copy a file back to my local system without firing up another terminal or screen session and doing scp or something similar or without doing SSH from the remote system back to the local system?
Shawn J. Goff
  • 43,698
  • 23
  • 131
  • 143
200
votes
10 answers

How to copy-merge two directories?

I have two directories images and images2 with this structure in Linux: /images/ad /images/fe /images/foo ... and other 4000 folders and the other is like: /images2/ad /images2/fe /images2/foo ... and other 4000 folders Each of these…
ssierral
  • 2,103
  • 2
  • 12
  • 9
135
votes
8 answers

How to sync two folders with command line tools?

Having migrated to Linux from Windows, I would like to find an alternative software to Winmerge or rather learn command line tools to compare and sync two folders on Linux. I would be grateful if you could tell me how to do the following tasks on…
akopacsi
  • 1,453
  • 2
  • 10
  • 6
131
votes
4 answers

Copy the contents of a file into the clipboard without displaying its contents

How to copy the contents of a file in UNIX without displaying the file contents. I don't want to cat or vi to see the contents. I want to copy them to clipboard so that I can paste it back on my windows notepad. I can't copy the file from that…
Web Nash
  • 2,063
  • 4
  • 14
  • 10
88
votes
5 answers

Is there a way to determine the optimal value for the bs parameter to dd?

On occasion I've seen comments online along the lines of "make sure you set 'bs=' because the default value will take too long," and my own extremely-unscientific experiences of, "well that seemed to take longer than that other time last week" seem…
user4443
84
votes
5 answers

Why use install rather than cp and mkdir?

I've seen in many places used install -d to create directories and install -c to copy a file. Why not use mkdir and cp? Is there an advantage in using install?
72
votes
3 answers

Why is my PC freezing while I'm copying a file to a pendrive?

I have a really strange situation here. My PC works fine, at least in most cases, but there's one thing that I can't deal with. When I try to copy a file from my pendrive, everything is ok -- I got 16-19M/s , it works pretty well. But when I try to…
Mikhail Morfikov
  • 9,899
  • 17
  • 65
  • 97
52
votes
6 answers

How do I copy multiple files by wildcard?

I have a folder with a number of files in it ABC.* (there are roughly 100 such files). I want to duplicate them all to new files with names starting with DEF.* So, I want ABC.Page1 ABC.Page2 ABC.Topic12 ...etc copied…
Octopus
  • 2,419
  • 6
  • 19
  • 25
50
votes
12 answers

Is there a faster alternative to cp for copying large files (~20 GB)?

I am a graduate student, and the group in which I work maintains a Linux cluster. Each node of the cluster has its own local disk, but these local disks are relatively small and are not equipped with automatic backup. So the group owns a…
Andrew
  • 14,895
  • 34
  • 72
  • 77
46
votes
5 answers

Duplicate file x times in command shell

I try to duplicate a video file x times from the command line by using a for loop, I've tried it like this, but it does not work: for i in {1..100}; do cp test.ogg echo "test$1.ogg"; done
Black
  • 1,771
  • 7
  • 21
  • 48
45
votes
1 answer

What happens when you rsync without a destination?

To make the story short, I did an rsync: rsync -avP user@exampleserver.com:/tmp/ And I forgot to put in my source directory... I really meant to run: rsync -avP /tmp/ user@exampleserver.com:/tmp/ It printed a bunch of files, but I don't know where…
Questionmark
  • 3,605
  • 8
  • 34
  • 56
42
votes
1 answer

rsync to copy files which has changed

I need to copy some files from a particular directory to a different location on a daily basis. I want to copy the changes only, so planning to use rsync. These files follows the following naming convention mysql-bin.* My command looks as follows #…
Zama Ques
  • 2,796
  • 10
  • 36
  • 53
37
votes
7 answers

Is it a UUOC (useless use of cat) to redirect one file to another?

If I want to make the contents of file2 match the contents of file1, I could obviously just run cp file1 file2. However, if I want to preserve everything about file2 except the contents—owner, permissions, extended attributes, ACLs, hard links,…
Wildcard
  • 34,117
  • 21
  • 120
  • 234
36
votes
7 answers

Can I transfer files using SSH?

I am using PuTTY on Windows 7 to SSH to my school computer lab. Can I transfer files from my Windows machine to my user on the school machines using SSH?
Alex Mohr
  • 502
  • 2
  • 6
  • 10
1
2 3
42 43