Horje
slow internet wifi speed on ubuntu 18.04 Code Example
slow internet wifi speed on ubuntu 18.04
# 1st Solution: Fix the bug in Debian Avahi-daemon
sudo vim /etc/nsswitch.conf
# change hosts from files mdns4_minimal [NOTFOUND=return] dns to following
hosts:          files dns
# save and restart

# 2nd Solution: Disable IPv6 support
sudo su
echo "#disable ipv6" >> /etc/sysctl.conf
echo "net.ipv6.conf.all.disable_ipv6 = 1" >> /etc/sysctl.conf
echo "net.ipv6.conf.default.disable_ipv6 = 1" >> /etc/sysctl.conf
echo "net.ipv6.conf.lo.disable_ipv6 = 1" >> /etc/sysctl.conf
# Restart the computer




Shell

Related
makefile ifeq or Code Example makefile ifeq or Code Example
install tailwind Code Example install tailwind Code Example
ffmpeg mkv to mp4 Code Example ffmpeg mkv to mp4 Code Example
ubuntu set dns terminal Code Example ubuntu set dns terminal Code Example
install pug Code Example install pug Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12