Linux 5 - Install Ubuntu along with Win10 (Daul Hard Drive)

By Sheldon L Published at 2019-10-17 Updated at 2019-10-20


Free Space in Win10

Download Ubuntu 18.04 and Make .img to USB

lsblk    # find the location of usb, says 'sdc1'
sudo umount /dev/sdc1 # unmount
lsblk    # must see the output without mount point in front of `sdc1`
sudo dd bs=4M if=~/Downloads/debian-10.1.0-amd64-netinst.iso of=/dev/sdc conv=fdatasync

Installation

Install Nvidia Driver

sudo lshw -C display
sudo apt purge nvida*

ubuntu-drivers devices  # see recommended driver

add-apt-repository ppa:graphics-drivers/ppa # ppa

apt install nvidia-driver-390

lspci | egrep 'VGA|3D'

apt install nvidia-prime # NVIDIA's solution to implementing Optimus usability on Linux. 

reboot
nvidia-smi