Debian Wheezy(7.x)からJessie(8.x)にアップグレードすると、デフォルトでsystemdが実行されますか?

Debian Wheezy(7.x)からJessie(8.x)にアップグレードすると、デフォルトでsystemdが実行されますか?

私はこの質問に関連していないいくつかの理由でsystemdを警戒します。それでは、Debian WheezyをDebian Jessieにアップグレードしようとしています。 apt-get dist-upgradeの後、systemdはデフォルトで使用されますか?それでは、sysvinitに固執するにはどうすればよいですか?

答え1

はい、デフォルトで実行されます。 wheezyからJessieへのdistアップグレードは、systemdinitシステムの使用に切り替えられます。これ提示修正情報の記録セクション全体は、現在の初期化システムを保存する方法に関する提案とともに、この問題に専念しています。

systemd-sysvアップグレードプロセス中にインストールを防ぐために、/etc/apt/preferences.d/local-pin-init次の名前のファイルを生成できます。

Package: systemd-sysv
Pin: release o=Debian
Pin-Priority: -1

また、「一部のパッケージは、デフォルトではなく初期化システムでパフォーマンスが低下した動作を示すか、機能が不足する可能性があります」と言います。

答え2

JessieはsystemdWheezyからアップグレードしてもデフォルトでインストールされます。インストールしたら、次の手順に従って無効にできます。Debian jessie/sid インストールから systemd を削除する方法

そのページにこれらのコマンドの説明がありますが、ポイントは次のとおりです。

apt-get install sysvinit-core sysvinit sysvinit-utils
reboot

# BE AWARE that the following command removes packages that depend on systemd itself or things like libpam-systemd! 
apt-get remove --purge --auto-remove systemd

# These prevent systemd in the future. Unfortunately also including systemd-shim
echo -e 'Package: systemd\nPin: origin ""\nPin-Priority: -1' > /etc/apt/preferences.d/systemd
echo -e '\n\nPackage: *systemd*\nPin: origin ""\nPin-Priority: -1' >> /etc/apt/preferences.d/systemd
echo -e '\nPackage: systemd:amd64\nPin: origin ""\nPin-Priority: -1' >> /etc/apt/preferences.d/systemd
echo -e '\nPackage: systemd:i386\nPin: origin ""\nPin-Priority: -1' >> /etc/apt/preferences.d/systemd

答え3

Debian Jessie デスクトップ用の別のソリューションいいえ systemdその後、Antics Linuxを見てください。

関連情報