Getting Data In

How to tar splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z

dhasemore
Engager

I have downloaded the install file splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z for a server running solaris10.

I initially tried the following (taken from install guide)

tar -xvzf /tmp/splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z -C /opt
tar: z: unknown function modifier
Usage: tar {c|r|t|u|x}[BDeEFhilmnopPqTvw@[0-7]][bfk][X...] [blocksize] [tarfile] [size] [exclude-file...] {file | -I include-file | -C directory file}...
bash-3.2# 

I was told to drop the z and use tar -xvf........

But I'm now getting a directory checksum error - see below:

tar -xvf /tmp/splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z /opt
tar: directory checksum error

I found some feedback about a similar issue, but with an older forwarder version. There was a suggestion to use the zcat command first.

bash-3.2# zcat splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z
splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z.Z: No such file or directory

Any help would be appreciated.

Many thanks!

0 Karma
1 Solution

dhasemore
Engager

Thank you both for your responses.

A colleague of mine managed to uncompress the tar.z file using;

gzip -d splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z

I was then able to tar -xvf as originally suggested.

View solution in original post

0 Karma

dhasemore
Engager

Thank you both for your responses.

A colleague of mine managed to uncompress the tar.z file using;

gzip -d splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z

I was then able to tar -xvf as originally suggested.

0 Karma

acharlieh
Influencer

The file that was downloaded from splunk.com was actually splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.Z not splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z. This file is compressed using the compress utility not the gzip utility.

Once you rename the file back to ending with a capital Z instead of a lowercase z ( mv splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.z splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.Z ) then you should be able to run:
zcat splunkforwarder-6.2.4-271043-SunOS10-sparc.tar.Z | tar -xvf - -C /opt

richgalloway
SplunkTrust
SplunkTrust

Run gunzip on the .z file to uncompress the tarball. Then run tar -xvf to extract Splunk.

---
If this reply helps you, Karma would be appreciated.
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...