43 lines
973 B
Markdown
43 lines
973 B
Markdown
# AtlasOS Offline Bundle for Ubuntu 24.04
|
|
|
|
This bundle contains all required packages and dependencies for installing AtlasOS on an airgap (offline) Ubuntu 24.04 system.
|
|
|
|
## Contents
|
|
|
|
- All required .deb packages with dependencies
|
|
- Go binary (fallback, if needed)
|
|
- Installation manifest
|
|
|
|
## Usage
|
|
|
|
1. Transfer this entire directory to your airgap system
|
|
2. On the airgap system, run:
|
|
```bash
|
|
sudo ./installer/install.sh --offline-bundle /path/to/this/directory
|
|
```
|
|
|
|
## Bundle Size
|
|
|
|
The bundle typically contains:
|
|
- ~100-200 .deb packages (including dependencies)
|
|
- Total size: ~500MB - 1GB (depending on architecture)
|
|
|
|
## Verification
|
|
|
|
Before transferring, verify the bundle:
|
|
```bash
|
|
# Count .deb files
|
|
find . -name "*.deb" | wc -l
|
|
|
|
# Check manifest
|
|
cat MANIFEST.txt
|
|
```
|
|
|
|
## Troubleshooting
|
|
|
|
If installation fails:
|
|
1. Check that all .deb files are present
|
|
2. Verify you're on Ubuntu 24.04
|
|
3. Check disk space (need at least 2GB free)
|
|
4. Review installation logs
|