update posts

main
Dominic Reich 2 years ago
parent dda892ccab
commit 8f2ab0235a
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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

@ -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 <connection-name> ipv4.route-metric 1
~~~
and then re-activate the connection:
~~~console
$ nmcli connection up <connection-name>
~~~
You can find the value for <connection-name> 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 [<Einstellung>.<Eigenschaft>]« 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`)

@ -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 [<Einstellung>.<Eigenschaft>]« 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: <https://dev.to/emamirazavi/how-to-set-metric-in-networkmanager-system-4525>
Loading…
Cancel
Save