Last active
November 21, 2019 17:54
-
-
Save da-moon/bb28c7061155377a0fdb5b6fe47c3c09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://askubuntu.com/questions/1000667/ubuntu-network-driver-crashing-on-wifi/1000780 | |
https://www.reddit.com/r/SurfaceLinux/comments/9yt16i/surface_pro_3_ubuntu_update_on_wifi_issues/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://extensions.gnome.org/extension/615/appindicator-support/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://discuss.linuxcontainers.org/t/using-lxd-on-your-chromebook/3823 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Surface Pro Linux | |
## Kernel | |
Recommended: 4.16+ | |
## Wifi | |
Get the latest drivers | |
``` | |
git clone git://git.marvell.com/mwifiex-firmware.git | |
mkdir -p /lib/firmware/mrvl/ | |
cp mwifiex-firmware/mrvl/* /lib/firmware/mrvl/ | |
``` | |
disable power saver | |
``` | |
vim /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf | |
``` | |
``` | |
[connection] | |
wifi.powersave = 2 | |
[device] | |
wifi.scan-rand-mac-address=false | |
``` | |
## DPI | |
xorg config: | |
``` | |
vim /etc/X11/xorg.conf.d/90-monitor.conf | |
``` | |
``` | |
Section "Monitor" | |
Identifier "Monitor0" | |
DisplaySize 259 173 # In millimeters | |
EndSection | |
``` | |
xinit: | |
``` | |
vim ~/.xinitrc | |
``` | |
``` | |
xrandr --dpi 192 | |
exec i3 | |
``` | |
XResources | |
``` | |
vim ~/.Xresources | |
``` | |
``` | |
Xft.dpi: 192 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment