OS: Ubuntu 20.04
While following RVM: Ruby Version Manager — Installing RVM to install RVM, got the following error:
curl: (77) error setting certificate verify locations:
CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
I tried a few ways around, but didn’t fix. Finally this one works for me.
$ sudo apt reinstall ca-certificates
$…
For instance, you have a parameter in the template:
"EnableWebServer": {
"Default": "No",
"Description": "Enable Web Server in the Ubuntu or not",
"Type": "String"
}
You want to pass it to the Shell Scripts in UserData to run some commands based on this parameter. Here is an sample:
"UserData": {…
NOTE, it’s not permission error, that is another story!
This kind of issue could be all kind of reasons.
But, anyway, first of all, you should check the NFS version in your server and the client. Make sure you configure it based on the right version. Actually, the help info…
Maybe I should consider github for this kind of document…uh…anyway, let me go with Medium.
- How many files are modified in the local repo, but with only file name
git ls-files -m | wc -l
- Compare files in different branches
git diff <branch name a>:<file path> <branch name b>:<file path>…