Documentation · Getting started
Installation
Install the package, prepare Ubuntu with osx-reims setup and check that everything is ready.
This documentation covers OSX-REIMS 0.3.0, alpha software. Commands and options may change between versions; when in doubt, check osx-reims --help on the installed version.
Before you start
Check that the computer meets the requirements: 64-bit Ubuntu Desktop 26.04 LTS, virtualization enabled in the BIOS/UEFI, a GPU with Vulkan and its driver installed, at least 12 GB free and an internet connection.
You also need the version's two files, published in the #osx-reims channel of the members' Discord (see Getting OSX-REIMS):
osx-reims_0.3.0_amd64.deb, the package;osx-reims_0.3.0_amd64.deb.sha256, its checksum.
1. Update the system
Recommended before the first installation:
sudo apt update && sudo apt full-upgrade2. Verify the download
Put both files in the same folder, open a terminal there and run:
sha256sum -c osx-reims_0.3.0_amd64.deb.sha256The output must end in OK. If it says FAILED, download the files again.
3. Install the package
sudo apt install ./osx-reims_0.3.0_amd64.debThe ./ tells apt that the package is a local file. At the end, the installation shows the next step.
Note
If the file is in your home folder, such as Downloads or Desktop, apt may finish with a line starting with Notice: Download is performed unsandboxed as root. It is normal: the installation is complete.
4. Prepare the computer
Run it as your normal user:
osx-reims setupWarning
Do not use sudo with setup. It asks for the administrator password by itself, only in the steps that need it.
Before changing anything, setup asks:
- License. It shows a summary of the OSX-REIMS license. Answer
yto accept,nto decline orrto read the full text. OSX-REIMS cannot be used until the license is accepted. - Reims vGPU version (first run only). Choose
1for the version tested with this OSX-REIMS version (recommended) or2for the latest one, not tested. You can change it later withosx-reims update-reims.
Then it prepares the computer:
- installs the system packages it needs;
- adds your user to the
kvm,renderandvideogroups; - configures KVM (
ignore_msrs), right away and for the next boots; - installs Rust with rustup;
- downloads Reims vGPU into
/opt/reims-vgpuand builds it.
On the first run, the build usually takes 5 to 15 minutes, depending on the computer and the internet connection.
Note
On a system other than Ubuntu 26.04, setup warns that the system was not tested and asks whether to continue.
5. Log out and back in, if asked
When setup adds your user to groups, it says so at the end: log out and log back in (or restart the computer) before using OSX-REIMS.
6. Create your first VM
Open OSX-REIMS from the applications menu, or run osx-reims in a terminal, and choose Create new VM. The step-by-step guide is in Your first VM.
If you already have macOS installed in another VM, such as on OSX-PROXMOX, choose Import VM disk to use its disk. See Importing a VM.
Check that everything is ready
At any time, run:
osx-reims doctordoctor checks everything setup prepares, without changing anything or asking for a password, and says how to fix each problem. At the end it prints the path of its log: that is the file to share in the support channel. The log contains no serial numbers or other VM identity data.
To check that the installed files are intact, run dpkg --verify osx-reims. No output means they are intact.
Running setup again
You can run setup as many times as needed: steps that are already done are skipped, and on a ready computer it changes nothing.
| Option | What it does |
|---|---|
--tested |
Follows the tested Reims vGPU version (the default) |
--latest |
Follows the latest Reims vGPU version, not tested |
--rebuild |
Builds Reims vGPU again, even if it is up to date |
--accept-license |
Accepts the license without asking |
-y, --yes |
Asks nothing; requires --accept-license (sudo may still ask for the password) |
--debug |
Includes the bash trace in the log |
Example without questions:
osx-reims setup -y --accept-license --testedTo see every option, run osx-reims setup --help.