= Introduction = ||<
><>|| Ubuntu and other derivatives provide minimal install from the iso. This is an attempt to install minimal-unity from [[http://cdimage.ubuntu.com/netboot/ | netboot]] cd. == Partitioning & Installation == After booting netboot iso from usb, choose manual partitioning and then choose one '''root''' (/) and one '''swap''' partition. Then follow the on-screen guide. When you reach this screen do not select anything and complete the installation. After reboot you will boot into tty. {OK} We are not going to cover step by step of entire installation here. For that look elsewhere. == Disable Recommends == Login in tty. From the console run: {{{#!highlight bash cd /etc/apt/apt.conf.d sudo touch 99local sudo nano 99local }}} Type in the following: {{{#!highlight ini APT::Install-Recommends "0"; APT::Install-Suggests "0"; }}} Save and quit nano – '''CTRL+O''', '''CTRL+X''' == Graphic Stack, Fonts & Inputs == Xorg: {{{#!highlight bash sudo apt-get install xserver-xorg-core xfonts-base xinit x11-xserver-utils x11-utils sudo apt-get install x11-session-utils xauth }}} Video Driver: {{{#!highlight bash sudo apt-get install xserver-xorg-video-intel }}} {i} Choose your own driver here (ex. ati, nouveau, radeon, vesa, amdgpu), if unsure type xserver-xorg-video-all DRI/Mesa: {{{#!highlight bash sudo apt-get install libgl1-mesa-dri mesa-utils }}} Fonts: {{{#!highlight bash apt-get install xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable xfonts-utils }}} Input Driver: {{{#!highlight bash sudo apt-get install xinput xkb-data xserver-xorg-input-libinput }}} {i} If unsure, use xserver-xorg-input-all == Dbus == {{{#!highlight bash sudo apt-get install dbus dbus-x11 }}} == Unity, Unity Session == {{{#!highlight bash sudo apt-get install unity unity-session notify-osd libnotify-bin sudo apt-get install ubuntu-settings gsettings-ubuntu-schemas sudo apt-get install unity-lens-applications unity-lens-files zeitgeist-datahub # This will pull evolution-data-server, pulseaudio, upower and all sudo apt-get install indicator-session indicator-power indicator-sound indicator-datetime # App-indicators and global menu sudo apt-get install indicator-application indicator-appmenu # This will pull lots of other packages like gnome-bluetooth, cheese and all sudo apt-get install unity-control-center hud }}} == Display Manager == {{{#!highlight bash sudo apt-get install lightdm unity-greeter }}} == Artwork == {{{#!highlight bash sudo apt-get install ubuntu-artwork fonts-ubuntu sudo apt-get install plymouth-theme-ubuntu-logo plymouth-theme-ubuntu-text }}} == Gvfs, Policykit & Keyrings == {{{#!highlight bash # For automatic mount of usb disks sudo apt-get install gvfs gvfs-backends gvfs-bin policykit-1 udisks2 # No password when mounting internal disks/partition: sudo apt-get install policykit-1-gnome policykit-desktop-privileges # Gnome-keyrings (optional ?) sudo apt-get install gnome-keyring libpam-gnome-keyring }}} == File manager, Terminal, Text editor == {{{#!highlight bash sudo apt-get install nautilus gnome-terminal gedit nautilus-extension-gnome-terminal }}} == Network Manager == {{{#!highlight bash # Network-manager, nm-applet sudo apt-get install network-manager-gnome network-manager # Note: If you use wifi during installation, it will create a nplan@wpasupplicant.service # and will take control of wifi interface during boot. Hence it is best to disable or # completely remove the service and let network-manager handle it. }}} == Package Manager == {{{#!highlight bash sudo apt-get install gdebi synaptic apt-xapian-index software-properties-gtk }}} == Misc Utilities == {{{#!highlight bash # Gnupg, dirmngr sudo apt-get install gnupg dirmngr # xdg-user-dirs sudo apt-get install xdg-user-dirs-gtk # Gnome system tools sudo apt-get install gnome-system-log gnome-system-monitor gnome-disk-utility # Start up application Manager sudo apt-get install gnome-startup-applications # Image thumbnails in nautilus sudo apt-get install libgdk-pixbuf2.0-bin }}} == Multimedia == {{{#!highlight bash # To play mp3 in rhythmbox with libav sudo apt-get install gstreamer1.0-libav gstreamer1.0-pulseaudio }}}