|
--- |
|
license: apache-2.0 |
|
size_categories: |
|
- 100K<n<1M |
|
task_categories: |
|
- text-classification |
|
- token-classification |
|
- table-question-answering |
|
- question-answering |
|
- zero-shot-classification |
|
- translation |
|
- feature-extraction |
|
- text-generation |
|
- text2text-generation |
|
--- |
|
# For detailed information, please see https://linlin-dev.github.io/project/STAR.html |
|
|
|
# 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**: |
|
```bash |
|
sudo apt update && sudo apt install p7zip-full |
|
``` |
|
- For **CentOS/RHEL**: |
|
```bash |
|
sudo yum install p7zip p7zip-plugins |
|
``` |
|
- For **Arch Linux**: |
|
```bash |
|
sudo pacman -S p7zip |
|
``` |
|
|
|
## Steps to Extract |
|
|
|
1. **Navigate to the directory** where your split `.7z` files are located: |
|
```bash |
|
cd /path/to/your/files |
|
``` |
|
|
|
2. **Extract the `.7z` archive**: |
|
To extract the archive, run: |
|
```bash |
|
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. |
|
|
|
3. **Extract the resulting `.tar` file**: |
|
After extracting the `.7z` files, you'll have a `STAR.tar` file. To extract it, run: |
|
```bash |
|
tar -xvf STAR.tar |
|
``` |
|
|
|
For any questions, please contact [email protected] |