|________________________________
| | | | |
wifi 1 port 1 port 2 port 3 port 4
|
|
| DHCP client/port Uplink (TP-Link TL-WR720N)
|_____________________
| | |
wifi 2 port 1 port 2
Dedetok: My Experiences Notes This page contains my experiences using technology. All of information are were working properly on the time when they wrote. You may use them for any purposes.
To make your debian faster to lookup name server, it is better to use local dns cache.
Install dnsmasq# apt-get install dnsmasq
Install NetworkManager# apt-get install network-manager
Edit /etc/NetworkManager/NetworkManager.conf [main]
plugins=ifupdown,keyfile
dns=dnsmasq
Edit /etc/NetworkManager/system-connections/[your connection profile] [ipv4]
dns=8.8.8.8;1.1.1.1;
dns-search=8.8.8.8;1.1.1.1;
method=auto
Restart your network manager# systemctl restart network-manager
Try your local dns cache# dig garasiku.my.id @localhost
# dig google.com @localhost
Tested on Debian 10.4
Due to a recent time change the clock was messed up.
# timedatectl set-local-rtc 0
Reference:
https://superuser.com/questions/1420699/how-to-fix-mariadb-when-it-gets-stuck-during-shutdown-waiting-for-page-cleaner
Add and edit Google Chrome Repository
# cd /etc/apt/sources.list.d/
# touch google.list
# vi google.list
# Google Chrome
deb http://dl.google.com/linux/chrome/deb/ stable main
Add Google Linux Package Signing Keys
# wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add
Update repository and install google chrome
# apt-get install google-chrome-stable
To install Google Earth, add at the end of google.list file or create a new file in folder /etc/apt/source.list.d/
# Google Earth
deb http://dl.google.com/linux/earth/deb/ stable main
Reference: