How to Copy Files in linux in Hindi
हेलो दोस्तों आज मै Linux में File को कैसे Copy करते है How to Copy Files in linux उसके बारे में बताने वाला हूँ और Copy Files in linux के कुछ Examples भी बताने वाला हूँ। अगर दोस्तों आप को Linux में file को Copy करना नहीं आता तो मै आज इस आर्टिकल में बताने जा रहा हूँ तो इस आर्टिकल को ध्यान से पढ़िए तो चलिए जान लेते है Linux में File को कैसे Copy करे।
तो सबसे पहले आपको Linux के Command का थोड़ा knowledge होना चाहिए अभी आप Linux Copy files कर सकते है आप Linux को ये Commands की मदद से केवल Terminal window.से ही चलाए जा सकते हैं। यदि आपका Linux का version desktop graphical interface, पर बूट होता है, तो CTRL-ALT-F2 या CTRL-ALT-T दबाकर Terminal विंडो लॉन्च करें।
Using cp command in Linux with Example And Directories in Linux
Linux में फाइलों और Directories की Copy बनाने के लिए cp command पहला method है। Virtually सभी Linux Distributions cp का उपयोग किया जाता है यह Command का Basic format है।
$ cp [additional_option] source_file target_file
For example:
$ cp my_file.txt my_file2.txt
यह Linux command my_file.txt फ़ाइल की एक Copy बनाता है और New File का नाम बदलकर my_file2.txt कर देता है।
दोस्तों मुख्य रूप से, cp command उसी directory में चलता है जिसमें आप काम कर रहे हैं। हालाँकि,एक ही फ़ाइल एक ही directory में दो बार मौजूद नहीं हो सकती है। उसी स्थान पर Copy करने के लिए आपको target File का नाम बदलना होगा।
यदि destination file मौजूद है, तो हो सकता है कि Linux द्वारा आपकी फ़ाइल को overwrites करने से पहले आपको कोई warning न मिले - सावधान रहें, या -i विकल्प के लिए नीचे देखें।
How to Copy File to Another Directory in Linux
जिस Directory में आप काम कर रहे हैं, उससे किसी फ़ाइल को किसी Different स्थान पर कॉपी करने के लिए, command का उपयोग किया जाता है।
$ cp my_file.txt /new_directory
आपको File का नाम बदलने की ज़रूरत नहीं है, जब तक कि target directory में पहले से ही same नाम वाला कोई न हो।
Source फ़ाइल के लिए path निर्धारित करने के लिए:
$ cp /etc/my_file.txt /new_directory
यह आपको directories को बदले बिना Copy करने देता है। यदि यह मौजूद नहीं है तो cp कमांड /new_directory बनाएगा।
File का नाम बदलने और किसी different path पर कॉपी करने के लिए:
$ cp my_file.txt /new_directory/my_file2.txt
यह Option कॉन्फ़िगरेशन फ़ाइलों का बैकअप बनाने,के लिए किया जाता है और डेटा को स्टोरेज डिवाइस में कॉपी करने के लिए उपयोगी है।
Copy Multiple Files Linux in Directories
एक साथ Multiple फाइलों और Directories की Copy बनाने के लिए, last argument के रूप में Destination के साथ source फ़ाइलों और directories के नाम निर्धारित करता है।
$ cp file.txt dir file1.txt file2.txt dir1
Multiple फ़ाइलों की Copy करते समय, destination एक directory होना चाहिए।
सीपी cp command आपको pattern मिलान का उपयोग करने की भी अनुमति देता है। उदाहरण के लिए, सभी .png फ़ाइलों को वर्तमान directory से /backup directory में कॉपी करने के लिए, आप इसका उपयोग करेंगे:
$ cp *.png /backup
Copy Using rsync Command / Directories with the rsync Command
Linux में rsync command का उपयोग दो स्थानों के बीच डेटा को synchronize या differences करने के लिए किया जाता है। उपयोग cp के समान है, लेकिन ध्यान देने योग्य कुछ महत्वपूर्ण अंतर हैं।
किसी File को को Copy करने के terminal में Enter करें:
$ rsync –a my_file.txt /new_directory/my_file_backup.txt
Option -a का अर्थ है सभी, और rsync कमांड के साथ शामिल है यह उपनिर्देशिका, subdirectories लिंक और अन्य metadataको संरक्षित करता है।
my_file.txt फ़ाइल को working directory में बदलें।
/new_directory/ को destination से बदलें।
Target के रूप में my_file_backup.txt का उपयोग करना indicates करता है कि Copy के दौरान फ़ाइल का नाम बदल दिया जाएगा।
Rsync के साथ Directory की Copy बनाने के लिए, कुछ Enter करें:
$ rsync –a /etc/docker/ /home/backup/docker/
Post के बारे बारे :
हम आशा करते है आपको यह आर्टिकल पसंद आया होगा इसमें आपको बताया गया How to Copy Files in linux और Copy files in linux Linux में File को कैसे Copy करते है अगर फिर भी आपका कोई सवाल हो इस पोस्ट से Related तो हमें Comment कर सकते है OK धन्यबाद !
Hi Sir
ReplyDeletePost a Comment