惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
月光博客
月光博客
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 司徒正美
美团技术团队
博客园_首页
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - keeper-password-manager
2026-06-26 · via AUR Newest Packages

malina commented on 2026-05-16 14:15 (UTC) (edited on 2026-05-16 14:18 (UTC) by malina)

zechel, thank you for your help, it was very thorough, you gave me everything on a platter, I appreciate it. I haven't set up a test system to find bugs yet, but I'll work on it later, because I see that it is necessary

After your tip, I looked through the debian package description and tried to find more bugs using namcap. I added what I found. There must be a library that namcap doesn't see (runtime loaded, maybe libsecret).

Unfortunately, I didn't have more time right now, but as soon as I get free time, I'll develop that too.

malina commented on 2026-05-16 13:59 (UTC)

zechel commented on 2026-04-27 00:10 (UTC)

Missing runtime dependency: pcsclite (causes blank/blue window)

### Symptom

On a fresh install of keeper-password-manager 17.5.2-1, the app launches and the native window/menu bar (File, Edit, Settings, View, Window, Help) renders correctly, but the entire content area is a solid blue background — the login form never appears. No visible error is shown to the user.

### Root cause

The renderer process throws a fatal unhandled promise rejection during startup:

Uncaught (in promise) Error: libpcsclite.so.1: cannot open shared object file: No such file or directory source: file:///usr/lib/keeperpasswordmanager/resources/app.asar/vault/js/vault.js

This halts the SPA bootstrap before the login UI mounts, leaving only the splash background visible. Captured with:

keeperpasswordmanager --enable-logging=stderr --v=1

libpcsclite.so.1 is provided by the official pcsclite package (repo: extra), but it is not pulled in by any current dependency of this AUR package, so a clean Arch install does not have it.

### Fix (user side)

sudo pacman -S pcsclite

After installing, the app opens normally — no Chromium flags or GPU workarounds required.

### Suggested PKGBUILD change

Add pcsclite to depends=() so this works out of the box:

depends=('... existing deps ...' 'pcsclite')

### Environment

  • Arch Linux (rolling, kernel 6.19.x)
  • Hyprland on Wayland (XWayland available)
  • Intel Iris Xe Graphics (TigerLake-LP)
  • keeper-password-manager 17.5.2-1 (Electron 37.7.1 / Chromium 138)

Hope this helps the maintainer and saves others the troubleshooting. Thanks for packaging Keeper!

malina commented on 2025-08-05 09:39 (UTC)

malina commented on 2025-07-28 21:23 (UTC)

malina commented on 2025-02-07 15:02 (UTC)

neomax commented on 2024-07-07 02:46 (UTC)

Hi. Former maintainer here.

The issue is that the software is built for x86_64 (and the stuff it depends on and comes with is, too) and you run arm64. Different CPU architecture. Having a maintainer who is enthusiastic about ARM won't change that incompatibility.

Also. This application is a glorified version of the Keeper Web Vault you access via web browser. That's why Electron is mentioned.

I recommended you contact Keeper directly. If they will build it for ARM, it can then be implemented here (and you can be said ARM enthusiast and maintainer). :)

forgetfulSpies commented on 2024-07-05 23:45 (UTC)

Maybe someday a second person will try to install Keeper on aarch64 Linux and they'll think about supporting it :)

malina commented on 2024-07-05 20:09 (UTC)

forgetfulSpies commented on 2024-07-05 19:51 (UTC)

Looking at this with fresh eyes, it may be simply that the Keeper .deb being retrieved is for amd64, and I am on arm64. Likely for this package, one does not simply set arch=aarch64.