From 76d272574cc2c0720a4311570e2addff71bf3b94 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sun, 15 Dec 2024 15:58:56 +0100 Subject: [PATCH] default font size (looks better but is smaller :/) --- assets/css/custom.css | 6 +- .../android-winlink-emcom.thumb.png | 3 - .../android_emcom_thumb.png | 3 - .../emcom-android-thunder.thumb.png | 3 + .../posts/2024/74-winlink-on-android/index.md | 107 ------------------ 5 files changed, 6 insertions(+), 116 deletions(-) delete mode 100644 content/posts/2024/74-winlink-on-android/android-winlink-emcom.thumb.png delete mode 100644 content/posts/2024/74-winlink-on-android/android_emcom_thumb.png create mode 100644 content/posts/2024/74-winlink-on-android/emcom-android-thunder.thumb.png delete mode 100644 content/posts/2024/74-winlink-on-android/index.md diff --git a/assets/css/custom.css b/assets/css/custom.css index dbc36cb..7daa991 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -1,7 +1,7 @@ /* Increase the default font size */ -html { - font-size: 15pt; -} +/* html { */ +/* font-size: 15pt; */ +/* } */ /* .toc { */ /* overflow: scroll; */ diff --git a/content/posts/2024/74-winlink-on-android/android-winlink-emcom.thumb.png b/content/posts/2024/74-winlink-on-android/android-winlink-emcom.thumb.png deleted file mode 100644 index 92516a6..0000000 --- a/content/posts/2024/74-winlink-on-android/android-winlink-emcom.thumb.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f856b6a77be2491e7ac0bb14f39ad216a109e655eab8af211066c02131601ec4 -size 45223 diff --git a/content/posts/2024/74-winlink-on-android/android_emcom_thumb.png b/content/posts/2024/74-winlink-on-android/android_emcom_thumb.png deleted file mode 100644 index 01d8e21..0000000 --- a/content/posts/2024/74-winlink-on-android/android_emcom_thumb.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29e0968a86b7cb3747b0efb6942fea5f569cdfd23e0e5195a237e412e7162e44 -size 41633 diff --git a/content/posts/2024/74-winlink-on-android/emcom-android-thunder.thumb.png b/content/posts/2024/74-winlink-on-android/emcom-android-thunder.thumb.png new file mode 100644 index 0000000..d061f1e --- /dev/null +++ b/content/posts/2024/74-winlink-on-android/emcom-android-thunder.thumb.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17425bb5e4663ff3cb0d11019b1a44dcda96a0bbd1c2a108e53d6f734be2204f +size 55003 diff --git a/content/posts/2024/74-winlink-on-android/index.md b/content/posts/2024/74-winlink-on-android/index.md deleted file mode 100644 index 62c4530..0000000 --- a/content/posts/2024/74-winlink-on-android/index.md +++ /dev/null @@ -1,107 +0,0 @@ ---- -title: Winlink on Android -summary: > - Howdy. - The thumbnail was created with Google AI (Imagen 3). -date: 2024-12-07T17:10:03+01:00 -lastmod: 2024-12-08T15:08:16+0000 -categories: - - amateur-radio - - computerstuff -tags: - - Archlinux - - command-line - - Digirig - - Linux - - Mobilinkd - - Networking - - Packet Radio - - Portable - - Vara FM - - Vara HF - - Winlink - - draft_post - -# showBreadcrumbs: true -# showDate: false -# showReadingTime: false -# showWordCount: false -# showPagination: false - -# feed_exclude: true -# site_exclude: true - -# some help -# -# highlighting with highlights -# -# use table, as inline creates a padding around -# and it pushes the text more to the right side (end of screen) -# -# ~~~html {linenos=table,hl_lines="3-6"} -# ~~~html {linenos=inline,hl_lines="1,3-6"} - -draft: true ---- - -I've recently switched from iOS to Android on my smartphone, so I also -wanted to try the Android way of Winlinking again... - -I will use [WoAD](https://woad.sumusltd.com/) for this. - -stop network - -sudo systemctl stop wpa_supplicant@wlan0.service - -flush ip and routes - -sudo ip addr flush dev wlan0 -sudo ip route flush dev wlan0 - -set address - -sudo ip address add 192.168.30.1/24 broadcast + dev wlan0 - -set as UP if not automatic - -sudo ip link set dev wlan0 up - -start dhcpd server - -config: - -option domain-name "mobile"; -default-lease-time 600; -max-lease-time 7200; -authoritative; -log-facility local7; -subnet 192.168.30.0 netmask 255.255.255.0 { -option routers 192.168.30.1; -option subnet-mask 255.255.255.0; -option domain-name "mobile"; -option domain-name-servers 192.168.30.1; -range 192.168.30.2 192.168.30.40; -} - -start with - -sudo systemctl start dhcp4.service - -also start hostap service - -sudo systemctl start hostapd.service - -stop everything and brink back internet on wlan0 - -sudo systemctl stop {hostapd.service,dhcpd4.service} - -sudo ip r flush dev wlan0 -sudo ip a flush dev wlan0 - -check with `ip r` and `ip a` if they are empty - -now again start wpa_supplicant @ wlan0 service - -sudo systemctl start wpa_supplicant@wlan0.service - -you should soon get your old ip address of the network back