LinuxQuestions.org
Help answer threads with 0 replies.
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 09-27-2019, 04:27 AM   #1
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Rep: Reputation: Disabled
Why am I getting an error message when trying to check download authenticity debian 10 buster?


I got the following info from armbian.com.

# download public key from the database:
gpg --keyserver ha.pool.sks-keyservers.net --recv-key DF00FAF1C577104B50BF1D0093D6889F9F0E78D5
gpg --verify Armbian_5.18_Armada_Debian_jessie_3.10.94.img.asc

I get: "gpg: keyserver received failed: Server indicated a failure."

https://docs.armbian.com/User-Guide_...d-authenticity

Last edited by hddfsck; 09-27-2019 at 04:29 AM.
 
Old 09-27-2019, 07:45 AM   #2
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,877
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Please review this link and consider using the ping utility to diagnose.
 
Old 09-27-2019, 08:57 AM   #3
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
Please review this link and consider using the ping utility to diagnose.
100% packet loss
sudo ping -c 5 www.google.com
sudo ping -c 5 www.duckduckgo.com

sudo ifconfig /all
"/all: error fetching interface information: device not found

Last edited by hddfsck; 09-27-2019 at 09:20 AM.
 
Old 09-27-2019, 09:32 AM   #4
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,877
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Quote:
Originally Posted by hddfsck View Post
100% packet loss
sudo ping -c 5 www.google.com
sudo ping -c 5 www.duckduckgo.com

sudo ifconfig /all
"/all: error fetching interface information: device not found
Q.E.D. you've diagnosed why you're getting that error.
 
1 members found this post helpful.
Old 09-27-2019, 02:33 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,939

Rep: Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619Reputation: 3619
sudo ifconfig /all

??? Never tried it that way.

I tend to use ipconfig /all and ifconfig -a
 
Old 09-27-2019, 03:44 PM   #6
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by jefro View Post
sudo ifconfig /all

??? Never tried it that way.

I tend to use ipconfig /all and ifconfig -a

Shocked it even worked with Buster the install I did a week or two ago did not have that command it is depreciated now. Along with the command to reboot and shutdown the machine that was it for that install commands I have used for 20 years no longer there in their quest to help us all. To the OP most likely the firmware is missing for your network card all for your freedom. Try downloading and checking the file with a live CD like Ubuntu it should get you a network connection to check. Oh and if they still do it check for the install cd that has the non-free bits that make an install actually work in the real world.
 
Old 09-29-2019, 01:34 AM   #7
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
Q.E.D. you've diagnosed why you're getting that error.
Maybe I diagnosed it, but I don't understand what is wrong. I see the 100% packet loss, but I do have an active internet connection that can pull up sites.
 
Old 09-30-2019, 12:13 PM   #8
crts
Senior Member
 
Registered: Jan 2010
Posts: 2,020

Rep: Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757
Quote:
Originally Posted by hddfsck View Post
Maybe I diagnosed it, but I don't understand what is wrong. I see the 100% packet loss, but I do have an active internet connection that can pull up sites.
I do not think you diagnosed it. The command you posted earlier
Code:
sudo ifconfig /all
is trying to fetch information for the device '/all'. There is no such device. You probably should issue
Code:
sudo ifconfig -a
and post the output.
 
1 members found this post helpful.
Old 10-01-2019, 03:57 AM   #9
marismala
LQ Newbie
 
Registered: Oct 2019
Posts: 2

Rep: Reputation: Disabled
Try to reset your function.
 
Old 10-01-2019, 04:44 AM   #10
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,692

Rep: Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274
/ is used for options only in windows, in linux you need to use - instead. / (and therefore /all) has another meaning.
you must not use sudo for ping and also ifconfig -a works without that.

if ping to google.com does not work: there is a connection problem somewhere definitely. You can try traceroute (or another tool) to get more info.
 
1 members found this post helpful.
Old 10-01-2019, 04:48 AM   #11
Samsonite2010
Member
 
