Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

PREVIOUS NEXT
Code Example
Shell :: ubuntu server 20.04 list users 
Shell :: linux last login 
Shell :: ubuntu list running applications 
Shell :: bash bc 
Shell :: createa. branch off of development git 
Shell :: snap install slack 
Shell :: turn off screen linux 
Shell :: mpeg-4 aac decoder h.264 decoder for ubuntu download 
Shell :: sourcetree change commit message 
Shell :: count the numbers of directories in a specific directory 
Shell :: remote origin already exists. 
Shell :: remove app with snap 
Shell :: how to turn on hotspot on windows 10 
Shell :: bash make directory 
Shell :: register runner gitlab 
Shell :: install sqlite in ubuntu 
Shell :: unix set current time in file name 
Shell :: open xampp in ubuntu 
Shell :: git abort changes 
Shell :: linux sudo /opt/lampp/lampp start command not found 
Shell :: add and remove users in Linux 
Shell :: docker compose rebuild image 
Shell :: how to install nvm on linux terminal 
Shell :: mount docker volume in container 
Shell :: linux rename multiple files 
Shell :: ubuntu set environment variable permanently 
Shell :: how to return latest version in github 
Shell :: find home dir for user 
Shell :: how to run .sh file in background linux 
Shell :: git ignore 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =