STAR / README.md
Zhuzi24's picture
Update README.md
e2ee2e9 verified
metadata
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:

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):

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]