web-dev-qa-db-fra.com

problème avec la post-installation de samba4

je suis un débutant linux enthousiaste. J'ai récemment installé samba4 sur Ubuntu 13.04 mais j'ai rencontré une erreur de post-installation

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:~$

Est-ce que quelqu'un a déjà vécu cela auparavant et je peux suggérer votre explication. Merci avant.

Cordialement, Bobby

1
user2090593

Désinstallez d'abord votre version de samba:

Sudo apt-get purge samba4

Sudo apt-get install -f

Deuxième ajout du référentiel samba4:

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

Sudo apt-get update

Troisième installation des dépendances 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

Quatrième téléchargement de samba4:

Sudo apt-get install samba4
0
nux

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

J'ai quelques OVA de virtualbox là-bas et installez des instructions.

Personnellement, je rechercherais sernet samba et téléchargerais leurs versions. Semble mieux fonctionner

0
user216951