- https://github.com/Benjamin-Loison
- Joined on
2022-10-16
shred
free disk slots?
According to the person:
-----BEGIN PGP MESSAGE-----
hF4DTQa9Wom5MBgSAQdAKWSBvVv7KfDUnNntOu/qseQXOZZwBhSmTMAZLlfe+3gw
4bZDLYZbOl1OqTGR3RPkv9K6mfS2TnQWv1oAy…
Maybe can give sudo
access to given scripts (excluding sensitive informations) or programs.
~/.ssh/authorized_keys
See the message:
-----BEGIN PGP MESSAGE-----
hF4DTQa9Wom5MBgSAQdAdK7m9f8GH7P6oSi1Wx3SmWETs31LS23yCeQiCLanqXkw
xrj1WADYvB+Fvwie0MXYZpjFiC6VpBR2/hO4s3O9bLXRc…
Due to 30/03/25 daylight saving time may solve the issue but it seems that the shift is now of 2 hours and potentially no more just late but also in the future.
The Stack Overflow answer 74171106 solves this issue by adding --nginx-ctl /usr/sbin/nginx
to the crontab
.
The Stack Overflow answer 21297927 helps:
DOMAIN_NAME=etesync.lemnoslife.com
FILE=website.pem
echo -n
DuckDuckGo search Linux get domain name HTTPS expiration date. I suspect already having searched that.
which nginx
/usr/sbin/nginx
DuckDuckGo search "Could not find a usable 'nginx' binary"
.
When run manually:
certbot --nginx --key-type ecdsa --elliptic-curve secp384r1 -d v.lemnoslife.com,videos.lemnoslife.com,gitea.lemnoslife.com,server0.lemnoslife.com,gitlab.lemnoslife.co…
Face again this issue.
alias
es prefer LAN over Internet but with a single command
Bash script:
ssh_on_same_network_preferably()
{
...
alias sshCommand='ssh $reachableAddress "${@:2}"'
...
sshCommand
...
}
…
alias
es prefer LAN over Internet but with a single command
Bash script:
my_test()
{
if [ -t 0 ]
then
echo 'Without stdin'
else
echo 'With stdin'
fi
}
echo test
alias
es prefer LAN over Internet but with a single command
If do not pipe to the function, then it waits forever...
DuckDuckGo search Bash test if stdin.
alias
es prefer LAN over Internet but with a single command
I corrected accordingly #issuecomment-3000 but I can't explain why it seemed to have worked sometimes despite using this Bash function and not ssh
.