4

I am trying to install Ubuntu (the latest) as a AD-Server in a test Windows server domain. I am following this tutorial but it is somewhat old.

When arriving at minute 14, I am lost. I need to install the following (don't know why):

sudo apt-get install git build-essential libacl1-dev libattr1-dev libblkid-dev libgnutls-dev libreadline-dev python-dev python-dnspython gdb pkg-config libpopt-dev libldap2-dev dnsutils libbsd-dev attr krb5-user docbook-xsl libcups2-dev libpam0g-dev ntp -y

but it is giving me the following error:

libgnutls-dev has no installation candidate

So I tried Unable to install libgnutls-dev on new 16.04LTS machine but with no luck.

Anyone who can help me with this what I am doing wrong?

David Foerster
  • 36,890
  • 56
  • 97
  • 151
AJeeee
  • 41

1 Answers1

8

Looking into this, I found https://launchpad.net/ubuntu/bionic/+source/gnutls28

Change the package to libgnutls28-dev, so your command would be

sudo apt-get install git build-essential libacl1-dev libattr1-dev libblkid-dev libgnutls28-dev libreadline-dev python-dev python-dnspython gdb pkg-config libpopt-dev libldap2-dev dnsutils libbsd-dev attr krb5-user docbook-xsl libcups2-dev libpam0g-dev ntp
Zanna
  • 72,312
Digge Nitti
  • 81
  • 1
  • 2