Find the answer to your Linux question:
Results 1 to 2 of 2
I am a Linux n00b. I am trying to install some files from source on a Red Had cluster. But when I try to do this, tar -xvf ~/my_software.tar It ...
  1. #1
    Just Joined!
    Join Date
    Sep 2009
    Posts
    1

    Question Need help with tar

    I am a Linux n00b.

    I am trying to install some files from source on a Red Had cluster.
    But when I try to do this,
    tar -xvf ~/my_software.tar
    It lists the names of each file and this " Cannot open: No such file or directory
    tar: Error exit delayed from previous errors"

    What could I be doing wrong?

    Thanks
    ~ BigMama

  2. #2
    Blackfooted Penguin daark.child's Avatar
    Join Date
    Apr 2006
    Location
    West Yorks
    Posts
    4,344
    Hi and welcome to the forums.

    That error usually happens when you are using an incorrect path or filename in the command. Make sure you are entering the correct path and filename e.g. if the file is in /home/user/downloads and its called abc.tar, enter
    Code:
    tar xvf ~/downloads/abc.tar
    or
    Code:
    tar xvf /home/user/downloads/abc.tar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...