How to fix CA cert issues with Curl in Ubuntu 14.04?How to use self signed certificate with an SVN...

Welcoming 2019 Pi day: How to draw the letter π?

How is the Swiss post e-voting system supposed to work, and how was it wrong?

How to generate globally unique ids for different tables of the same database?

Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?

Replacing Windows 7 security updates with anti-virus?

Is it true that real estate prices mainly go up?

Current sense amp + op-amp buffer + ADC: Measuring down to 0 with single supply

Does the statement `int val = (++i > ++j) ? ++i : ++j;` invoke undefined behavior?

Why doesn't using two cd commands in bash script execute the second command?

Use of プラトニック in this sentence?

How do anti-virus programs start at Windows boot?

Who is our nearest planetary neighbor, on average?

PTIJ: Who should pay for Uber rides: the child or the parent?

Where is the 1/8 CR apprentice in Volo's Guide to Monsters?

How to explain that I do not want to visit a country due to personal safety concern?

Professor being mistaken for a grad student

Be in awe of my brilliance!

Russian cases: A few examples, I'm really confused

Meaning of "SEVERA INDEOVI VAS" from 3rd Century slab

Have researchers managed to "reverse time"? If so, what does that mean for physics?

Rejected in 4th interview round citing insufficient years of experience

How can I change step-down my variable input voltage? [Microcontroller]

How to deal with taxi scam when on vacation?

Brexit - No Deal Rejection



How to fix CA cert issues with Curl in Ubuntu 14.04?


How to use self signed certificate with an SVN clientProblems importing own CA CertificatePositiveSSL doesn't work because of SnakeoilCannot connect client to landscape server: certificate issueHow to compile curl with SSL support?Root certificate issue on Ubuntu 16.04What is the secure combination of php.ini configuration and PHP code to verify SSL/TLS on Ubuntu 14.04?Installing CA Cert fails with no errorCA root install issue on Ubuntu 16.04 LTS ServerCURL. Server certificate verification failed













11















I am using Ubuntu 14.04. When I use curl, I get the following error:



curl: (77) error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath:



