Firefox can access internet but terminal can't
up vote
1
down vote
favorite
I'm connected to university router, and I know they have many restrictions, but firefox is accessing the repo links without any issue, but the terminal can't.
How can I make the terminal use the same protocol as firefox?
My Ubuntu version is 18.04 LTS
Also, the ubuntu software package manager looks like it could work, since i could start the installation of VLC but never crossed 6-8%, i get timeouts everytime.
I tried using Synaptic, but same 403 Forbidden.
I tried using Proxies, tunnel my connexion through ssh from my phone, but the package manager (apt or synaptic) don't pass the authentication phase.
Also, i know the university is using fortiguard, but as i said, i can access all remote repo with firefox.
wadaane@wadaane-ubuntu:~$ sudo apt update
Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
403 Forbidden [IP: 91.189.91.26 80]
Err:2 http://sy.archive.ubuntu.com/ubuntu bionic InRelease
403 Forbidden [IP: 91.189.88.161 80]
Err:3 http://sy.archive.ubuntu.com/ubuntu bionic-updates InRelease
403 Forbidden [IP: 91.189.88.162 80]
Err:4 http://sy.archive.ubuntu.com/ubuntu bionic-backports InRelease
403 Forbidden [IP: 91.189.88.162 80]
Reading package lists... Done
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://security.ubuntu.com/ubuntu bionic-security InRelease' is no longer signed.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 403 Forbidden [IP: 91.189.91.26 80]
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic InRelease' is not signed.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic/InRelease 403 Forbidden [IP: 91.189.88.161 80]
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-updates 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.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-backports 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.
EDIT:
Here is the truncated output from tcpdump:
22:15:22.144893 IP wadaane-ubuntu.32779 > 172.18.3.2.domain: 62851+ [1au] PTR? 23.91.189.91.in-addr.arpa. (54)
22:15:22.152815 IP 172.18.3.2.domain > wadaane-ubuntu.32779: 62851 1/0/1 PTR economy.canonical.com. (89)
22:15:22.144309 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [S], seq 704597193, win 29200, options [mss 1460,sackOK,TS val 2654335473 ecr 0,nop,wscale 7], length 0
22:15:22.152697 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [S.], seq 2352942977, ack 704597194, win 5792, options [mss 1460,sackOK,TS val 746784843 ecr 2654335473,nop,wscale 7], length 0
22:15:22.152765 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length
22:15:22.153117 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [P.], seq 1:160, ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length 159: HTTP: GET /ubuntu/dists/bionic/InRelease HTTP/1.1
22:15:22.168911 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1:1449, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP: HTTP/1.1 403 Forbidden
22:15:22.168951 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1449, win 251, options [nop,nop,TS val 2654335498 ecr 746784843], length 0
22:15:22.169724 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [F.], seq 160, ack 1449, win 251, options [nop,nop,TS val 2654335499 ecr 746784843], length 0
22:15:22.178134 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1449:2897, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP
22:15:22.178177 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.179030 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [FP.], seq 2897:2912, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 15: HTTP
22:15:22.179049 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.185000 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [.], ack 161, win 5792, options [nop,nop,TS val 746784843 ecr 2654335499], length 0
22:15:22.185182 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597354, win 0, length 0
networking apt firefox proxy
New contributor
|
show 3 more comments
up vote
1
down vote
favorite
I'm connected to university router, and I know they have many restrictions, but firefox is accessing the repo links without any issue, but the terminal can't.
How can I make the terminal use the same protocol as firefox?
My Ubuntu version is 18.04 LTS
Also, the ubuntu software package manager looks like it could work, since i could start the installation of VLC but never crossed 6-8%, i get timeouts everytime.
I tried using Synaptic, but same 403 Forbidden.
I tried using Proxies, tunnel my connexion through ssh from my phone, but the package manager (apt or synaptic) don't pass the authentication phase.
Also, i know the university is using fortiguard, but as i said, i can access all remote repo with firefox.
wadaane@wadaane-ubuntu:~$ sudo apt update
Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
403 Forbidden [IP: 91.189.91.26 80]
Err:2 http://sy.archive.ubuntu.com/ubuntu bionic InRelease
403 Forbidden [IP: 91.189.88.161 80]
Err:3 http://sy.archive.ubuntu.com/ubuntu bionic-updates InRelease
403 Forbidden [IP: 91.189.88.162 80]
Err:4 http://sy.archive.ubuntu.com/ubuntu bionic-backports InRelease
403 Forbidden [IP: 91.189.88.162 80]
Reading package lists... Done
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://security.ubuntu.com/ubuntu bionic-security InRelease' is no longer signed.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 403 Forbidden [IP: 91.189.91.26 80]
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic InRelease' is not signed.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic/InRelease 403 Forbidden [IP: 91.189.88.161 80]
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-updates 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.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-backports 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.
EDIT:
Here is the truncated output from tcpdump:
22:15:22.144893 IP wadaane-ubuntu.32779 > 172.18.3.2.domain: 62851+ [1au] PTR? 23.91.189.91.in-addr.arpa. (54)
22:15:22.152815 IP 172.18.3.2.domain > wadaane-ubuntu.32779: 62851 1/0/1 PTR economy.canonical.com. (89)
22:15:22.144309 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [S], seq 704597193, win 29200, options [mss 1460,sackOK,TS val 2654335473 ecr 0,nop,wscale 7], length 0
22:15:22.152697 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [S.], seq 2352942977, ack 704597194, win 5792, options [mss 1460,sackOK,TS val 746784843 ecr 2654335473,nop,wscale 7], length 0
22:15:22.152765 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length
22:15:22.153117 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [P.], seq 1:160, ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length 159: HTTP: GET /ubuntu/dists/bionic/InRelease HTTP/1.1
22:15:22.168911 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1:1449, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP: HTTP/1.1 403 Forbidden
22:15:22.168951 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1449, win 251, options [nop,nop,TS val 2654335498 ecr 746784843], length 0
22:15:22.169724 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [F.], seq 160, ack 1449, win 251, options [nop,nop,TS val 2654335499 ecr 746784843], length 0
22:15:22.178134 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1449:2897, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP
22:15:22.178177 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.179030 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [FP.], seq 2897:2912, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 15: HTTP
22:15:22.179049 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.185000 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [.], ack 161, win 5792, options [nop,nop,TS val 746784843 ecr 2654335499], length 0
22:15:22.185182 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597354, win 0, length 0
networking apt firefox proxy
New contributor
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
1
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
1
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06
|
show 3 more comments
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm connected to university router, and I know they have many restrictions, but firefox is accessing the repo links without any issue, but the terminal can't.
How can I make the terminal use the same protocol as firefox?
My Ubuntu version is 18.04 LTS
Also, the ubuntu software package manager looks like it could work, since i could start the installation of VLC but never crossed 6-8%, i get timeouts everytime.
I tried using Synaptic, but same 403 Forbidden.
I tried using Proxies, tunnel my connexion through ssh from my phone, but the package manager (apt or synaptic) don't pass the authentication phase.
Also, i know the university is using fortiguard, but as i said, i can access all remote repo with firefox.
wadaane@wadaane-ubuntu:~$ sudo apt update
Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
403 Forbidden [IP: 91.189.91.26 80]
Err:2 http://sy.archive.ubuntu.com/ubuntu bionic InRelease
403 Forbidden [IP: 91.189.88.161 80]
Err:3 http://sy.archive.ubuntu.com/ubuntu bionic-updates InRelease
403 Forbidden [IP: 91.189.88.162 80]
Err:4 http://sy.archive.ubuntu.com/ubuntu bionic-backports InRelease
403 Forbidden [IP: 91.189.88.162 80]
Reading package lists... Done
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://security.ubuntu.com/ubuntu bionic-security InRelease' is no longer signed.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 403 Forbidden [IP: 91.189.91.26 80]
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic InRelease' is not signed.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic/InRelease 403 Forbidden [IP: 91.189.88.161 80]
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-updates 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.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-backports 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.
EDIT:
Here is the truncated output from tcpdump:
22:15:22.144893 IP wadaane-ubuntu.32779 > 172.18.3.2.domain: 62851+ [1au] PTR? 23.91.189.91.in-addr.arpa. (54)
22:15:22.152815 IP 172.18.3.2.domain > wadaane-ubuntu.32779: 62851 1/0/1 PTR economy.canonical.com. (89)
22:15:22.144309 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [S], seq 704597193, win 29200, options [mss 1460,sackOK,TS val 2654335473 ecr 0,nop,wscale 7], length 0
22:15:22.152697 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [S.], seq 2352942977, ack 704597194, win 5792, options [mss 1460,sackOK,TS val 746784843 ecr 2654335473,nop,wscale 7], length 0
22:15:22.152765 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length
22:15:22.153117 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [P.], seq 1:160, ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length 159: HTTP: GET /ubuntu/dists/bionic/InRelease HTTP/1.1
22:15:22.168911 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1:1449, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP: HTTP/1.1 403 Forbidden
22:15:22.168951 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1449, win 251, options [nop,nop,TS val 2654335498 ecr 746784843], length 0
22:15:22.169724 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [F.], seq 160, ack 1449, win 251, options [nop,nop,TS val 2654335499 ecr 746784843], length 0
22:15:22.178134 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1449:2897, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP
22:15:22.178177 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.179030 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [FP.], seq 2897:2912, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 15: HTTP
22:15:22.179049 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.185000 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [.], ack 161, win 5792, options [nop,nop,TS val 746784843 ecr 2654335499], length 0
22:15:22.185182 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597354, win 0, length 0
networking apt firefox proxy
New contributor
I'm connected to university router, and I know they have many restrictions, but firefox is accessing the repo links without any issue, but the terminal can't.
How can I make the terminal use the same protocol as firefox?
My Ubuntu version is 18.04 LTS
Also, the ubuntu software package manager looks like it could work, since i could start the installation of VLC but never crossed 6-8%, i get timeouts everytime.
I tried using Synaptic, but same 403 Forbidden.
I tried using Proxies, tunnel my connexion through ssh from my phone, but the package manager (apt or synaptic) don't pass the authentication phase.
Also, i know the university is using fortiguard, but as i said, i can access all remote repo with firefox.
wadaane@wadaane-ubuntu:~$ sudo apt update
Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
403 Forbidden [IP: 91.189.91.26 80]
Err:2 http://sy.archive.ubuntu.com/ubuntu bionic InRelease
403 Forbidden [IP: 91.189.88.161 80]
Err:3 http://sy.archive.ubuntu.com/ubuntu bionic-updates InRelease
403 Forbidden [IP: 91.189.88.162 80]
Err:4 http://sy.archive.ubuntu.com/ubuntu bionic-backports InRelease
403 Forbidden [IP: 91.189.88.162 80]
Reading package lists... Done
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://security.ubuntu.com/ubuntu bionic-security InRelease' is no longer signed.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 403 Forbidden [IP: 91.189.91.26 80]
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic InRelease' is not signed.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic/InRelease 403 Forbidden [IP: 91.189.88.161 80]
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-updates 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.
E: Failed to fetch http://sy.archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease 403 Forbidden [IP: 91.189.88.162 80]
E: The repository 'http://sy.archive.ubuntu.com/ubuntu bionic-backports 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.
EDIT:
Here is the truncated output from tcpdump:
22:15:22.144893 IP wadaane-ubuntu.32779 > 172.18.3.2.domain: 62851+ [1au] PTR? 23.91.189.91.in-addr.arpa. (54)
22:15:22.152815 IP 172.18.3.2.domain > wadaane-ubuntu.32779: 62851 1/0/1 PTR economy.canonical.com. (89)
22:15:22.144309 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [S], seq 704597193, win 29200, options [mss 1460,sackOK,TS val 2654335473 ecr 0,nop,wscale 7], length 0
22:15:22.152697 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [S.], seq 2352942977, ack 704597194, win 5792, options [mss 1460,sackOK,TS val 746784843 ecr 2654335473,nop,wscale 7], length 0
22:15:22.152765 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length
22:15:22.153117 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [P.], seq 1:160, ack 1, win 229, options [nop,nop,TS val 2654335482 ecr 746784843], length 159: HTTP: GET /ubuntu/dists/bionic/InRelease HTTP/1.1
22:15:22.168911 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1:1449, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP: HTTP/1.1 403 Forbidden
22:15:22.168951 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [.], ack 1449, win 251, options [nop,nop,TS val 2654335498 ecr 746784843], length 0
22:15:22.169724 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [F.], seq 160, ack 1449, win 251, options [nop,nop,TS val 2654335499 ecr 746784843], length 0
22:15:22.178134 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [P.], seq 1449:2897, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 1448: HTTP
22:15:22.178177 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.179030 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [FP.], seq 2897:2912, ack 160, win 5792, options [nop,nop,TS val 746784843 ecr 2654335482], length 15: HTTP
22:15:22.179049 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597353, win 0, length 0
22:15:22.185000 IP economy.canonical.com.http > wadaane-ubuntu.36120: Flags [.], ack 161, win 5792, options [nop,nop,TS val 746784843 ecr 2654335499], length 0
22:15:22.185182 IP wadaane-ubuntu.36120 > economy.canonical.com.http: Flags [R], seq 704597354, win 0, length 0
networking apt firefox proxy
networking apt firefox proxy
New contributor
New contributor
edited Dec 11 at 20:24
New contributor
asked Dec 11 at 1:01
Wadaane
164
164
New contributor
New contributor
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
1
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
1
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06
|
show 3 more comments
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
1
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
1
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
1
1
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
1
1
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06
|
show 3 more comments
2 Answers
2
active
oldest
votes
up vote
1
down vote
Ok, so the network problem couldn't be solved, as most said, its an IT departement thing.
So the final solution is to use apt-offline.
New contributor
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
add a comment |
up vote
-1
down vote
Remove the existing packages and then try the following:
dns-nameserver 8.8.8.8
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get clean
apt-get update
apt-get upgrade
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Wadaane is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1099922%2ffirefox-can-access-internet-but-terminal-cant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Ok, so the network problem couldn't be solved, as most said, its an IT departement thing.
So the final solution is to use apt-offline.
New contributor
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
add a comment |
up vote
1
down vote
Ok, so the network problem couldn't be solved, as most said, its an IT departement thing.
So the final solution is to use apt-offline.
New contributor
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
add a comment |
up vote
1
down vote
up vote
1
down vote
Ok, so the network problem couldn't be solved, as most said, its an IT departement thing.
So the final solution is to use apt-offline.
New contributor
Ok, so the network problem couldn't be solved, as most said, its an IT departement thing.
So the final solution is to use apt-offline.
New contributor
New contributor
answered Dec 12 at 1:05
Wadaane
164
164
New contributor
New contributor
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
add a comment |
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
1
1
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
I was going to suggest talking to the University Staff to see what could be done for better support. Ubuntu could be beneficial to many University students and the country as a whole. Then I read your answer before posting the comment under your question. Don't forget to accept your answer as the correct one by clicking the grey check mark next to it.
– WinEunuuchs2Unix
Dec 12 at 1:21
add a comment |
up vote
-1
down vote
Remove the existing packages and then try the following:
dns-nameserver 8.8.8.8
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get clean
apt-get update
apt-get upgrade
New contributor
add a comment |
up vote
-1
down vote
Remove the existing packages and then try the following:
dns-nameserver 8.8.8.8
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get clean
apt-get update
apt-get upgrade
New contributor
add a comment |
up vote
-1
down vote
up vote
-1
down vote
Remove the existing packages and then try the following:
dns-nameserver 8.8.8.8
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get clean
apt-get update
apt-get upgrade
New contributor
Remove the existing packages and then try the following:
dns-nameserver 8.8.8.8
apt-get clean
rm -rf /var/lib/apt/lists/*
apt-get clean
apt-get update
apt-get upgrade
New contributor
edited Dec 12 at 0:20
zx485
1,45231114
1,45231114
New contributor
answered Dec 11 at 14:15
Cvar1984
12
12
New contributor
New contributor
add a comment |
add a comment |
Wadaane is a new contributor. Be nice, and check out our Code of Conduct.
Wadaane is a new contributor. Be nice, and check out our Code of Conduct.
Wadaane is a new contributor. Be nice, and check out our Code of Conduct.
Wadaane is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1099922%2ffirefox-can-access-internet-but-terminal-cant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you using raspberry since I can see identical question posted by you on Raspberry Pi - Stack Exchange?
– Kulfy
Dec 11 at 1:48
That was a mistake ... but i still got the same probleme on raspbian
– Wadaane
Dec 11 at 1:54
1
Have you tried updating using other network than University's network? If you are using Raspbian, the question might be closed as off-topic. Also, instead of Syria server try to use other server like main, UK, India, USA, etc.
– Kulfy
Dec 11 at 1:57
I tried us and uk, and im not on raspbian anymore, this is on my laptop
– Wadaane
Dec 11 at 2:01
1
I strongly recommend you to either try other network or a VPN (proxy) since it doesn't seem to be system issue but a network issue.
– Kulfy
Dec 11 at 2:06