无法使用 apt-get update 更新 ubuntu 14.04

无法使用 apt-get update 更新 ubuntu 14.04

当我尝试使用更新 ubuntu 时 sudo apt-get 更新

它给出错误

E: 源列表 /etc/apt/sources.list.d/enpass.list 的第 1 行中未知类型‘OK’

在我尝试在系统中安装 enpass 之后它启动了。

答案1

尝试这个:

sudo rm -r /etc/apt/sources.list.d/enpass.list
sudo apt-get update
sudo apt-get install curl
curl -s http://repo.sinew.in/keys/enpass-linux.key | sudo apt-key add
echo "deb http://repo.sinew.in/ stable main" | sudo tee /etc/apt/sources.list.d/enpass.list
sudo apt-get update
sudo apt-get install enpass

相关内容