The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Extracting Split 7z Archives on Linux
This guide explains how to extract a split .7z
archive (e.g., STAR.tar.7z.001
, STAR.tar.7z.002
, ...) on Linux.
Prerequisites
Make sure p7zip
is installed on your system. You can install it using one of the following commands based on your distribution:
- For Ubuntu/Debian:
sudo apt update && sudo apt install p7zip-full
- For CentOS/RHEL:
sudo yum install p7zip p7zip-plugins
- For Arch Linux:
sudo pacman -S p7zip
Steps to Extract
Navigate to the directory where your split
.7z
files are located:cd /path/to/your/files
Extract the
.7z
archive: To extract the archive, run:7z x STAR.tar.7z.001
Note: You don't need to extract
.002
,.003
, etc. separately. Starting with.001
,7z
will automatically handle the rest of the parts.Extract the resulting
.tar
file: After extracting the.7z
files, you'll have aSTAR.tar
file. To extract it, run:tar -xvf STAR.tar
For any questions, please contact [email protected]
- Downloads last month
- 129