You are not logged in.

#1 2022-12-03 12:30:43

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Fails to execute command

[Solved]

curl: (28) Failed to connect to raw.githubusercontent.com port 443 after 130114 ms: Couldn't connect to server

Getting this kind of error whenever I try to install some applications or oh-my-zsh/fish
same happens with the wget option as well

Last edited by AmithKumar (2022-12-05 18:55:35)

Offline

#2 2022-12-03 14:31:49

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Fails to execute command

ping -c1 raw.githubusercontent.com
ip a; ip r
find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

Offline

#3 2022-12-03 15:58:43

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

It worked... Thank you

Offline

#4 2022-12-03 16:13:07

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Fails to execute command

This cannot "worked", those commands are meant to gather some information about the system that might explain the behavior.
They're completely idempontent and won't alter the system in any way, shape or form.

Offline

#5 2022-12-03 16:48:35

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

Ohh IDK, but that solved my issue after pasting the output in host

Offline

#6 2022-12-03 17:14:18

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Fails to execute command

Please post the output of

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

Offline

#7 2022-12-04 04:30:35

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

bluetooth.service                        | bluetooth.target.wants
dbus-org.bluez.service                   | system
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.timesync1.service   | system
dhcpcd.service                           | multi-user.target.wants
display-manager.service                  | system
gcr-ssh-agent.socket                     | sockets.target.wants
getty@tty1.service                       | getty.target.wants
gnome-keyring-daemon.socket              | sockets.target.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-media-session.service           | pipewire.service.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
pulseaudio.socket                        | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-timesyncd.service                | sysinit.target.wants
xdg-user-dirs-update.service             | default.target.wants

Last edited by AmithKumar (2022-12-04 07:43:17)

Offline

#8 2022-12-04 05:24:19

Scimmia
Fellow
Registered: 2012-09-01
Posts: 11,461

Re: Fails to execute command

Yeah, you have both dhcpcd and NetworkManager enabled. Why? You generally want only one thing managing your network.

Offline

#9 2022-12-04 05:35:22

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

Scimmia wrote:

Yeah, you have both dhcpcd and NetworkManager enabled. Why? You generally want only one thing managing your network.

By disabling one of them, I was not able to use internet in tty mode
Arch did not connect to the internet, so I enabled both. Now I have disabled dhcpcd and works fine

Same with the audio as well, after adding  "snd_hda_intel.dmic_detect=0" this in grub I able to use audio.

Offline

#10 2022-12-04 05:36:20

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

bluetooth.service                        | bluetooth.target.wants
dbus-org.bluez.service                   | system
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.timesync1.service   | system
display-manager.service                  | system
gcr-ssh-agent.socket                     | sockets.target.wants
getty@tty1.service                       | getty.target.wants
gnome-keyring-daemon.socket              | sockets.target.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-media-session.service           | pipewire.service.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
pulseaudio.socket                        | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-timesyncd.service                | sysinit.target.wants
xdg-user-dirs-update.service             | default.target.wants

Last edited by AmithKumar (2022-12-04 07:42:52)

Offline

#11 2022-12-04 06:01:01

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,130

Re: Fails to execute command

Please edit your posts to use [ code ] [ /code ] tags.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#12 2022-12-04 07:26:39

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Fails to execute command

I was not able to use internet in tty mode

Just in case: https://wiki.archlinux.org/title/Networ … i_examples

Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

#13 2022-12-04 07:47:28

AmithKumar
Member
Registered: 2022-12-03
Posts: 11

Re: Fails to execute command

[Solved]

AmithKumar wrote:

Ohh IDK, but that solved my issue after pasting the output in host

Offline

#14 2022-12-04 07:57:00

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: Fails to execute command

seth wrote:

by editing your initial posts subject

https://bbs.archlinux.org/edit.php?id=2071527

Offline

Board footer

Powered by FluxBB