Skip to content

Instantly share code, notes, and snippets.

@yanbab
Last active July 6, 2019 18:56
Show Gist options
  • Save yanbab/ebcf3fe63d8d77c57e47f9b73901f494 to your computer and use it in GitHub Desktop.
Save yanbab/ebcf3fe63d8d77c57e47f9b73901f494 to your computer and use it in GitHub Desktop.
Setup a minimal Ubuntu 19.04

Console resolution

Add 'nomodeset' in /etc/default/grub :

GRUB_CMDLINE_LINUX_DEFAULT="splash quiet nomodeset" 

Run update-grub to save change

Console font

sudo dpkg-reconfigure console-setup

Console keyboard

sudo dpkg-reconfigure keyboard-configuration

avoid installing recommended packages

create /etc/apt/apt.conf.d/90no-recommends :

APT::Install-Recommends "0";
APT::Install-Suggests "0";
Acquire::Languages "none"; 

** Remove Frequent/All button in gnome shell**

gsettings set org.gnome.desktop.privacy remember-app-usage false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment