web-dev-qa-db-ja.com

AD結合のインストール候補が見つかりません

Active Directoryに含まれるサーバーを再構築しようとしています。私はBionic Beaverを使用しています:

administrator@vmssnt1:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.1 LTS
Release:        18.04
Codename:       bionic
administrator@vmssnt1:~$ uname -a
Linux vmssnt1 4.15.0-32-generic #35-Ubuntu SMP Fri Aug 10 17:58:07 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

もちろん、実行前にSudo apt update && Sudo apt upgradeをしました

Sudo apt -y install realmd sssd sssd-tools libnss-sss libpam-sss adcli samba-common-bin oddjob oddjob-mkhomedir packagekitこのガイドに従う: https://www.server-world.info/en/note?os=Ubuntu_18.04&p=realmd

これは以前に他のサーバーで行ったときに機能しましたが、今はこのエラーが発生するだけです:

Package realmd is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

Package adcli is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'realmd' has no installation candidate
E: Package 'adcli' has no installation candidate
E: Unable to locate package oddjob
E: Unable to locate package oddjob-mkhomedir

パッケージを見ている場合、それらを見つけることができます(たとえば、realmd: https://packages.ubuntu.com/bionic/realmd

不足しているものはありますか?

ご協力いただきありがとうございます!


EDIT:ubuntu Windowsサブシステムでapt-cache search realmdを使用する場合(14.04.5 LTS)パッケージが見つかります。バイオニックビーバーのサポートはこれ以上ありませんか?

4
Jonas Hüsser

次は私のために働いた:

/etc/apt/sources.listの末尾に次を追加します

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ bionic universe
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe

Sudo apt-get update && Sudo apt-get install realmd

2
Michael Sagwan