> For the complete documentation index, see [llms.txt](https://developer.webrush.fr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.webrush.fr/linux/solus/install.md).

# Installation

## 1. Préliminaires

* Télécharger l'iso sur le [Site officiel](https://getsol.us/download/)
* Copier l'iso sur une clé USB : sur Linux à l'aide de :

```
sudo dd if=Solus-3.9999-Budgie.iso of=/dev/sdb bs=1M;sudo sync;sudo eject /dev/sdb
```

* Redémarrer votre ordinateur avec la clé USB dedans !&#x20;

## 2. Installation

Suivez l'installation puis redémarrez votre ordinateur en enlevant la clé !

## 3. Accédez à Solus

### Par le BIOS :

* Si Solus est présent dans les options de démarrage de votre UEFI : changer l'ordre et redémarrez l'ordinateur

### En y accédant par la partition BIOS

* Etape 0 :

  Accédez à Solus et retenez le chemin `EFI/..`

Une fois sur Solus il faut ajouter à la main la partition Solus dans le menu UEFI :

* Etape 1 : Installer `efibootmgr` : `sudo eopkg it efibootmgr`
* Etape 2 : Taper `sudo fdisk -l` et noter la partition EFI `dev/sda1` normalement !
* Etape 3 : Remplacer `dev/sda1` par votre partition *EFI*

  ```
  efibootmgr --create --disk /dev/sda1 --loader /EFI/Solus/grubx64.efi --label "Solus"
  ```

  par exemple, voici ma configuration :

  ```
  efibootmgr --create --disk /dev/sda1 --loader /EFI/systemd/systemd-bootx64.efi --label "Solus"
  ```
* Etape 4 :
  * Pour changer l'ordre d'amorcage taper :

    ```bash
    sudo efibootmgr -o 0001,3001
    ```

{% hint style="info" %}
Si cette étape ne fonctionne pas changer directement l'ordre d'amorçage depuis l'**UEFI**&#x20;
{% endhint %}

## 4. Pour avoir le choix entre Windows & Solus :

* Etape 1 :

  Taper dans la console : `sudo clr-boot-manager set-timeout 5`
* Etape 2 :

  Entrer `sudo clr-boot-manager update`

{% hint style="info" %}
Solus utilise maintenant exclusivement **`clr-boot-manager`**, les paquets **`goofiboot`** ou encore **`gummiboot`** sont désormais dépréciées

Source : [Core Team](https://github.com/solus-cold-storage/goofiboot)
{% endhint %}

## 5. Configuration

### Installation de `cpu-powersave`:

* Afin d'optimiser les performances de la batterie on peut se mettre en `powersave` mode&#x20;
* Installer le paquet [solus-hardware-config](https://github.com/solus-project/solus-hardware-config)
* Puis : `sudo cpu-powersave start`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.webrush.fr/linux/solus/install.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
