37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
# SUSE Store Store Package Instructions
|
|
|
|
This archive contains the files required to use the **SUSE Store** model store.
|
|
|
|
## Contents
|
|
|
|
- Compressed archive: `suse-store.tar.gz`
|
|
- Base64-encoded archive: `suse-store.tar.gz.base64`
|
|
- Store directory (inside the archive): `suse-store/`
|
|
- Store metadata index: `suse-store/index.yaml`
|
|
- Individual model definitions under: `suse-store/models/<model-name>/`
|
|
|
|
## How to use the tar.gz archive
|
|
|
|
1. Make sure you have `tar` installed on your system.
|
|
2. Download or copy the file `suse-store.tar.gz` to your target machine.
|
|
3. Extract the archive:
|
|
|
|
```bash
|
|
tar -xzf suse-store.tar.gz
|
|
```
|
|
|
|
4. After extraction, you will have a directory named `suse-store/` containing:
|
|
- The store index at `suse-store/index.yaml`.
|
|
- The selected model folders under `suse-store/models/`.
|
|
|
|
## How to reconstruct from the base64 file
|
|
|
|
If you only have the base64 file (`suse-store.tar.gz.base64`), you can recreate the archive with:
|
|
|
|
```bash
|
|
base64 -d suse-store.tar.gz.base64 > suse-store.tar.gz
|
|
tar -xzf suse-store.tar.gz
|
|
```
|
|
|
|
The resulting directory structure will be the same as described above.
|