LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-05-2020, 11:01 PM   #1
MaryOnACross
LQ Newbie
 
Registered: Jul 2020
Distribution: Ubuntu 20.04
Posts: 12

Rep: Reputation: Disabled
Unhappy Trying to install Wine: Err:9 http://ppa.launchpad.net/paolorotolo/droidcam/ubuntu focal Release


here what I've done:

maria@maria-Aspire-A315-41:~$ sudo dpkg --add-architecture i386
[sudo] password for maria:
maria@maria-Aspire-A315-41:~$ wget -nc https://dl.winehq.org/wine-builds/Release.key
--2020-08-05 22:56:26-- https://dl.winehq.org/wine-builds/Release.key
Resolving dl.winehq.org (dl.winehq.org)... 151.101.178.217
Connecting to dl.winehq.org (dl.winehq.org)|151.101.178.217|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3122 (3,0K) [application/pgp-keys]
Saving to: ‘Release.key’

Release.key 100%[===================>] 3,05K --.-KB/s in 0s

2020-08-05 22:56:26 (31,8 MB/s) - ‘Release.key’ saved [3122/3122]

maria@maria-Aspire-A315-41:~$ sudo apt-key add Release.key
OK
maria@maria-Aspire-A315-41:~$ sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ -y
Hit:1 http://br.archive.ubuntu.com/ubuntu focal InRelease
Get:2 http://br.archive.ubuntu.com/ubuntu focal-updates InRelease [111 kB]
Ign:3 http://ppa.launchpad.net/paolorotolo/droidcam/ubuntu focal InRelease
Get:4 http://br.archive.ubuntu.com/ubuntu focal-backports InRelease [98,3 kB]
Get:5 http://security.ubuntu.com/ubuntu focal-security InRelease [107 kB]
Get:6 https://brave-browser-apt-release.s3.brave.com stable InRelease [4.316 B]
Get:7 https://dl.winehq.org/wine-builds/ubuntu focal InRelease [6.257 B]
Get:8 http://br.archive.ubuntu.com/ubuntu focal-updates/main amd64 DEP-11 Metadata [196 kB]
Err:9 http://ppa.launchpad.net/paolorotolo/droidcam/ubuntu focal Release
404 Not Found [IP: 2001:67c:1560:8008::15 80]
Get:10 http://br.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [8.160 B]
Get:11 http://br.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [149 kB]
Get:12 http://br.archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [82,4 kB]
Get:13 http://br.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [74,3 kB]
Get:14 http://br.archive.ubuntu.com/ubuntu focal-updates/universe amd64 DEP-11 Metadata [177 kB]
Get:15 http://br.archive.ubuntu.com/ubuntu focal-updates/universe DEP-11 48x48 Icons [92,2 kB]
Err:7 https://dl.winehq.org/wine-builds/ubuntu focal InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
Get:16 http://br.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [5.060 B]
Get:17 http://br.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 DEP-11 Metadata [2.468 B]
Get:18 http://br.archive.ubuntu.com/ubuntu focal-backports/universe amd64 DEP-11 Metadata [1.976 B]
Get:19 http://security.ubuntu.com/ubuntu focal-security/main amd64 DEP-11 Metadata [21,2 kB]
Get:20 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [3.952 B]
Get:21 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [52,2 kB]
Get:22 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [23,9 kB]
Get:23 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [26,6 kB]
Get:24 http://security.ubuntu.com/ubuntu focal-security/universe amd64 DEP-11 Metadata [35,9 kB]
Get:25 http://security.ubuntu.com/ubuntu focal-security/universe DEP-11 48x48 Icons [7.192 B]
Get:26 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [2.108 B]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/paolorotolo/droidcam/ubuntu focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: https://dl.winehq.org/wine-builds/ubuntu focal InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu focal InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I can't figure out what is the problem to solve that, please help me

I want to install that so I can install and play AM2R
 
Old 08-06-2020, 02:30 PM   #2
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,686

Rep: Reputation: Disabled
The error message in your thread title has nothing to do with Wine. It's about droidcam PPA. Get rid of it it with
Code:
sudo add-apt-repository -r ppa:paolorotolo/droidcam
Now to your problem.
You added Release.key from WineHQ to Ubuntu keyring, but their download instruction mentions winehq.key instead:
Code:
wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
 
Old 08-06-2020, 05:13 PM   #3
MaryOnACross
LQ Newbie
 
Registered: Jul 2020
Distribution: Ubuntu 20.04
Posts: 12

Original Poster
Rep: Reputation: Disabled
Question

Quote:
Originally Posted by shruggy View Post
The error message in your thread title has nothing to do with Wine. It's about droidcam PPA. Get rid of it it with
Code:
sudo add-apt-repository -r ppa:paolorotolo/droidcam
If I do that will I be still able to use droidcam?

Now to your problem.
You added Release.key from WineHQ to Ubuntu keyring, but their download instruction mentions winehq.key instead:
Code:
wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
about that should I do all the same steps over again or just copy and paste on an empty terminal?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] ppa.launchpad.net not found on /etc/apt/sources.list satimis Ubuntu 11 02-01-2017 07:16 AM
LXer: Install LibreOffice In Ubuntu From A Launchpad PPA LXer Syndicated Linux News 0 01-03-2011 10:50 AM
Update manager error: GPG error: http://ppa.launchpad.net ... signatures ... Nonc Linux - General 0 08-18-2010 06:36 PM
LXer: How-To: Install Pidgin 2.6.1 in Ubuntu 9.04 Jaunty from a Launchpad PPA LXer Syndicated Linux News 0 08-24-2009 08:30 PM
LXer: How To Install GIMP 2.7 in Ubuntu Jaunty and Karmic From a Launchpad PPA LXer Syndicated Linux News 0 08-22-2009 08:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration