[logseq-plugin-git:commit] 2023-07-13T15:45:04.133Z

This commit is contained in:
matze 2023-07-13 17:45:04 +02:00
parent 9986b7ffd7
commit 8bb01c430d
3 changed files with 113 additions and 0 deletions

3
journals/2023_07_13.md Normal file
View File

@ -0,0 +1,3 @@
- Wahoo kickr Core
- 70 x 50 x 30, 22kg+
- => 31.5 kg - Paket, 19.99€

View File

@ -0,0 +1,104 @@
- Oracle Cloud
- Passwort Xqkd$6bVCdEjukc8qkMeY5sV!%DQkta&54zJXyf*
- Jdownloader Settings
- Direct Connection Mode
- https://support.jdownloader.org/Knowledgebase/Article/View/33/0/myjdownloader-advanced-settings
- Port Forward 3129 to Container, and Enable it on Router
- Custom Device IPs
- for running in docker:
- ["10.0.0.101"]
- Aktuell Settings in Compose:
- ```yaml
version: '3'
services:
jdownloader:
image: antlafarge/jdownloader:1.1
restart: always
user: "1000:1000"
volumes:
- /data/jdownloader/downloads:/jdownloader/downloads/
- /data/jdownloader/cfg:/jdownloader/cfg/
environment:
- "JD_EMAIL=tugba.hermans@yandex.com"
- "JD_PASSWORD=ohZakiu8ee"
- "JD_DEVICENAME=CLOUD" # optional
ports:
- "3129:3129" # for direct connection mode
networks:
- web
networks:
web:
external: true
```
- DNS-Rebind-Schutz in Fritz Box deaktivieren
- Heimnetz -> Netwerk -> Netwerkeinstellungen
- DNS-Rebind-Schutz
- ```yaml
*.mydns.jdownloader.org
mydns.jdownloader.org
```
- Custom Proxy List
- ```yaml
[
{
"proxy":
{
"address": "152.67.84.147",
"password": "",
"port": 8388,
"type": "SOCKS5",
"username": "",
"connectMethodPrefered": false,
"preferNativeImplementation": false,
"resolveHostName": true
},
"enabled": true,
"pac": false,
"rangeRequestsSupported": true,
"reconnectSupported": false
},
{
"proxy":
{
"address": "152.67.72.128",
"password": "",
"port": 8388,
"type": "SOCKS5",
"username": "",
"connectMethodPrefered": false,
"preferNativeImplementation": false,
"resolveHostName": true
},
"enabled": true,
"pac": false,
"rangeRequestsSupported": true,
"reconnectSupported": false
},
{
"filter":
{
"entries":
[
"zippyshare.com"
],
"type": "BLACKLIST"
},
"proxy":
{
"address": null,
"password": null,
"port": 80,
"type": "NONE",
"username": null,
"connectMethodPrefered": false,
"preferNativeImplementation": false,
"resolveHostName": false
},
"enabled": true,
"pac": false,
"rangeRequestsSupported": true,
"reconnectSupported": true
}
]
```

View File

@ -0,0 +1,6 @@
- Fixing 'Umount Target is Busy' Error in Linux
- https://linuxhandbook.com/umount-target-busy/#:~:text=this%20problem%20first.-,The%20reason%20behind%20Umount%20target%20is%20busy,t%20allow%20you%20to%20unmount.
- ``sudo lsof /mnt/ext-fast``
- samba is the culprit
- `` sudo service smbd stop``
-