File size: 1,423 Bytes
987c3bc c23f5ad ec5474b c5d9178 987c3bc 5a29d58 e2ee2e9 4eeddff ec5474b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
---
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
# How to Extract Split Archive Files on Ubuntu
To extract a split archive (e.g., `STAR.7z.001`, `STAR.7z.002`, etc.) on Ubuntu, follow these steps:
---
## **Step 1: Install `p7zip`**
If `p7zip` is not already installed, use the following commands to install it:
```bash
sudo apt update
sudo apt install p7zip-full
```
---
## **Step 2: Verify Split Files Are in the Same Directory**
Ensure all split files (`STAR.7z.001`, `STAR.7z.002`, etc.) are in the same folder.
Example directory structure:
```
/path/to/your/files/
βββ STAR.7z.001
βββ STAR.7z.002
βββ STAR.7z.003
βββ STAR.7z.004
βββ STAR.7z.005
```
---
## **Step 3: Extract the Split Archive**
Run the extraction command starting from the first split file (`.001`):
```bash
7z x STAR.7z.001
```
**Command Explanation**:
- `7z`: Invokes the 7-Zip utility.
- `x`: Stands for "extract".
- `STAR.7z.001`: The first split file. 7-Zip will automatically detect and merge subsequent splits (`.002`, `.003`, etc.).
---
For any questions, please contact [email protected] |