Questions tagged «debconf»

5
安装软件包时“ debconf:DbDriver config”:config.dat被另一个进程锁定:资源暂时不可用”
我正在尝试安装,flashybrid但是当我输入apt-get install flashybrid命令时,出现此错误: root@user-desktop:/home/user# apt-get install flashybrid Reading package lists... Done Building dependency tree Reading state information... Done flashybrid is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. After this operation, 0B of additional disk space …
93 apt  debconf 

2
更新后如何为“ GRUB安装设备”选择什么?
运行Update Manager之后,将弹出一个debconf窗口(标题为“ Configure grub-pc”),要求我选择适合GRUB install devices我的系统的窗口。我最近没有对grub或文件系统进行任何更改,并且我不记得上次进行更改时选择的选项。 我怎么知道要选择什么?我假设错误的答案可能导致我的系统无法启动。 这是debconf对话框: 这是选择“帮助”时显示的窗口和文本:

5
如何防止apt-get / aptitude在安装过程中显示对话框?
我正在尝试构建Ansible Playbook,以在Linode上部署一些Ubuntu 12.04服务器,但是我的问题似乎是Ubuntu。当我运行apt-get或aptitude的不同组合时,总是得到以下我必须响应的对话框。 我希望在命令行中回答此问题,以便它不会中断自动部署。有任何想法吗? 我当前的命令如下。请注意,我正在尝试设置DEBIAN_FRONTEND: #!/bin/bash echo 'DEBIAN_FRONTEND="noninteractive"' >> /etc/profile echo 'DEBIAN_FRONTEND="noninteractive"' >> ~/.profile source /etc/profile source ~/.profile # This next line is the one that pops up the dialog sudo aptitude -y install iptables-persistent # Need this to fix an issue with the package post-install (this works fine.) sudo …

2
内核升级后无人参与的grub配置
今天,我一直在致力于自动部署ubuntu服务器。我被困在apt-get upgrade试图升级到新内核的服务器的自动更新上。日志如下所示: Setting up linux-image-3.2.0-24-generic (3.2.0-24.39) ... Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst (...) 然后提出一个问题: Package configuration ┌─────────────────────────────────┤ ├─────────────────────────────────┐ │ A new version of /boot/grub/menu.lst is available, but the version │ │ installed currently has been locally modified. │ │ │ │ What would you like …
16 grub2  upgrade  debconf 

3
在apt-get安装之前,如何接受Steam的Lience协议?
我目前正在摆弄ansible,用我选择的配置/应用程序等来设置我的机器...我遇到了绊脚石,它是许可协议。我一直在尝试使用debconf预先接受它。 这是Steam来源中的相关文件之一:http : //bazaar.launchpad.net/~ubuntu-branches/ubuntu/utopic/steam/utopic/view/head//debian/preinst 我已经尝试echo steam steam/question select "I AGREE" | sudo debconf-set-selections了很多其他非常相似的命令,其中还包括尝试设置所看到的许可证。 这是的输出sudo debconf-show steam: steam/purge: * steam/license: * steam/question: I AGREE 我尝试过的所有内容都使我容易想到我已经不同意许可协议,因此在安装Steam之前我必须删除这些条目。有人有什么想法吗?

1
为什么将$ 0设置为-bash?
第一个登录进程名称似乎设置为-bash,但是如果我使用subshel​​l,它将变为bash。例如: root@nowere:~# echo $0 -bash root@nowere:~# bash root@nowere:~# echo $0 bash -bash 导致某些脚本失败,例如 . /usr/share/debconf/confmodule exec /usr/share/debconf/frontend -bash Can't exec "-bash": No such file or directory at /usr/share/perl/5.14/IPC/Open3.pm line 186. open2: exec of -bash failed at /usr/share/perl5/Debconf/ConfModule.pm line 59 有人知道为什么$0设置为-bash吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.