# Configuration

## Mettre a Jour APT :

{% hint style="info" %}
**APT** est la bibliothèque des paquet des forks d'Ubuntu, de Linux Mint&#x20;
{% endhint %}

#### 1. Mise à jour

```bash
sudo apt-get update && sudo apt-get upgrade -y
```

#### 2. Régler les conflits&#x20;

Pour mettre à jour intelligemment les dépendances :

```bash
sudo apt-get dist-upgrade
```

## Problèmes de Wifi avec RTL8723BE

{% hint style="warning" %}
Ces problèmes ont été rencontrés sur un **HP**&#x20;
{% endhint %}

#### 1. **Préliminaires**

* Vérifier votre carte wifi avec : `lspci | grep "Network"`
* Vérifier l'état de votre connexion : `iwlist scan | egrep -i 'ssid|quality'`&#x20;
* Mettre a Jour [APT](https://developer.webrush.fr/linux/mint/install#mettre-a-jour-apt)

#### 2. Configurer

* Changer l'antenne utilisée :

```bash
echo "options rtl8723be fwlps=0 ant_sel=2" | 
sudo tee /etc/modprobe.d/rtl8723be.conf
```

* Redémarrer le module :&#x20;

`sudo modprobe -r rtl8723be` puis `sudo modprobe rtl8723be`

* On peut aussi empêcher la mise en veille de la carte wifi :&#x20;

```bash
echo "options rtl8723be fwlps=0" | sudo tee
/etc/modprobe.d/rtl8723be.conf
```

Source : [Topic Ubuntu](https://forum.ubuntu-fr.org/viewtopic.php?id=2019769)


---

# Agent Instructions: 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:

```
GET https://developer.webrush.fr/linux/mint/install.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
