Discord: https://discord.gg/qqPhfh2xeq
Cause: Ubuntu may set network configurations to power-saving mode, thus throttling wifi
- Test by going to https://www.speedtest.net/
- Open Terminal
- Run the following command
$ sudo vim /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
- Set the value of
wifi.powersave
to 2.
- Reboot into Ubuntu
- Run the speed test again https://www.speedtest.net/
- 0: Use default settings
- 1: ignore
- 2: DISABLE power saving (YOU WANT THIS SETTING)
- 3: ENABLE power saving
source: https://www.youtube.com/watch?v=N_e82SuiAYc&list=LL&index=1
Cause: pulseaudio
has not properly started
- Open Terminal
- Run the following commands
$ sudo pulseaudio --kill
$ sudo pulseaudio --start
Cause: Windows and Linux store their times differently in UEFI firmware, causing clock desynchronization
- Boot into Ubuntu
- Open Terminal
- Run the following commands
$ sudo timedatectl set-local-rtc 1 --adjust-system-clock
- Reboot into Windows
- Go to
Start
>Settings
>Time & language
>Date & time
. - Set your timezone if necesarry
- Disable and renable
Set time automatically
in one step
source: https://www.youtube.com/watch?v=A70s-C-yWTQ&list=LL&index=4
Cause: You might be installing an Nvidia driver from the wrong source, but after rebooting, you get greeted by a black screen of death
- Boot your system in recovery mode by selecting
Advanced options for Ubuntu
- Select the first option that lists
(recovery mode)
- Select
resume
- Once you arrive to your desktop, open your terminal and use these commands.
$ dpkg -l | grep -i nvidia
$ sudo apt-get remove --purge '^nvidia-.*'
$ sudo apt-get install ubuntu-desktop
$ echo 'nouveau' | sudo tee -a /etc/modules
- Reboot your system
source: https://askubuntu.com/questions/206283/how-can-i-uninstall-a-nvidia-driver-completely
Cause: Windows and Linux both have access to the same drive, causing a multiple ownership problem. To preserve intergity, Linux refueses to modify the drive, thus creating the error
- Boot into Windows
- Press
Win-Key
+R
, typepowercfg.cpl
and pressEnter
- The 'power options' screen should pop up
- Click on
Choose what the power button does
- Click on
Change settings that are currently unavailable
- Uncheck the
Turn of fast startup (recommended)
option
- Reboot into Ubuntu