Preconfiguring packages ...
dpkg: error processing /var/cache/apt/archives/gcc-4.8-base_4.8.2-19ubuntu1_amd64.deb
(--unpack):
package architecture (amd64) does not match system (i386)
Errors were encountered while processing:
/var/cache/apt/archives/gcc-4.8-base_4.8.2-19ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
答え1
64 ビット パッケージを 32 ビット オペレーティング システムにインストールしようとして、それが失敗したように見えます。何をインストールしようとしているのかを教えていただければ、簡単な方法をお教えします。
あなたの投稿をもう少し勉強します。GCC は、GNU コンパイラ コレクションの略のようです。私の知る限り、これはすでに Ubuntu にインストールされているので、すでにインストールされているはずのものをインストールしようとしていたようです。
答え2
/bootディレクトリを確認してください...いっぱいになっている可能性があります
$> df -H
完全な場合は、このガイドに従ってください: ブート メニューをクリーンアップするために古いカーネル バージョンを削除するにはどうすればよいですか?
お役に立てれば!
答え3
エラー メッセージには、マシンがi386
アーキテクチャであり、アーキテクチャ用のパッケージをインストールしようとしていることが示されていますamd64
。これを解決するには、ターミナルを開いて次の操作を実行します。
1)apt-cacheを消去する:
sudo apt-get clean
(キャッシュ内に間違ったファイルがあるため、これを削除してください)
2)パッケージがすでにインストールされていることを確認してください(必要ありません、ただ知っておくだけです) :gcc
インストールされていない場合は、次の出力が表示されます。
$ gcc
The program 'gcc' is currently not installed. You can install it by typing:
sudo apt-get install gcc
3)パッケージをインストールする:
sudo apt-get install gcc
出力は次のようになります
$ sudo apt-get install gcc
[sudo] password for adwaita:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
g++-4.8 gfxboot gfxboot-dev libfribidi-bin libstdc++-4.8-dev mktemp re2c
squashfs-tools
Use 'apt-get autoremove' to remove them.
Suggested packages:
gcc-multilib automake1.9 flex bison gcc-doc
The following NEW packages will be installed:
gcc
0 upgraded, 1 newly installed, 0 to remove and 67 not upgraded.
Need to get 5,098 B of archives.
After this operation, 42.0 kB of additional disk space will be used.
Get:1 http://in.archive.ubuntu.com/ubuntu/ trusty/main gcc amd64 4:4.8.2-1ubuntu6 [5,098 B]
Fetched 5,098 B in 0s (5,626 B/s)
Selecting previously unselected package gcc.
(Reading database ... 284177 files and directories currently installed.)
Preparing to unpack .../gcc_4%3a4.8.2-1ubuntu6_amd64.deb ...
Unpacking gcc (4:4.8.2-1ubuntu6) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Setting up gcc (4:4.8.2-1ubuntu6) ...
完了です。