docmirror / dev-sidecar

开发者边车,github打不开,github加速,git clone加速,git release下载加速,stackoverflow加速
Mozilla Public License 2.0
15.7k stars 1.84k forks source link

Linux安装证书失败的避坑 #238

Open dasferco opened 1 year ago

dasferco commented 1 year ago

提这个 issue 是为了给各位避坑,也是希望作者把这些补充上去。

我在 Linux 下安装证书遇到了这个错误(我用的是 Kubuntu 22.04):

❌ Api invoke error

Error invoking remote method 'apiInvoke': Error: sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper sudo: a password is required

我找到的解决方法就是手动添加证书。

  1. 把证书从/home/用户名/.dev-sidecar/dev-sidecar.ca.crt复制到/usr/local/share/ca-certificates/。 终端执行:
    cd ~/.dev-sidecar
    sudo cp dev-sidecar.ca.crt /usr/local/share/ca-certificates/dev-sidecar.ca.crt
    cd # 提醒那些不懂用终端的人再补上一句“cd”
  2. 运行一次 update-ca-certificates。
    sudo update-ca-certificates

    这样就解决了。(大概是吧?)然后再按 README 的说明对浏览器安装证书。

最后再说一句:这个项目太伟大了。

新手,如有错误还请多多指教。

cyyispig commented 1 year ago

我也遇到了一样的问题 但是按照你的方法没有解决掉。。