Link to home
Start Free TrialLog in
Avatar of iowa1
iowa1

asked on

command for tar

I have tar-1.13.11-1.i386.rpm on my Linux box.

1)  when I type "tar -x filename.tar", the machine just hangs.  I did an uninstal in the RPM and then reinstalled it.  It was not the fix.  How d0 I get tar to work?  gzip works, but not with my tar files.

2)  My other simpler question is what does the i386..i586 and so on stand for in the Linux pachages?  Does it mean Intel 386???

Thanks
ASKER CERTIFIED SOLUTION
Avatar of wusel
wusel

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of iowa1
iowa1

ASKER

Thanks, that did the trick!


But, what about the second part of the question which is, "What does the i386 stand for that is in Linux file names?"


If you don't have the answer, let me know and I will give you credit for the question anyway.



Thanks
As far as I know it stands for the processor type when packages are precompiled. You can use packages compiled for i386 on later intel processors (486, pentium etc.) but the code will not make full use of all features of the processor (as no optimization for later processors is done). This should only be of relevance if the program does a lot of computation or is called often.
Avatar of iowa1

ASKER

Thanks