web-dev-qa-db-ja.com

ttf-mscorefontsインストーラーの中断後のパッケージ管理の問題

13.10でSudo apt-get install ubuntu-restricted-extrasを試してみましたが、ttf-mscorefonts installerという名前のものが来るまですべてうまくいきました。数分間ダウンロードされませんでした。そのため、プロセスを終了しました。

現在、ソフトウェアセンターからではなく、ソフトウェアをインストールできません。 Sudo apt-get install ****のようなものを試してみると、次のように表示されます。

$ Sudo apt-get install pip
E: dpkg was interrupted, you must manually run 'Sudo dpkg --configure -a' to   correct     the problem. 
neel101@neel101-Inspiron-7520:~$ Sudo dpkg --configure -a
Setting up update-notifier-common (0.147) ...
ttf-mscorefonts-installer: downloading http://downloads.sourceforge.net/corefonts/andale32.exe

これは数分間続きます。

編集

押した Ctrl+C 今、これが来た

^CTraceback (most recent call last):
  File "/usr/lib/update-notifier/package-data-downloader", line 296, in <module>
    process_download_requests()
  File "/usr/lib/update-notifier/package-data-downloader", line 234, in    process_download_requests
    dest_file = urllib.urlretrieve(files[i])[0]
  File "/usr/lib/python2.7/urllib.py", line 94, in urlretrieve
    return _urlopener.retrieve(url, filename, reporthook, data)
  File "/usr/lib/python2.7/urllib.py", line 268, in retrieve
    block = fp.read(bs)
  File "/usr/lib/python2.7/socket.py", line 380, in read
    data = self._sock.recv(left)
KeyboardInterrupt
dpkg: error processing update-notifier-common (--configure):
 subprocess installed post-installation script was interrupted
dpkg: dependency problems prevent configuration of ttf-mscorefonts-installer:
 ttf-mscorefonts-installer depends on update-notifier-common (>= 0.119ubuntu2);     however:
  Package update-notifier-common is not configured yet.

dpkg: error processing ttf-mscorefonts-installer (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of flashplugin-installer:
 flashplugin-installer depends on update-notifier-common (>= 0.119ubuntu2); however:
  Package update-notifier-common is not configured yet.

dpkg: error processing flashplugin-installer (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 update-notifier-common
 ttf-mscorefonts-installer
 flashplugin-installer
2
Neelmani Sehgal

以下のコマンドを試してください、

Sudo apt-get autoremove
Sudo apt-get clean 

未使用のパッケージがすべて削除されます。

OR

Sudo dpkg -P ttf-mscorefonts-installer
sudp dpkg -P flashplugin-installer
1
Avinash Raj