web-dev-qa-db-ja.com

Ubuntu 14.04にsambaをインストールできない

Sambaをインストールしてこのエラーを取得しようとしています

anil@anil:~$ Sudo apt-get  install  samba 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 samba : Depends: samba-common (= 2:4.1.6+dfsg-1ubuntu2.14.04.4) but 2:4.1.6+dfsg-1ubuntu2.14.04.8 is to be installed
         Depends: samba-common-bin (= 2:4.1.6+dfsg-1ubuntu2.14.04.4) but 2:4.1.6+dfsg-1ubuntu2.14.04.8 is to be installed
         Depends: samba-dsdb-modules but it is not going to be installed
         Depends: samba-libs (= 2:4.1.6+dfsg-1ubuntu2.14.04.4) but 2:4.1.6+dfsg-1ubuntu2.14.04.8 is to be installed
         Recommends: samba-vfs-modules but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
4
Ravan

最初に端末でこれらのコマンドを実行します(を押します Ctrl+Alt+T):

  • Sudo apt-get --fix-broken install
  • Sudo apt-get clean
  • Sudo apt-get autoclean
  • Sudo apt-get autoremove
  • Sudo dpkg --configure -a
  • Sudo apt-get updateその後

1.メインサーバーのソフトウェアとアップデートの変更

2.「その他のソフトウェア」ソースをすべてマーク解除

ims

3.それをリロードし、ソフトウェア更新のために実行します。

4. sambaのインストール:Sudo apt-get install samba

1
Ravan

コマンドを実行する

Sudo apt-get -f install
Sudo apt-get install samba

破損した依存関係をインストールします。問題が解決しない場合は、 link を使用して解決の説明を行います。

3
pl_rock