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