Linux Lite Forums
install signal / update error - Printable Version

+- Linux Lite Forums (https://www.linuxliteos.com/forums)
+-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5)
+--- Forum: Installing Software (https://www.linuxliteos.com/forums/forumdisplay.php?fid=18)
+--- Thread: install signal / update error (/showthread.php?tid=6066)



install signal / update error - printemps - 03-18-2019

Hi,
I tried to install Signal's desktop version on Lite 3.8 with following commands:

curl -s https://updates.signal.org/desktop/apt/keys.asc | sudo apt-key add -
echo "deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main" | sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
sudo apt update && sudo apt install signal-desktop

Following error occurs:
E:Type 'sudo' is not known on line 2 in source list /etc/apt/sources.list.d/signal-xenial.list
E:The list of sources could not be read.

Same error for Linux Lite updates when it tries to fetch the package cache information lists...

What can I do?
Thanks for help



Re: install signal / update error - DeepThought - 03-18-2019


Not sure how you typed this part into terminal but it should be one line
Code:
echo "deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main" | sudo tee -a /etc/apt/sources.list.d/signal-xenial.list

To check the sources list:
Code:
sudo nano /etc/apt/sources.list.d/signal-xenial.list

The only line in the signal-xenial.list file should be
Code:
deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main

You may need to edit the line, then control-x , y, and enter to save any edits.
Then try:
Code:
sudo apt update && sudo apt install signal-desktop



Re: install signal / update error - printemps - 03-18-2019

Thanks a lot.
After editing the sources list and reducing to one line, update and installation worked without problem.


Re: install signal / update error - DeepThought - 03-18-2019

Glad to help Smile