# Resolvendo erro do wine não fazer conexões SSL

> Como resolver o erro de conexões SSL do Wine no Linux, causado pela falta da libgnutls, para melhor compatibilidade com aplicações Windows.

- HTML version: https://tiagodanin.com/br/post/solving-wine-error-unable-to-make-ssl-connections/
- Site index for AI assistants: https://tiagodanin.com/llms.txt

- Date: 2018-03
- Language: Portuguese
- Tags: Linux, Article
- Originally published at: https://dev.to/tiagodanin/resolvendo-erro-do-wine-nao-fazer-conexoes-ssl-bhj

Depois de instalar o Wine no Manjaro, ao verificar os logs, descobri as seguintes mensagens de erro:

```
004f:err:winediag:schan_imp_init Failed to load libgnutls, secure connections will not be available.
004f:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
```

## Solução

A resolução é direta: instalar os pacotes necessários para suportar conexões seguras.

```
sudo pacman -S lib32-gnutls gnutls
```

Após a instalação desses pacotes, é necessário reiniciar o Wine para que as conexões SSL funcionem corretamente.

---

Published by Tiago Danin. Free to quote with attribution and a link to https://tiagodanin.com.
