CoolFace
Datasetpublic

Zhuzi24/STAR

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… See the full description on the dataset page: https://huggingface.co/datasets/Zhuzi24/STAR.

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
4likes493downloads
Dataset Card

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 tingzhu.wang@whu.edu.cn