Registered: Apr 2015
Distribution: Debian
Posts: 267
Blog Entries: 1

Rep: Reputation: 117Reputation: 117
Quote:
Originally Posted by pan64 View Post
/ is used for options only in windows, in linux you need to use - instead. / (and therefore /all) has another meaning.
you must not use sudo for ping and also ifconfig -a works without that.

if ping to google.com does not work: there is a connection problem somewhere definitely. You can try traceroute (or another tool) to get more info.
Actually in Debian 10, you do need sudo for ifconfig. Without it, it says it does not exist.
 
1 members found this post helpful.
Old 10-03-2019, 10:05 AM   #12
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
$ ip link show
$ ip addr show
$ ip route show

ip replaces ifconfig.

I have a few issues with systemd-resolved blocking DNS.

# systemctl stop systemd-resolved

Makes it so /etc/resolv.conf can be used for DNS again.

# echo "nameserver 8.8.8.8" > /etc/resolv.conf

Although everything under the sun seems to rewrite resolv.conf these days. DHCP, VPN, resolvconf, and others.
 
Old 10-09-2019, 12:48 PM   #13
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Shadow_7 View Post
$ ip link show
$ ip addr show
$ ip route show

ip replaces ifconfig.

I have a few issues with systemd-resolved blocking DNS.

# systemctl stop systemd-resolved

Makes it so /etc/resolv.conf can be used for DNS again.

# echo "nameserver 8.8.8.8" > /etc/resolv.conf

Although everything under the sun seems to rewrite resolv.conf these days. DHCP, VPN, resolvconf, and others.
Code:
sudo ip link show

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: dummy0: <BROADCAST,NOARP> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/ether 7a:4a:2d:ed:75:56 brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
    link/ether 02:81:5e:e8:12:d1 brd ff:ff:ff:ff:ff:ff
4: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
    link/ether 12:81:5e:e8:12:d1 brd ff:ff:ff:ff:ff:ff


------- 

sudo ip addr show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: dummy0: <BROADCAST,NOARP> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether 7a:4a:2d:ed:75:56 brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether 02:81:5e:e8:12:d1 brd ff:ff:ff:ff:ff:ff
4: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether 12:81:5e:e8:12:d1 brd ff:ff:ff:ff:ff:ff

--------- 

sudo ip route show: shows nothing
 
Old 10-09-2019, 12:57 PM   #14
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by crts View Post
I do not think you diagnosed it. The command you posted earlier
Code:
sudo ifconfig /all
is trying to fetch information for the device '/all'. There is no such device. You probably should issue
Code:
sudo ifconfig -a
and post the output.
[code]
sudo ifconfig /all
/all: error fetching interface information: Device not found

~$ sudo ifconfig -a
dummy0: flags=130<BROADCAST,NOARP> mtu 1500
ether 7a:4a:2d:ed:75:56 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether 02:81:5e:e8:12:d1 txqueuelen 1000 (Ethernet)
RX packets 1021 bytes 80659 (78.7 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 40

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 5352 bytes 433480 (423.3 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 5352 bytes 433480 (423.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 12:81:5e:e8:12:d1 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
[code/]
 
Old 10-09-2019, 01:46 PM   #15
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,692

Rep: Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274Reputation: 7274
you have no ip address at all
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
LXer: Debian 11 "Bullseye" and Debian 12 "Bookworm" Are Coming After Debian 10 "Buster" LXer Syndicated Linux News 0 04-18-2018 12:26 PM
KeePassX - server failed the authenticity check aikempshall Slackware 5 12-29-2017 09:32 AM
[SOLVED] How can I disable the authenticity check when ssh'ing to a server for the first time? abefroman Linux - Server 2 10-04-2013 04:16 PM
Using nginx + thin giving Invalid form authenticity token error deoren Linux - Server 0 11-12-2010 07:00 PM
Is there a way to prevent this message:The authenticity of host can't be established. abefroman Linux - Server 8 11-27-2009 02:52 PM

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

All times are GMT -5. The time now is 03:43 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