[Solved] Hint forArch/Manjaro using https-requestes handled by eBlocker

5 Posts
4 Users
3 Reactions
329 Views
(@julius)
Trusted Member
Joined: 5 Jahren ago
Posts: 40
Topic starter  

If you have trouble after enabling eblocker-handled-https-requests with manjaro/arch-linux when trying updating your system using pacman/trizen or installing new software e.g. from AUR it will help to import the ebocker.crt-file for the os as well ( https://www.archlinux.org/news/ca-certificates-update/):

cp /home/[...bla.../]eBlocker-Certificate-My_eBlocker.crt /etc/ca-certificates/trust-source/
run trust extract-compat

   
alexsuff, Benne and CalimerO reacted
ReplyQuote
(@taipan)
Estimable Member
Joined: 5 Jahren ago
Posts: 72
 

Hi

I use ubuntu and tried, but the link does not seem to be avail anymore.

I copied the crt from eblocker to /usr/share/ca-certificates/extra

I ran the update process

sudo update-ca-certificates

then I ran

sudo snap install vlc

I get an error

error: cannot perform the following tasks:
- Download snap "vlc" (2344) from channel "stable" (Get https://canonical-bos01.cdn.snapcraftcontent.com/download-origin/canonical-lgw01/RT9mcUhVsRYrDLG8qnvGiy26NKvv6Qkd_2344.snap?interactive=1&token=1642964400_f8dc735a0ffed6883fe6d0f72ed215011e914188: x509: certificate signed by unknown authority)

I tried another one:

sudo pip install youtube_dl

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1131)'))': /simple/youtube-dl/

what can I do?

Thanks


   
ReplyQuote
(@pio78)
Member
Joined: 6 Jahren ago
Posts: 329
 

@taipan 

copy your eBlocker CA-Certificate (.crt) to

/usr/local/share/ca-certificates/

then run

sudo update-ca-certificates

 

lets try - hope this helps

regards

PIO78

 


   
ReplyQuote
(@taipan)
Estimable Member
Joined: 5 Jahren ago
Posts: 72
 

@pio78 thanks. Seems to work now.

 


   
ReplyQuote
(@calimero)
Member
Joined: 5 Jahren ago
Posts: 527
 

@taipan

If pip will still make trouble, you can add the following with all the hosts, which are making trouble to the command line

Example:
--trusted-host files.pythonhosted.org:443 --trusted-host pypi.org

 

I use this command to update all pip installs
pip freeze | %{$_.split('==')[0]} | %{pip install --trusted-host files.pythonhosted.org:443 --trusted-host pypi.org --upgrade $_}

Regards

Sven


   
ReplyQuote

Nach oben scrollen