Salomon Forest Force Run 2023 - 50KM
Even started at 7am on 29 Oct 2023, and could not speed up due to wind direction, especially in east coast park.
Medals
Result
https://results.checkpointspot.asia/results.aspx?CId=17036&RId=3681
Even started at 7am on 29 Oct 2023, and could not speed up due to wind direction, especially in east coast park.
https://results.checkpointspot.asia/results.aspx?CId=17036&RId=3681
On 27th November 2023, I joined SGX Cares Bull Charge Charity Run as company staff, the result is normal, 5.2KM.
Android File Transfer Agent conflicts with Garmin Music, so need to disable it in order to work.
Open the “Activity Monitor” and kill the “Android File Transfer Agent” process. Open “System Preferences” > “Accounts”. Go to the “Login Items” tab of your user. Remove the “Android File Transfer Agent”.
Note: I haven't tried the process.
My print MF634Cx got error E015-0000, Canon support said it is not repairable. But I just got 4 new cartridges, want to reuse the ink. I bought a new MF645Cx, so want to try refilling the cartridges later. There are some refill videos on Internet.
To refill the cartridge, one method is to dig a hole, the second method is to open the cartridge.
Although some people said the number of page used indication will give error, refilled cartridge is still able to be used. Alternatively can buy CRG-054 Chip to replace it.
CRG-054 H Chip for Canon MF641cw MF642cdw MF644cdw LBP622cdw LBP621Cw LBP623Cw
Subcategories:
Chip:
Chip location:
how to refill canon 054 and 054H toner cartridge 2023.Refill canon printer 046, 046H Toner cartridge
Cartridge Refilling 054 canon 621cw color laser printer toner cartridge
Refilling the Canon 054 \ Canon 046 cartridge | how and how to refill the Canon cartridge
Refill toner cartridge Compatible for Canon CRG-045 CRG-046 CRG-054 054H CRG-055 Color cartridge.
How to refill CRG 045 045H CRG 046 046H
dnsmasq
docker-compose file with DHCP enabledCreate Dockerfile as below, the VOLUME /data
is pointing to configuration folder
FROM ubuntu:latest
VOLUME /data
RUN apt update
RUN apt install dnsmasq -y
RUN apt install iproute2 -y
CMD dnsmasq -q -d --conf-file=/data/dnsmasq.conf --dhcp-broadcast
docker-compose.yml
fileMust add cap_add
parameter.
version: '2'
services:
dnsmasq:
container_name: dnsmasq
image: dnsmasq
build:
context: .
dockerfile: Dockerfile.dnsmasq
restart: unless-stopped
volumes:
- /app/dnsmasq/data:/data
networks:
- my_macvlan_250
cap_add:
- NET_ADMIN
networks:
my_macvlan_250:
external: true
This is the same as below command
docker run --cap-add=NET_ADMIN --name dnsmasq -d -it --restart unless-stopped -v /app/dnsmasq/data:/data --network my_macvlan_250 dnsmasq
Even started at 6:45am on 30 Sep 2023, and could not speed up due to wind direction, especially in east coast park.
https://results.checkpointspot.asia/17036/SFFR23KM
Even started at 6:45am on 16 Sep 2023, and twisted my right ankle more than 5 times due to stones on the road.
https://results.checkpointspot.asia/Results.aspx?CId=17036&RId=3664
To trust Synology self generated CA in Linux OS, following steps can be used.
Control Panel => Security
Certificate
tabAdd
buttonsynology
Explore certificate
, then Next
There will be 4 files in the downloaded ZIP file
cert.pem
privkey.pem
syno-ca-cert.pem
syno-ca-privkey.pem
Copy file syno-ca-cert.pem
to server folder and rename it to .crt
cp syno-ca-cert.pem /usr/local/share/ca-certificates/syno-ca-cert.crt
update-ca-certificates
Note: the certificate file name must be .crt
For any services used certificate generated by Synology CA certificate, restart the service
systemctl restart <service>
openssl
commandRun following commands
openssl s_client -connect server_address:443 -CAfile /usr/local/share/ca-certificates/syno-ca-cert.crt
openssl s_client -connect server_address:443 -CApath /etc/ssl/certs
Should return 0 (ok)
Verify return code: 0 (ok)
curl
commandcurl --verbose <URL> --cacert /usr/local/share/ca-certificates/syno-ca-cert.crt
curl --verbose <URL>
After reboot of PVE, network interfaces detected, but no link activated, ip address
command shows all physical interfaces are down, and interfaces LED lights are shut off when loading OS.
Getting permission denied error when run ifup
command, when using python3 /usr/sbin/ifup -a
command, getting error as another instance of this application is already running
After using strace python3 /usr/sbin/ifup -a
command, found that the command tried to access folder /run/network
, but it doesn't exist.
Create folder /run/network
after rebooted, then run command python3 /usr/sbin/ifup -a
to bring up network manually.
Note: This is only a temporary solution, because the folder /run/network
will disappear. Will troubleshoot again when got time.