# Solving Wine Error: Unable to Make SSL Connections

> How to fix Wine's SSL connection error on Linux, caused by a missing libgnutls, for better compatibility with Windows applications.

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

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

After installing Wine on Manjaro, while checking the logs, I discovered the following error messages:

```
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.
```

## Solution

The fix is straightforward: install the necessary packages to support secure connections.

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

After installing these packages, Wine needs to be restarted for SSL connections to work correctly.

---

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