Questions tagged «gpg»

GNU Privacy Guard(GnuPG或GPG)是符合OpenPGP的FOSS替代PGP加密软件。

5
为什么apt-get update告诉我运行apt-get update?
因此,我正在进行以下操作: # apt-get update Get:1 http://ftp.us.debian.org etch Release.gpg [1032B] Hit http://ftp.us.debian.org etch Release (...bunch more of this elided...) Hit http://ftp.us.debian.org etch/contrib Sources Fetched 68.8kB in 1s (37.4kB/s) Reading package lists... Done W: There is no public key available for the following key IDs: 9AA38DCD55BE302B W: GPG error: http://ftp.us.debian.org etch Release: …
10 linux  debian  apt  gpg 

4
gpg-agent说代理存在,但是gpg说代理不存在?
我在bashDebian 6.0.6盒子上编写gpg脚本时遇到了一些问题。我有一个脚本,它可以执行一系列操作,并且想要确保在尝试进行操作之前gpg-agent可用。 由于gpg-agent将不执行任何操作,并且如果已在运行时启动则返回成功,因此确保存在该代理非常简单: eval $(gpg-agent --daemon) gpg-agent 开始,或将报告: gpg-agent[21927]: a gpg-agent is already running - not starting a new one 并返回0(成功)(如果已运行)。 当代理已在另一个会话中运行时,就会出现此问题。gpg-agent说它已经在运行...但是gpg它的自我随后声称它不可用。 $ gpg-agent --version gpg-agent (GnuPG) 2.0.19 libgcrypt 1.5.0 $ gpg --version gpg (GnuPG) 1.4.13 $ eval $(gpg-agent --daemon) gpg-agent[21927]: a gpg-agent is already running - not starting a …
9 scripting  shell  gpg 

3
Debian-“警告:以下软件包的不可信版本将被安装!”
当我尝试安装或更新任何软件包时,我得到: Untrusted packages could compromise your system's security. You should only proceed with the installation if you are certain that this is what you want to do. 我强烈怀疑这与我更新时出现的错误有关: $ sudo aptitude update Get: 1 http://ftp.us.debian.org wheezy InRelease [208 kB] Get: 2 http://debian.lcs.mit.edu wheezy InRelease [208 kB] Ign http://ftp.us.debian.org wheezy InRelease …

1
在SSH上使用gpg-agent
我在通过单个命令行在ssh上使用gpg-agent时遇到问题。 这是我的配置: 服务器A:通过ssh触发命令。 ssh user@serverB "sudo -E /path/to/script.sh" 服务器B:执行需要密码签名的脚本。 系统信息:Ubuntu 12.04 我已经在服务器B上设置了gpg-agent,并将此配置添加到/home/user/.bashrc中: Invoke GnuPG-Agent the first time we login. # Does `~/.gpg-agent-info' exist and points to gpg-agent process accepting signals? if test -f $HOME/.gpg-agent-info && \ kill -0 `cut -d: -f 2 $HOME/.gpg-agent-info` 2>/dev/null; then GPG_AGENT_INFO=`cat $HOME/.gpg-agent-info | cut -c …
8 ubuntu  ssh  gpg  env 

1
Debian存储库的GPG密钥是否应在其维护者之间共享?
我正在按照本教程设置Debian存储库 https://wiki.debian.org/SettingUpSignedAptRepositoryWithReprepro 该存储库将由我和我的同事管理。我们要对软件包和仓库本身进行签名,因此我需要一个GPG密钥。自然,我不应该使用自己的GPG密钥,否则我的同事将无法管理该存储库。因此,我想到了专门为此存储库创建一个新的GPG密钥,然后与同事共享私钥。 这是由许多人管理回购的正确方法吗?我不喜欢共享私钥的想法(而且我认为对于由很多人管理的存储库来说,扩展规模不大),但是另一方面,我看不到另一种方法可以做到。 我猜有一个简单的解决方案,但是我对这种服务器缺乏经验并没有帮助。 编辑:此处提到共享私钥http://irtfweb.ifa.hawaii.edu/~lockhart/gpg/(最底部的用例2)
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.