From 8f2ab0235ab8467c54e15babd950d9fdefac3c04 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Tue, 6 Dec 2022 21:57:11 +0100 Subject: [PATCH] update posts --- .../index.md | 24 ------- .../index.md | 66 ------------------- .../index.md | 51 ++++++++++++++ .../index.md | 0 4 files changed, 51 insertions(+), 90 deletions(-) delete mode 100644 content/posts/2022-09-24-installation-of-log4om-on-linux/index.md delete mode 100644 content/posts/2022-10-24-changing-network-metrics-on-fedora-36/index.md create mode 100644 content/posts/2022-11-24-changing-network-metrics-on-linux/index.md rename content/posts/{2022-11-26-change-a-submodule => 2022-11-26-change-git-submodule-url}/index.md (100%) diff --git a/content/posts/2022-09-24-installation-of-log4om-on-linux/index.md b/content/posts/2022-09-24-installation-of-log4om-on-linux/index.md deleted file mode 100644 index cf45309..0000000 --- a/content/posts/2022-09-24-installation-of-log4om-on-linux/index.md +++ /dev/null @@ -1,24 +0,0 @@ -+++ -title = "Installation of Log4OM on Linux" -summary = """This describes my way of installing Log4OM on my linux machine. -I'm using Fedora 36 in this article.""" -date = "2022-09-24T10:39:57+02:00" -#lastmod = "" -categories = ["amateur-radio"] -tags = ["emulation","wine","mono", "linux", "windows"] -draft = true - -+++ - -## on lutris - -- install log4om - -- bottom line -> wine configuration - select win7 - -- bottom line -> run exe within prefix - install ndp .NET 4.7.2 - -- winetricks -> allfonts - diff --git a/content/posts/2022-10-24-changing-network-metrics-on-fedora-36/index.md b/content/posts/2022-10-24-changing-network-metrics-on-fedora-36/index.md deleted file mode 100644 index 490b1c8..0000000 --- a/content/posts/2022-10-24-changing-network-metrics-on-fedora-36/index.md +++ /dev/null @@ -1,66 +0,0 @@ -+++ -title = "Network-metrics on Fedora 36" -summary = """quick n dirty...""" -date = "2022-10-23T20:15:44+02:00" -lastmod = "2022-12-04T22:30:18+01:00" -categories = ["computerstuff"] -tags = ["fedora","linux","networking"] - -draft = true - -+++ - -## first - -If you are using NetworkManager, the proper way to change the metric for the default route is to modify the connection associated with interface enp0s3 in this way: - -~~~console -$ nmcli connection modify ipv4.route-metric 1 -~~~ - -and then re-activate the connection: - -~~~console -$ nmcli connection up -~~~ - -You can find the value for in the output of nmcli connection. - -## second - -~~~console -$ nmcli connection -NAME UUID TYPE DEVICE > -Magneto_5G 923ab10b-be81-4668-9aab-9602f11db2e5 wifi wlx00259ce03> -Alfodr b2bcc61c-19df-41f0-9790-ad1f7f8113f1 wifi wlo1 > -Kabelgebundene Verbindung 1 c75abc26-19eb-3fec-81b1-c4716b39a8f1 ethernet -- -~~~ - -~~~console -$ nmcli connection edit Alfodr - -===| nmcli interaktive Verbindungsbearbeitung |=== - -Bestehende Verbindung »802-11-wireless« wird bearbeitet: »Alfodr« - -Tippen Sie »help« oder »?«, um verfügbare Befehle anzuzeigen. -Geben Sie »print« ein, um alle Verbindungseigenschaften anzuzeigen. -Tippen Sie »describe [.]« für eine detaillierte Eigenschaftenbeschreibung. - -Sie können die folgenden Einstellungen bearbeiten: connection, 802-11-wireless (wifi), 802-11-wireless-security (wifi-sec), 802-1x, ethtool, match, ipv4, ipv6, hostname, tc, proxy -nmcli> set ipv4.route-metric 599 -nmcli> save -nmcli> quit -~~~ - -~~~console -$ sudo systemctl restart NetworkManager -~~~ - -Check routing table with - -~~~console -$ ip route -~~~ - -(which can also be written as `ip r`) diff --git a/content/posts/2022-11-24-changing-network-metrics-on-linux/index.md b/content/posts/2022-11-24-changing-network-metrics-on-linux/index.md new file mode 100644 index 0000000..86f283a --- /dev/null +++ b/content/posts/2022-11-24-changing-network-metrics-on-linux/index.md @@ -0,0 +1,51 @@ ++++ +title = "Changing network metrics on linux" +summary = """Because I use two network interfaces with more subnets/routes on one of them. +But I use the other interface for internet because of speed...""" +date = "2022-11-24T20:15:44+02:00" +lastmod = "2022-12-06T21:49:34+01:00" +categories = ["computerstuff"] +tags = ["linux","networking"] + ++++ + +Check for connection names. + +~~~console +$ nmcli connection +NAME UUID TYPE DEVICE > +Magneto_5G 923ab10b-be81-4668-9aab-************ wifi wlx00259ce03> +Alfodr b2bcc61c-19df-41f0-9790-************ wifi wlo1 > +Kabelgebundene Verbindung 1 c75abc26-19eb-3fec-81b1-************ ethernet -- +~~~ + +Start editing the affected connection: + +{{< highlight console "hl_lines=12-14" >}} +$ nmcli connection edit Magneto_5G + +===| nmcli interaktive Verbindungsbearbeitung |=== + +Bestehende Verbindung »802-11-wireless« wird bearbeitet: »Magneto_5G« + +Tippen Sie »help« oder »?«, um verfügbare Befehle anzuzeigen. +Geben Sie »print« ein, um alle Verbindungseigenschaften anzuzeigen. +Tippen Sie »describe [.]« für eine detaillierte Eigenschaftenbeschreibung. + +Sie können die folgenden Einstellungen bearbeiten: connection, 802-11-wireless (wifi), 802-11-wireless-security (wifi-sec), 802-1x, ethtool, match, ipv4, ipv6, hostname, tc, proxy +nmcli> set ipv4.route-metric 599 +nmcli> save +nmcli> quit +{{< /highlight >}} + +~~~console +$ sudo systemctl restart NetworkManager +~~~ + +Check routing table with + +~~~console +$ ip route +~~~ + +Source: \ No newline at end of file diff --git a/content/posts/2022-11-26-change-a-submodule/index.md b/content/posts/2022-11-26-change-git-submodule-url/index.md similarity index 100% rename from content/posts/2022-11-26-change-a-submodule/index.md rename to content/posts/2022-11-26-change-git-submodule-url/index.md