Originally from https://www.chrisjhart.com/Windows-10-ssh-copy-id/ (visited 2021-07-06)
The below is run in Windows PowerShell
Step 1: Create keys (once-off)
ssh-keygen
Originally from https://www.chrisjhart.com/Windows-10-ssh-copy-id/ (visited 2021-07-06)
The below is run in Windows PowerShell
Step 1: Create keys (once-off)
ssh-keygen
Ran into a problem in VSCode recetnly with Lombok logging annotation causing a "log cannot be resolved" warning in VSCode.
Also, when running the project, as soon as that particular log.info
line is hit, and exception is thrown.
First, I realized I didn't add the lombok plugin - so make sure that is installed.
I also opted to restart the Java language server when VSCode prompted me to do so.
Now, the log.info
line was no longer "underlined" in VSCode, but the error still persisted... What was going on??
The following example was taken from openstack-archive/deb-python-oauth2client which was an archived project at the time of writing.
# Copyright 2016 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
These steps were originally documented by mediatemple.net and I am copying it here for incase that source disappears on me.
STEP 1 - Add the user. In the following example, we will use the user name admin. The command adduser will automatically create the user, initial group, and home directory.
[root@root ~]# adduser admin
[root@root ~]# id admin
uid=10018(admin) gid=10018(admin) groups=10018(admin)
[root@root ~]# ls -lad /home/admin/
drwx------ 2 admin admin 4096 Jun 25 16:01 /home/admin/
References:
My current docker command to start a new container:
docker run -d \
$ uname -r
#!/bin/sh | |
curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" | |
mkdir -p ~/opt/bin | |
chmod 700 kubectl | |
mv kubectl ~/opt/bin |
Found this gem on medium
Can help with problems like:
gyp: No Xcode or CLT version detected!
gyp ERR! configure error
TL;DR