Debian GNU/Linux スレッド Ver. 24

このエントリーをはてなブックマークに追加
651login:Penguin
ちょっと前からDebian3.0使っております
--
$ cat /etc/apt/apt.conf.d/70debconf
// Pre-configure all packages with debconf before they are installed.
// If you don't like it, comment it out.
// DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt || true";};
$ apt-get install php4
Reading Package Lists... Done
(略)
libbz2-1.0 (1.0.2-1) を設定しています ...

libmm11 (1.1.3-6.1) を設定しています ...

php4 (4.1.2-6woody3) を設定しています ...
(略)
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so

Do you want me to run the apacheconfig script now [y/N] ?
--
こういうような『を設定しています ...』の所でYorNを聞かれたり
具体的な設定画面になったりするパッケージがあるんですけど

このような場面で止まらないようにするにはどう設定すればいいですか?
652login:Penguin:04/06/24 20:37 ID:B/rHIX0c
653login:Penguin:04/06/24 21:13 ID:rmRBA+bY
>>652
どうもです。aptitudeというのは入れてないので
APT::Get::Trivial-Only "true";をapt.confに書いて見ました。
$ apt-get install proftpd
(略)
E: Trivial Only specified but this is not a trivial operation.
となります
APT::Get::Assume-Yes "true";を書いて見ました
$ apt-get install proftpd
(略)
Debian Configuration

┌───────┤ ProFTPd configuration ├───┐
│ │
│ You did not install any debconf-enabled versions of the proftpd yet. │
│ This means that I shall ask you some questions about the way to start │
│ proftpd and anonymous access.
のような画面になります
どうやればよいですか?
654login:Penguin:04/06/24 21:16 ID:oVP0+/bn
>>aptitudeというのは入れてないので
いれろよ
655login:Penguin:04/06/24 21:35 ID:rmRBA+bY
>>654
$ apt-get install aptitude
$ apt-get --purge remove proftpd
$ cat /etc/apt/apt.conf
Aptitude::CmdLine::Assume-Yes "true";
APT::Get::Assume-Yes "true";
$ apt-get install proftpd
(略)
Debian Configuration

┌────────────────────────┤ ProFTPd configuration ├────────────────────────┐
│ │
│ You did not install any debconf-enabled versions of the proftpd yet. │
│ This means that I shall ask you some questions about the way to start │
│ proftpd and anonymous access. │
同じところで止まります
どうやればいいですか?