web-dev-qa-db-ja.com

samba4のインストール後の問題

私は初心者のLinuxが大好きです。 Ubuntu 13.04に最近samba4をインストールしましたが、インストール後のエラーが発生しました

bobby@bobby-Aspire-4732Z:~$ Sudo apt-get install samba4
Reading package lists... Done
Building dependency tree       
Reading state information... Done
samba4 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up samba4 (4.0.3+dfsg1-0.1ubuntu1) ...
ERROR(<type 'exceptions.ValueError'>): uncaught exception - unable to parse dn string
File "/usr/lib/python2.7/dist-packages/samba/netcmd/__init__.py", line 175, in _run
return self.run(*args, **kwargs)
File "/usr/lib/python2.7/dist-packages/samba/netcmd/dbcheck.py", line 108, in run
fix=fix, yes=yes, quiet=quiet, in_transaction=started_transaction)
File "/usr/lib/python2.7/dist-packages/samba/dbchecker.py", line 58, in __init__
self.infrastructure_dn = ldb.Dn(samdb, "CN=Infrastructure," + samdb.domain_dn())
dpkg: error processing samba4 (--configure):
subprocess installed post-installation script returned error exit status 255
Errors were encountered while processing:
samba4
E: Sub-process /usr/bin/dpkg returned an error code (1)
bobby@bobby-Aspire-4732Z:~$

これまでにこれを経験したことがありますか。あなたの説明をお勧めします。前にありがとう。

よろしく、ボビー

1
user2090593

まず、Sambaバージョンをアンインストールします。

Sudo apt-get purge samba4

Sudo apt-get install -f

次に、samba4リポジトリを追加します。

 Sudo apt-add-repository "deb http://ppa.launchpad.net/kernevil/samba4/ubuntu precise main"

Sudo apt-get update

3番目のインストールsamba4依存関係:

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

4番目のダウンロードsamba4:

Sudo apt-get install samba4
0
nux

https://sourceforge.net/projects/samba4all/

そこにいくつかのvirtualbox OVAがあり、インストール手順があります。

個人的には、sernet sambaを検索し、そのバージョンをダウンロードします。うまく機能しているようです

0
user216951