“ ไม่สามารถเปิดได้: ไม่มีไฟล์หรือไดเรกทอรีดังกล่าว” เมื่อทำการแตกไฟล์ tar


10

ฉันพยายามติดตั้ง Apache Cassandra ซึ่งเป็นไฟล์ tar.gz ต่อไปนี้เป็นผลลัพธ์ที่ฉันได้รับ

ตัวอย่างที่ 1:

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

ตัวอย่างที่ 2:

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เพื่อตรวจสอบชื่อไฟล์)
Pandya

@AJ ซ้ำนี้เป็นอย่างไร
Braiam

@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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.