Zhuzi24 commited on
Commit
e2ee2e9
Β·
verified Β·
1 Parent(s): 5a29d58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -40
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
- # Extracting Split 7z Archives on Linux
19
-
20
- This guide explains how to extract a split `.7z` archive (e.g., `STAR.tar.7z.001`, `STAR.tar.7z.002`, ...) on Linux.
21
-
22
- ## Prerequisites
23
-
24
- Make sure `p7zip` is installed on your system. You can install it using one of the following commands based on your distribution:
25
-
26
- - For **Ubuntu/Debian**:
27
- ```bash
28
- sudo apt update && sudo apt install p7zip-full
29
- ```
30
- - For **CentOS/RHEL**:
31
- ```bash
32
- sudo yum install p7zip p7zip-plugins
33
- ```
34
- - For **Arch Linux**:
35
- ```bash
36
- sudo pacman -S p7zip
37
- ```
38
-
39
- ## Steps to Extract
40
-
41
- 1. **Navigate to the directory** where your split `.7z` files are located:
42
- ```bash
43
- cd /path/to/your/files
44
- ```
45
-
46
- 2. **Extract the `.7z` archive**:
47
- To extract the archive, run:
48
- ```bash
49
- 7z x STAR.tar.7z.001
50
- ```
51
- > **Note:** You don't need to extract `.002`, `.003`, etc. separately. Starting with `.001`, `7z` will automatically handle the rest of the parts.
52
-
53
- 3. **Extract the resulting `.tar` file**:
54
- After extracting the `.7z` files, you'll have a `STAR.tar` file. To extract it, run:
55
- ```bash
56
- tar -xvf STAR.tar
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]