Debian での gcc 5 のインストールに関する問題

Debian での gcc 5 のインストールに関する問題

ここで提供されている指示に従ってください。Debian jessie 8.1にGCC 5をインストールする方法

ただし、次のエラーが発生します。

sudo apt-get install -t testing gcc
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:
 gsettings-desktop-schemas : Breaks: gnome-settings-daemon (< 3.19.92) but 3.14.2-3 is to be installed
                             Breaks: mutter (< 3.19.92) but 3.14.4-1~deb8u1 is to be installed
 gstreamer1.0-plugins-base : Breaks: gstreamer1.0-plugins-bad (< 1.7.90) but 1.4.4-2.1+deb8u1 is to be installed
 libgstreamer-plugins-base1.0-0 : Breaks: gstreamer1.0-plugins-bad (< 1.7.1) but 1.4.4-2.1+deb8u1 is to be installed
 libpam-systemd : Depends: systemd (= 215-17+deb8u6) but 232-15 is to be installed
 libvlccore8 : Breaks: vlc (< 2.2.4-7~) but 2.2.4-1~deb8u1 is to be installed
               Breaks: vlc-nox (< 2.2.4-7~) but 2.2.4-1~deb8u1 is to be installed
 systemd-sysv : Depends: systemd (= 215-17+deb8u6) but 232-15 is to be installed
 task-cinnamon-desktop : Depends: cinnamon-desktop-environment but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

問題は何で、どのように解決しますか?

ベストアンサー1

問題は何ですか?

gcc5この方法を使用してインストールするaptpining、システムがクラッシュする可能性がありますtesting。 。

どうすれば解決できますか?

gcc-5.3.0インストールできますlinuxbrew(安全で信頼性の高いDebian KDEでテスト済み):

必須パッケージをインストールします。

sudo apt-get install build-essential curl git python-setuptools ruby

インストールするlinuxbrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
PATH="$HOME/.linuxbrew/bin:$PATH"

パスに~/.bashrc追加するには編集してください。~/.linuxbrew/bin

echo 'export PATH="$HOME/.linuxbrew/bin:$PATH"' >>~/.bashrc

利用可能な最新gccバージョンを更新してインストールします。

brew update
brew install gcc

検証済みgccバージョン:

#gcc --version
gcc (Homebrew gcc 5.3.0) 5.3.0

おすすめ記事