"नहीं खोल सकता है: कोई ऐसी फ़ाइल या निर्देशिका नहीं है" जब एक टार फ़ाइल निकाल रहे हों


10

मैं Apache Cassandra जो एक tar.gz फ़ाइल है, को स्थापित करने की कोशिश कर रहा हूँ। निम्नलिखित आउटपुट है जो मुझे मिल रहा है।

पहला उदाहरण:

tar -zxvf apache-cassandra-2.0.3-bin.tar.gz
tar (child): apache-cassandra-2.0.3-bin.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

दूसरा उदाहरण:

tar -zxvf apache-cassandra-2.0.3-bin.tar.gz.gitignore
tar (child): apache-cassandra-2.0.3-bin.tar.gz.gitignore: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

क्या करें? मुझे जिन फ़ाइलों को इंस्टॉल करने की आवश्यकता है, वे एक डिस्क में हैं और मशीन में कॉपी नहीं की गई हैं। क्या वो वजह बन रही हे?


क्या फ़ाइल वर्तमान निर्देशिका में मौजूद है? ( pwdवर्तमान कार्यशील निर्देशिका की जाँच करने के लिए, निर्देशिका cdबदलने के lsलिए और फ़ाइल नाम की जाँच करने के लिए उपयोग करें)
पंड्या

@AJ यह एक डुप्लिकेट कैसे है?
ब्रिअम

@Braiam मुझे लगा कि समस्या .tar.gz इंस्टालेशन में है ... सॉरी ..
AJ

जवाबों:


8

आपकी समस्या का कारण त्रुटि रिपोर्ट में है।

Cannot open: No such file or directory

cdउस निर्देशिका में एड जिस पर apache-cassandra-2.0.3-bin.tar.gzफ़ाइल स्थित है और फिर यह सामग्री निकालने के लिए नीचे कमांड चलाएं।

tar -zxvf filename.tar.gz   # Replace the filename with your's
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.