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 ...
- 09-21-2009 #1Just Joined!
- Join Date
- Sep 2009
- Posts
- 1
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
- 09-21-2009 #2
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
orCode:tar xvf ~/downloads/abc.tar
Code:tar xvf /home/user/downloads/abc.tar


Reply With Quote