Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error opening Spark 1.5.0

After downloading the most recent tar of Spark (1.5.0), I received the following error

$ tar -xf spark-1.5.0.tar    
tar: copyfile unpack (spark-1.5.0/python/test_support/sql/orc_partitioned/SUCCESS.crc) failed: No such file or directory

I tried it a second time and got

tar: copyfile unpack (spark-1.5.0/python/test_support/sql/orc_partitioned/SUCCESS.crc) failed: File exists
like image 899
Climbs_lika_Spyder Avatar asked Mar 03 '26 11:03

Climbs_lika_Spyder


1 Answers

Use gnu-tar (gtar) instead. BSD tar comes with gnu-tar, or you can install the latest using homebrew. GNU tar just seems to be more MacOSX friendly.

brew install gnu-tar
gtar -xf spark-1.5.0.tar
like image 197
Climbs_lika_Spyder Avatar answered Mar 05 '26 12:03

Climbs_lika_Spyder