當我進入終端機並輸入 sudo apt-get update 時,回應是: E: Malformed line 64 in source list /etc/apt/sources.list (dist parse) E: Type '
這可以解決嗎?
答案1
編輯檔案 /etc/apt/sources.list
$ sudo gedit /etc/apt/sources.list
到達第 64 行並修復錯誤。如果找不到錯誤,請註解該行。註解行以 開頭#
。
這些deb
線條應該看起來像
deb http://archive.canonical.com/ <dist> <section>`
在哪裡
- dist :精確、烏托邦、...
- 部分:宇宙、主要、夥伴、...
請參閱https://help.ubuntu.com/community/Repositories/CommandLine
答案2
要解決此問題,只需備份以下位置中的現有“sources.list”即可:/etc/apt/
備份source.list的步驟,
1. Open the terminal with Ctrl-Alt-T
2. cd /etc/apt/
3. sudo cp source.list /etc/apt/source.list.bak
4. sudo sed -i -e '64d' /etc/apt/sources.list (this deletes the problematic line)
5. sudo apt-get update (this updates the database)
希望這可以解決問題 - 如果沒有,請使用我們在步驟 3 中建立的 bak 檔案來恢復原始檔案。