___  ___    _ _    _  _ _____   _____
 / __|/ _ \  | | |  | || |_ _\ \ / / __|
| (_ | (_) | |_  _| | __ || | \ V /| _|
 \___|\___/    |_|  |_||_|___| \_/ |___|

 --- A GOPHER-LIKE INTERFACE FOR HIVE BLOCKCHAIN ---

LINUX solved issues. [bk]

BY: @oneshot | CREATED: Jan. 13, 2025, 6:05 a.m. | VOTES: 2 | PAYOUT: $0.00 | [ VOTE ]

Down on this page I will keep track (on a sort of live/keep_in_progess-mode) of the best trick solutions that helped me on solving some kind of Linux issues on my day by day basis user life.

# This file is managed by man:systemd-resolved(8). Do not edit.
#
# This is a dynamic resolv.conf file for connecting local clients to the
# internal DNS stub resolver of systemd-resolved. This file lists all
# configured search domains.
#
# Run "resolvectl status" to see details about the uplink DNS servers
# currently in use.
#
# Third party programs must not access this file directly, but only through the
# symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a different way,
# replace this symlink by a static file or a different symlink.
#
# See man:systemd-resolved.service(8) for details about the supported modes of
# operation for /etc/resolv.conf.

# nameserver 127.0.0.53
# options edns0 trust-ad
# search homenet.telecomitalia.it

#IPv4
nameserver 8.8.8.8
nameserver 8.8.4.4

#IPv6
nameserver 2001:4860:4860::8888
nameserver 2001:4860:4860::8844

nameserver 2001:4860:4860:0:0:0:0:8888
nameserver 2001:4860:4860:0:0:0:0:8844

Here below is how I proceeded on my "Linux Mint 20.3" system running systemd-resolved to maintain customizations and prevent overwriting by processes or daemons. The first step is to run the following two commands:

# systemctl disable systemd-resolved
# systemctl stop systemd-resolved

It is also necessary a similar intervention on the NetworkManager daemon by editing the /etc/NetworkManager/NetworkManager.conf integrating it with the addition of the follow two lines under the [main] section:

dns=none
rc-manager=unmanaged

As last trick it could be necessary to replace the bare /etc/resolv.conf file with a symlink to your custom one:

# ln -sf /etc/resolv.conf.custom /etc/resolv.conf

[IMAGE: https://files.peakd.com/file/peakd-hive/oneshot/23t79QNZ2orMQhag6VetEnph7UdWck4EAZswJ5pZ7xz5HrC9M1bAYXT4wuT8hrbyMDAfx.png]

[IMAGE: https://files.peakd.com/file/peakd-hive/oneshot/243qWLWT4w5D3vRxJRqYCukCM7TESc1o9aubfiqAvN7Ej2wawWBw9NrAMkvXRnVBb68Vx.jpg]
And here below the exact answer to the question:

[IMAGE: https://files.peakd.com/file/peakd-hive/oneshot/23uRFsazb1a8zWBvuJyQLezbyPJMgNsJMbeqe61MxQCUhTRXWDhr2xtqU6jG9mo9UNzq8.jpg]

TAGS: [ #linux ] [ #configure ] [ #settings ] [ #opensource ] [ #freesoftware ]

Replies

NO REPLIES FOUND.

[ BACK TO TRENDING ] [ BACK TO MENU ]
CMD>