From what I gather from googling, the CAfile location it is looking for is not correct for Ubuntu (and it doesn't exist on my computer), /etc/ssl/certs/ca-certificates.crt is the proper location.



Most of the solutions involved setting the environment variable CURL_CA_BUNDLE to the proper location, or adding cacert=/etc/ssl/certs/ca-certificates.crt to the (newly created) .curlrc file in my home directory. I have tried both, and neither completely solve the issue. curl is finding this location, but it still doesn't work, giving the error:



curl: (60) SSL certificate problem: self signed certificate in certificate chain



I also tried uninstalling and reinstalling curl in Ubuntu, and updating my CA certs with $ sudo update-ca-certificates --fresh which updated the certs, but still didn't make error 60 go away.



I am not that knowledgeable about CA certs, and doubt I purposely added some self signed certificate in the past. Perhaps by accident, I don't know.



Does anyone know how to fix this? Is there a way to actually start fresh with all my certs? Or does anyone even know how I go about figuring out where this self signed certificate is, and then how to remove it?



PS: I don't want to use the -k (aka --insecure) flag. I want to get this working securely.










share|improve this question



























    11















    I am using Ubuntu 14.04. When I use curl, I get the following error:



    curl: (77) error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath:



    From what I gather from googling, the CAfile location it is looking for is not correct for Ubuntu (and it doesn't exist on my computer), /etc/ssl/certs/ca-certificates.crt is the proper location.



    Most of the solutions involved setting the environment variable CURL_CA_BUNDLE to the proper location, or adding cacert=/etc/ssl/certs/ca-certificates.crt to the (newly created) .curlrc file in my home directory. I have tried both, and neither completely solve the issue. curl is finding this location, but it still doesn't work, giving the error:



    curl: (60) SSL certificate problem: self signed certificate in certificate chain



    I also tried uninstalling and reinstalling curl in Ubuntu, and updating my CA certs with $ sudo update-ca-certificates --fresh which updated the certs, but still didn't make error 60 go away.



    I am not that knowledgeable about CA certs, and doubt I purposely added some self signed certificate in the past. Perhaps by accident, I don't know.



    Does anyone know how to fix this? Is there a way to actually start fresh with all my certs? Or does anyone even know how I go about figuring out where this self signed certificate is, and then how to remove it?



    PS: I don't want to use the -k (aka --insecure) flag. I want to get this working securely.










    share|improve this question

























      11












      11








      11


      4






      I am using Ubuntu 14.04. When I use curl, I get the following error:



      curl: (77) error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath:



      From what I gather from googling, the CAfile location it is looking for is not correct for Ubuntu (and it doesn't exist on my computer), /etc/ssl/certs/ca-certificates.crt is the proper location.



      Most of the solutions involved setting the environment variable CURL_CA_BUNDLE to the proper location, or adding cacert=/etc/ssl/certs/ca-certificates.crt to the (newly created) .curlrc file in my home directory. I have tried both, and neither completely solve the issue. curl is finding this location, but it still doesn't work, giving the error:



      curl: (60) SSL certificate problem: self signed certificate in certificate chain



      I also tried uninstalling and reinstalling curl in Ubuntu, and updating my CA certs with $ sudo update-ca-certificates --fresh which updated the certs, but still didn't make error 60 go away.



      I am not that knowledgeable about CA certs, and doubt I purposely added some self signed certificate in the past. Perhaps by accident, I don't know.



      Does anyone know how to fix this? Is there a way to actually start fresh with all my certs? Or does anyone even know how I go about figuring out where this self signed certificate is, and then how to remove it?



      PS: I don't want to use the -k (aka --insecure) flag. I want to get this working securely.










      share|improve this question














      I am using Ubuntu 14.04. When I use curl, I get the following error:



      curl: (77) error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath:



      From what I gather from googling, the CAfile location it is looking for is not correct for Ubuntu (and it doesn't exist on my computer), /etc/ssl/certs/ca-certificates.crt is the proper location.



      Most of the solutions involved setting the environment variable CURL_CA_BUNDLE to the proper location, or adding cacert=/etc/ssl/certs/ca-certificates.crt to the (newly created) .curlrc file in my home directory. I have tried both, and neither completely solve the issue. curl is finding this location, but it still doesn't work, giving the error:



      curl: (60) SSL certificate problem: self signed certificate in certificate chain



      I also tried uninstalling and reinstalling curl in Ubuntu, and updating my CA certs with $ sudo update-ca-certificates --fresh which updated the certs, but still didn't make error 60 go away.



      I am not that knowledgeable about CA certs, and doubt I purposely added some self signed certificate in the past. Perhaps by accident, I don't know.



      Does anyone know how to fix this? Is there a way to actually start fresh with all my certs? Or does anyone even know how I go about figuring out where this self signed certificate is, and then how to remove it?



      PS: I don't want to use the -k (aka --insecure) flag. I want to get this working securely.







      ssl curl certificates






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 9 '15 at 22:37









      themaninthewoodsthemaninthewoods

      3482310




      3482310






















          4 Answers
          4






          active

          oldest

          votes


















          9














          After researching and working on this over the last couple days I got it to work, and the answer ended up being rather simple.



          I needed to set capath=/etc/ssl/certs/in my .curlrc file.



          This got curl working on the command line. To further get curl to work in R (where I first encountered the problem) I also needed to have cacert=/etc/ssl/certs/ca-certificates.crt in my .curlrc file as tried before, otherwise it continued to look for /etc/pki/tls/certs/ca-bundle.crt



          I still have no idea why I was seeing the error about self-signed certificates.



          Based on some other random findings I also downloaded a certificate from the Curl website with:



          sudo wget http://curl.haxx.se/ca/cacert.pem


          into the same certs directory. Having cafile pointed at this worked as well. In the end I put it back to ca-certificates.crt and it still works.



          I don't understand exactly why this worked or what is going on, but it is resolved.






          share|improve this answer

































            8














            cafile key does not work for me (curl 7.45.0) but cacert (from --cacert option) does.
            My .curlrc file:



            capath=/etc/ssl/certs/
            cacert=/etc/ssl/certs/ca-certificates.crt





            share|improve this answer



















            • 1





              this worked for me on Ubuntu 16.04!

              – API
              Jan 7 '17 at 16:16



















            0














            We faced same problem with one of our C++ programs in Ubuntu 14.04.5. The .curlrc method was not taking effect.



            This was solved by downloading the ca-certificates.crt to /etc/ssl/certs/ca-certificates.crt and creating a symbolic link ca-bundle.crt under /etc/pki/tls/certs/ directory.



            Hope this helps!






            share|improve this answer































              0














              After researching for a few times I got it to work, and the answer ended up being rather a simple one.
              Do stepwise



              Step:1 Open terminal ctrl+alt+t
              Step:2 cd /etc/ssl/certs/
              Step:3 sudo wget http://curl.haxx.se/ca/cacert.pem


              Step 3 will download pem file in the certs folder



                Step 4: Check if .curlrc file is available in your home folder or not. 


              .curlrc is a hidden file. check by ctrl+h in the home directory.
              if not there then on terminal type



              Step 5:  nano ~/.curlrc 
              Step 6: Now paste the below lines in the open file
              capath=/etc/ssl/certs/
              cacert=/etc/ssl/certs/ca-certificates.crt
              Step 7: Now save the file and do your things using curl command.


              N.B Here I used nano editor, but you can use any editor.





              share








              New contributor




              PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.




















                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',
                autoActivateHeartbeat: false,
                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
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f646594%2fhow-to-fix-ca-cert-issues-with-curl-in-ubuntu-14-04%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                9














                After researching and working on this over the last couple days I got it to work, and the answer ended up being rather simple.



                I needed to set capath=/etc/ssl/certs/in my .curlrc file.



                This got curl working on the command line. To further get curl to work in R (where I first encountered the problem) I also needed to have cacert=/etc/ssl/certs/ca-certificates.crt in my .curlrc file as tried before, otherwise it continued to look for /etc/pki/tls/certs/ca-bundle.crt



                I still have no idea why I was seeing the error about self-signed certificates.



                Based on some other random findings I also downloaded a certificate from the Curl website with:



                sudo wget http://curl.haxx.se/ca/cacert.pem


                into the same certs directory. Having cafile pointed at this worked as well. In the end I put it back to ca-certificates.crt and it still works.



                I don't understand exactly why this worked or what is going on, but it is resolved.






                share|improve this answer






























                  9














                  After researching and working on this over the last couple days I got it to work, and the answer ended up being rather simple.



                  I needed to set capath=/etc/ssl/certs/in my .curlrc file.



                  This got curl working on the command line. To further get curl to work in R (where I first encountered the problem) I also needed to have cacert=/etc/ssl/certs/ca-certificates.crt in my .curlrc file as tried before, otherwise it continued to look for /etc/pki/tls/certs/ca-bundle.crt



                  I still have no idea why I was seeing the error about self-signed certificates.



                  Based on some other random findings I also downloaded a certificate from the Curl website with:



                  sudo wget http://curl.haxx.se/ca/cacert.pem


                  into the same certs directory. Having cafile pointed at this worked as well. In the end I put it back to ca-certificates.crt and it still works.



                  I don't understand exactly why this worked or what is going on, but it is resolved.






                  share|improve this answer




























                    9












                    9








                    9







                    After researching and working on this over the last couple days I got it to work, and the answer ended up being rather simple.



                    I needed to set capath=/etc/ssl/certs/in my .curlrc file.



                    This got curl working on the command line. To further get curl to work in R (where I first encountered the problem) I also needed to have cacert=/etc/ssl/certs/ca-certificates.crt in my .curlrc file as tried before, otherwise it continued to look for /etc/pki/tls/certs/ca-bundle.crt



                    I still have no idea why I was seeing the error about self-signed certificates.



                    Based on some other random findings I also downloaded a certificate from the Curl website with:



                    sudo wget http://curl.haxx.se/ca/cacert.pem


                    into the same certs directory. Having cafile pointed at this worked as well. In the end I put it back to ca-certificates.crt and it still works.



                    I don't understand exactly why this worked or what is going on, but it is resolved.






                    share|improve this answer















                    After researching and working on this over the last couple days I got it to work, and the answer ended up being rather simple.



                    I needed to set capath=/etc/ssl/certs/in my .curlrc file.



                    This got curl working on the command line. To further get curl to work in R (where I first encountered the problem) I also needed to have cacert=/etc/ssl/certs/ca-certificates.crt in my .curlrc file as tried before, otherwise it continued to look for /etc/pki/tls/certs/ca-bundle.crt



                    I still have no idea why I was seeing the error about self-signed certificates.



                    Based on some other random findings I also downloaded a certificate from the Curl website with:



                    sudo wget http://curl.haxx.se/ca/cacert.pem


                    into the same certs directory. Having cafile pointed at this worked as well. In the end I put it back to ca-certificates.crt and it still works.



                    I don't understand exactly why this worked or what is going on, but it is resolved.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Apr 30 '16 at 18:40









                    muru

                    1




                    1










                    answered Jul 11 '15 at 5:22









                    themaninthewoodsthemaninthewoods

                    3482310




                    3482310

























                        8














                        cafile key does not work for me (curl 7.45.0) but cacert (from --cacert option) does.
                        My .curlrc file:



                        capath=/etc/ssl/certs/
                        cacert=/etc/ssl/certs/ca-certificates.crt





                        share|improve this answer



















                        • 1





                          this worked for me on Ubuntu 16.04!

                          – API
                          Jan 7 '17 at 16:16
















                        8














                        cafile key does not work for me (curl 7.45.0) but cacert (from --cacert option) does.
                        My .curlrc file:



                        capath=/etc/ssl/certs/
                        cacert=/etc/ssl/certs/ca-certificates.crt





                        share|improve this answer



















                        • 1





                          this worked for me on Ubuntu 16.04!

                          – API
                          Jan 7 '17 at 16:16














                        8












                        8








                        8







                        cafile key does not work for me (curl 7.45.0) but cacert (from --cacert option) does.
                        My .curlrc file:



                        capath=/etc/ssl/certs/
                        cacert=/etc/ssl/certs/ca-certificates.crt





                        share|improve this answer













                        cafile key does not work for me (curl 7.45.0) but cacert (from --cacert option) does.
                        My .curlrc file:



                        capath=/etc/ssl/certs/
                        cacert=/etc/ssl/certs/ca-certificates.crt






                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Mar 30 '16 at 16:42









                        DukeDuke

                        18112




                        18112








                        • 1





                          this worked for me on Ubuntu 16.04!

                          – API
                          Jan 7 '17 at 16:16














                        • 1





                          this worked for me on Ubuntu 16.04!

                          – API
                          Jan 7 '17 at 16:16








                        1




                        1





                        this worked for me on Ubuntu 16.04!

                        – API
                        Jan 7 '17 at 16:16





                        this worked for me on Ubuntu 16.04!

                        – API
                        Jan 7 '17 at 16:16











                        0














                        We faced same problem with one of our C++ programs in Ubuntu 14.04.5. The .curlrc method was not taking effect.



                        This was solved by downloading the ca-certificates.crt to /etc/ssl/certs/ca-certificates.crt and creating a symbolic link ca-bundle.crt under /etc/pki/tls/certs/ directory.



                        Hope this helps!






                        share|improve this answer




























                          0














                          We faced same problem with one of our C++ programs in Ubuntu 14.04.5. The .curlrc method was not taking effect.



                          This was solved by downloading the ca-certificates.crt to /etc/ssl/certs/ca-certificates.crt and creating a symbolic link ca-bundle.crt under /etc/pki/tls/certs/ directory.



                          Hope this helps!






                          share|improve this answer


























                            0












                            0








                            0







                            We faced same problem with one of our C++ programs in Ubuntu 14.04.5. The .curlrc method was not taking effect.



                            This was solved by downloading the ca-certificates.crt to /etc/ssl/certs/ca-certificates.crt and creating a symbolic link ca-bundle.crt under /etc/pki/tls/certs/ directory.



                            Hope this helps!






                            share|improve this answer













                            We faced same problem with one of our C++ programs in Ubuntu 14.04.5. The .curlrc method was not taking effect.



                            This was solved by downloading the ca-certificates.crt to /etc/ssl/certs/ca-certificates.crt and creating a symbolic link ca-bundle.crt under /etc/pki/tls/certs/ directory.



                            Hope this helps!







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jul 21 '17 at 15:47









                            TamilTamil

                            1




                            1























                                0














                                After researching for a few times I got it to work, and the answer ended up being rather a simple one.
                                Do stepwise



                                Step:1 Open terminal ctrl+alt+t
                                Step:2 cd /etc/ssl/certs/
                                Step:3 sudo wget http://curl.haxx.se/ca/cacert.pem


                                Step 3 will download pem file in the certs folder



                                  Step 4: Check if .curlrc file is available in your home folder or not. 


                                .curlrc is a hidden file. check by ctrl+h in the home directory.
                                if not there then on terminal type



                                Step 5:  nano ~/.curlrc 
                                Step 6: Now paste the below lines in the open file
                                capath=/etc/ssl/certs/
                                cacert=/etc/ssl/certs/ca-certificates.crt
                                Step 7: Now save the file and do your things using curl command.


                                N.B Here I used nano editor, but you can use any editor.





                                share








                                New contributor




                                PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.

























                                  0














                                  After researching for a few times I got it to work, and the answer ended up being rather a simple one.
                                  Do stepwise



                                  Step:1 Open terminal ctrl+alt+t
                                  Step:2 cd /etc/ssl/certs/
                                  Step:3 sudo wget http://curl.haxx.se/ca/cacert.pem


                                  Step 3 will download pem file in the certs folder



                                    Step 4: Check if .curlrc file is available in your home folder or not. 


                                  .curlrc is a hidden file. check by ctrl+h in the home directory.
                                  if not there then on terminal type



                                  Step 5:  nano ~/.curlrc 
                                  Step 6: Now paste the below lines in the open file
                                  capath=/etc/ssl/certs/
                                  cacert=/etc/ssl/certs/ca-certificates.crt
                                  Step 7: Now save the file and do your things using curl command.


                                  N.B Here I used nano editor, but you can use any editor.





                                  share








                                  New contributor




                                  PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.























                                    0












                                    0








                                    0







                                    After researching for a few times I got it to work, and the answer ended up being rather a simple one.
                                    Do stepwise



                                    Step:1 Open terminal ctrl+alt+t
                                    Step:2 cd /etc/ssl/certs/
                                    Step:3 sudo wget http://curl.haxx.se/ca/cacert.pem


                                    Step 3 will download pem file in the certs folder



                                      Step 4: Check if .curlrc file is available in your home folder or not. 


                                    .curlrc is a hidden file. check by ctrl+h in the home directory.
                                    if not there then on terminal type



                                    Step 5:  nano ~/.curlrc 
                                    Step 6: Now paste the below lines in the open file
                                    capath=/etc/ssl/certs/
                                    cacert=/etc/ssl/certs/ca-certificates.crt
                                    Step 7: Now save the file and do your things using curl command.


                                    N.B Here I used nano editor, but you can use any editor.





                                    share








                                    New contributor




                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.










                                    After researching for a few times I got it to work, and the answer ended up being rather a simple one.
                                    Do stepwise



                                    Step:1 Open terminal ctrl+alt+t
                                    Step:2 cd /etc/ssl/certs/
                                    Step:3 sudo wget http://curl.haxx.se/ca/cacert.pem


                                    Step 3 will download pem file in the certs folder



                                      Step 4: Check if .curlrc file is available in your home folder or not. 


                                    .curlrc is a hidden file. check by ctrl+h in the home directory.
                                    if not there then on terminal type



                                    Step 5:  nano ~/.curlrc 
                                    Step 6: Now paste the below lines in the open file
                                    capath=/etc/ssl/certs/
                                    cacert=/etc/ssl/certs/ca-certificates.crt
                                    Step 7: Now save the file and do your things using curl command.


                                    N.B Here I used nano editor, but you can use any editor.






                                    share








                                    New contributor




                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.








                                    share


                                    share






                                    New contributor




                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.









                                    answered 9 mins ago









                                    PyDevSRSPyDevSRS

                                    1011




                                    1011




                                    New contributor




                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.





                                    New contributor





                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.






                                    PyDevSRS is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                    Check out our Code of Conduct.






























                                        draft saved

                                        draft discarded




















































                                        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.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f646594%2fhow-to-fix-ca-cert-issues-with-curl-in-ubuntu-14-04%23new-answer', 'question_page');
                                        }
                                        );

                                        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







                                        Popular posts from this blog

                                        Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

                                        Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

                                        Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...