web-dev-qa-db-ja.com

sysvconfigはUbuntu9.10で消えましたか?

Ubuntu Server 9.10をインストールしたばかりで、sysvconfigがありません。apt-get install sysvconfigの場合、sysvconfigにインストール候補がないことがわかります。

SysvconfigはUbuntu9.10から削除されましたか?もしそうなら、私はどのような代替手段を使用できますか?そうでない場合、どうすればインストールできますか?

7

https://launchpad.net/ubuntu/karmic/+source/sysvconfig/0.81ubuntu1

0.81ubuntu1削除:コンポーネントユニバースとセクション管理者のカルマポケットリリース

  • 2009年9月11日に削除がリクエストされました。
  • MartinPittによって2009-09-11に削除されました

(Debianから)ROM;必須パッケージであるSysvinit-utilsが競合します。

別の方法として、sysv-rc-confをチェックアウトすることもできます。

$ apt-cache show sysv-rc-conf
Package: sysv-rc-conf
Priority: optional
Section: universe/admin
Installed-Size: 104
Maintainer: Ubuntu MOTU Developers <[email protected]>
Original-Maintainer: Francesco Pedrini <[email protected]>
Architecture: all
Version: 0.99-6
Depends: libcurses-ui-Perl, sysv-rc
Filename: pool/universe/s/sysv-rc-conf/sysv-rc-conf_0.99-6_all.deb
Size: 24168
MD5sum: d40562a6b1b020590a35f7b7f9d23d1c
SHA1: 4cc5df3dc9d7946d0354c1bb3be930a304195fc0
SHA256: 603f7ed049d180db134e8730a229dc93277c22b01558cddce36e5f6ff6a9b67a
Description: SysV init runlevel configuration tool for the terminal
 sysv-rc-conf provides a terminal GUI for managing "/etc/rc{runlevel}.d/"
 symlinks.  The interface comes in two different flavors, one that simply
 allows turning services on or off and another that allows for more fine tuned
 management of the symlinks.  Unlike most runlevel config programs, you can
 edit startup scripts for any runlevel, not just your current one.
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu

外観は次のとおりです。

sysv-rc-conf

5
jtimberman

もう1つの答えは、必要に応じてsysvconfigを使用することです。 Linuxは、使用したいツールを使用できるように作られています。必要なツールがすぐに利用できない場合は、それを実現する他の方法があります。

Ubuntuリポジトリでは利用できないため、ソースパッケージを取得する必要があります(ここでは、 最後のUbuntuリリース (Jaunty)から、またはここでは、 最後のDebianリリース)から (Lenny))および 独自のパッケージを作成する 。 (独自の.debを作成せずにコンパイルしてインストールすることもできます。)

ただし、注意してください。 sysvinit-utilsとの競合のため、パッケージは Sidから削除されました でした。これは、以前のバージョンも競合するという意味ではありませんが、注意が必要です。

2
quack quixote