今天给各位分享ubuntu密钥环是什么的知识,其中也会对进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录一览:
请问大神这种情况怎么破??
登录秘钥环 不是指“名为“登录”的秘钥环”,而是指“用于登录的秘钥环”。不用纠结这个字眼,输入正确密码来解锁就行了
ubuntu如何不用每次开机时都输入密钥环解锁密码
对于我这样的懒人来说,实在是太麻烦了。
QUOTE:ngolian ngolian is offline
5 Cups of Ubuntu
Join Date: Apr 2005Beans: 16
Lightbulb Re: Howto: Get Network Manager to stop asking you for your keyring password (pam_keyr
Several people have asked how to get this to work with autologin. Making the same change to /etc/pam.d/gdm-autologin as to /etc/pam.d/gdm described at the start of the thread sort of works, but you do get asked for a password at login, so it isn't really automatic any more.
Instead I wrote this script:#!/bin/sh
exec echo -n "MyKeyringPassword" | /usr/lib/libpam-keyring/pam-keyring-tool -u -s
and added it to the session Startup Programs. Obviously it relies on being run after gnome-keyring-daemon starts but before nm-applet, but that seems to happen automagically for me.
So I don't need to enter a password at all any more! I know, I know, very lax security. But people who don't use gdm autologin might also find this method useful, because it means you can use separate passwords for logging in and for the keyring. And the script could probably be refined so as not to reveal the password in plain text.
You still need the libpam-keyring package for pam-keyring-tool. And I had to look at the source to find out how to use it. There's probably a way of doing the same thing using the dbus interface so you don't need libpam-keyring.
按照上面的方法。我测试成功了。我的版本是7.04。
具体步骤如下:
1。打开终端,输入sudo apt-get install libpam-keyring
2。新建一个脚本,内容如下:#!/bin/sh
exec echo -n "MyKeyringPassword" | /usr/lib/libpam-keyring/pam-keyring-tool -u -s
其中MyKeyringPassword是你的密钥环解锁的密码。
3。给刚才的文件加上可执行权限。
4。在系统-首选项-会话里,添加刚才的脚本为开机自启动。
pgp密钥环是什么
密钥环相当于密钥对和他人公钥的存储仓库,包含1个或更多地密钥对以及公钥。
ubuntu14.04 每次开机都弹出解锁登陆密钥环,怎么取消了
应该是桌面组件出错了。在登陆界面选择其它的桌面,看能不能进。
如果不行,按 ctrl+alt+F2 ,进入控制台,
输入用户名,密码(密码输入没有任何提示),就进入了字符界面。
之后安装
sudo apt-get install openbox lxpanel
然后按 ctrl+alt+F7 回到登陆界面(可能不是F7,试试其它的F键),
在桌面选 openbox ,登录。
ubuntu密钥环是什么的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于、ubuntu密钥环是什么的信息别忘了在本站进行查找喔。