Question
I'm attempting to use the CLI installer for Tizen Studio 1.0 on a headless Ubuntu 16.04 LTS (32-bit) development machine. I encountered two issues:
-
The documentation and web-cli_Tizen_Studio_1.0_ubuntu-32.bin seem inconsistent. I had to examine the bash script to discover that I needed to pass
-installas an argument. -
After passing the correct argument, the installation fails with the following error messages:
CLI mode, installer does not need GUI Environment.
gzip: stdin: not in gzip format
tar: Child died with signal 13
tar: Error is not recoverable: exiting now
The download file appears to be corrupted.
Please do not attempt to install this archive file.
Answer
Problem Understanding
The installation is failing due to what appears to be a corrupted download file. The error messages indicate that:
- The gzip format is not being recognized
- The tar utility is failing to extract the contents
- The installer's checksum verification is detecting corruption
Solution Methods
-
Redownload the installer package:
- Delete the current downloaded file
- Download a fresh copy of web-cli_Tizen_Studio_1.0_ubuntu-32.bin
- Verify the file size matches the expected size from the download source
-
Verify the download integrity:
- Check the MD5 or SHA checksum of the downloaded file against the published checksum
- Use commands like
md5sumorsha256sumto verify the file
-
Check system requirements:
- Ensure your Ubuntu 16.04 LTS 32-bit system meets all requirements
- Verify you have sufficient disk space and memory
- Check for any missing dependencies
Additional Tips
- The issue doesn't appear to be related to using a virtual machine (as confirmed in the answers)
- Make sure to use the
-installargument when running the installer - Consider trying the installation on a different machine or network if problems persist