Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 3348  / 2 Years ago, tue, june 7, 2022, 2:15:28

In a terminal when I insert this command line



sudo apt-get update



W: Failed to fetch http://ppa.launchpad.net/gwibber-daily/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

More From » apt

 Answers
1

That's correct and the reason is: No packages for Trusty in this PPA. Remove the PPA. Open a terminal and run:



find /etc/apt -type f -name '*.list' -exec sudo sed -i '/gwibber-daily/d' {} ;
sudo apt-get update


The package gwibber is in the Trusty Universe repositories. To enable the repository:



sudo apt-add-repository universe
sudo apt-get update

[#17417] Wednesday, June 8, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
amelican

Total Points: 162
Total Questions: 116
Total Answers: 108

Location: Guam
Member since Mon, May 29, 2023
12 Months ago
;