We’ve just reached the 30th anniversary of the Internet Relay Chat (IRC) — making it one of the longest-lived communication protocols still in use on the internet today. It’s a time for not only sharing some memories, but also marveling at the traits that gave IRC its great longevity. IRC’s creator Jarkko Oikarinen has attributed …
« Tu as vu dans le CMS ? On va éditer ce week-end l'article numéro 25.000. » Stupeur et étonnement. Vous lisez bien le 25.000e article de Toolinux le (...)
pas mal ce soft
Since Fedora uses NetworkManager
to handle its resolv.conf
and not resolvconf
like debian would've, it's a bit more shady but this does the trick:
[root@groar etc] # cat /etc/resolv.conf
# Generated by NetworkManager
search mycustomdomain.com
nameserver myinternalDNSIPaddres
nameserver 8.8.8.8
nameserver 9.9.9.9
options use-vc
[root@groar etc] # tail -4 /etc/sysconfig/network-scripts/network-functions
grep -iq "options use-vc" /etc/resolv.conf
if [ $? -ne 0 ]; then
echo "options use-vc" >> /etc/resolv.conf
fi