web-dev-qa-db-ja.com

dpkgでエラー100

私はWindowsコーディングからUbuntuに移行する初心者ですが、マシンにログオンすると、dpkgでこのエラーが発生し、パッケージをインストールできません。以前のパッケージなどのインストール中に混乱した可能性があります。

Ubuntu 15.10 btwを使用しています。

    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    root@lucas-G750JX:~# apt-get -f install
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    Correcting dependencies... Done
    The following extra packages will be installed:
      dpkg update-notifier update-notifier-common
    The following NEW packages will be installed:
      dpkg
    The following packages will be upgraded:
      update-notifier update-notifier-common
    2 upgraded, 1 newly installed, 0 to remove and 7 not upgraded.
            Need to get 0 B/2.297 kB of archives.
    After this operation, 6.770 kB of additional disk space will be used.
    Do you want to continue? [Y/n] y
    Could not exec dpkg!
    E: Sub-process /usr/bin/dpkg returned an error code (100)

Ls -l/usr/bin /を入力しようとしました

   root@lucas-G750JX:~# ls -l /usr/bin/dpkg
   ls: cannot access /usr/bin/dpkg: No such file or directory

これを解決する方法に関するヒントはありますか?

2
Lucas Ansei

システムには、必須のパッケージとプログラムdpkgがありません。通常、不足しているパッケージをパッケージマネージャーでインストールしますが、残念ながらdpkgisパッケージマネージャーです。

Ubuntuをインストールしたばかりのように思えるので、再インストールすることをお勧めします。これは、不具合のあるシステムでパッケージマネージャーをブートストラップするよりも簡単だからです。

3
David Foerster