Ubuntu Trunk Checksum failed
-
@Sebastian-Roth do you know how I can downgrade to test?
-
I have the same openssl version on my production system.
-
@reflexxion Before downgrading you might want to try forcing curl to use different SSL protocol versions and/or cipher suites:
curl --tlsv1.0 -ko "checksums" https://fogproject.org/inits/index.php curl --tlsv1.1 -ko "checksums" https://fogproject.org/inits/index.php curl --tlsv1.2 -ko "checksums" https://fogproject.org/inits/index.php curl --tlsv1 --ciphers AES256-SHA -ko "checksums" https://fogproject.org/inits/index.php
See if any of those is working for you…
-
root@FogWest:~/svn/trunk/bin# curl --tlsv1 --ciphers AES256-SHA -ko "checksums" https://fogproject.org/inits/index.php % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 277 0 277 0 0 454 0 --:--:-- --:--:-- --:--:-- 454 root@FogWest:~/svn/trunk/bin# curl --tlsv1.0 -ko "checksums" https://fogproject.org/inits/index.php % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 277 0 277 0 0 498 0 --:--:-- --:--:-- --:--:-- 499 root@FogWest:~/svn/trunk/bin# curl --tlsv1.1 -ko "checksums" https://fogproject.org/inits/index.php % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 277 0 277 0 0 481 0 --:--:-- --:--:-- --:--:-- 480 root@FogWest:~/svn/trunk/bin# curl --tlsv1.2 -ko "checksums" https://fogproject.org/inits/index.php % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (35) Unknown SSL protocol error in connection to fogproject.org:443 root@FogWest:~/svn/trunk/bin# curl --tlsv1 --ciphers AES256-SHA -ko "checksums" https://fogproject.org/inits/index.php % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 277 0 277 0 0 401 0 --:--:-- --:--:-- --:--:-- 400 root@FogWest:~/svn/trunk/bin#
-
@reflexxion Ok, TLSv1.1 seams to work. So as a quick fix you can force curl to always use TLSv1.1 encrpytion via curlrc:
echo "tlsv1.1" >> ~/.curlrc
Then try running the installer again! -
@Sebastian-Roth THAT FIXED IT SIR! Thanks! Not sure if this has been helpful diagnostics for you guys… but I’ve certainly learned a lot! Thanks again!
-
@Sebastian-Roth Well, it fixed the install issue. The kernel update portion of the GUI is still not functional (not significant I don’t think) and the “estimated fog sites” is not working as well. No worries with that stuff… just thought I’d report it!
-
@reflexxion Thanks for your patients trying all the things out. This will definitely help others who run into similar issues. But I guess not very many people have the package repo deb.sury.org added like you have. Seams like others have trouble with curl and ssl versions as well: https://sourceforge.net/p/curl/bugs/1319/
@Quazz Which “same” version of openssl did you mean?
1.0.1f-1ubuntu2.18
or @reflexxion’s1.0.2g-1+deb.sury.org~trusty+1
?? If it is 1.0.2… then which version of curl you have? -
@Sebastian-Roth The same as reflexxion, but my curl is newer.
I have : 7.43.0-1ubuntu2.1
-
Good to know. So it seams to only cause problems with a distinct combination of curl and openssl version(s). Possibly the newer curl version works around an openssl bug or the other way round…