I am currently using Zorin OS 12.4 Core as the only Operating System on my ThinkPad X1 Carbon Gen 4 (20FC). I am trying install either Ubuntu 18.04.1 LTS or Ubuntu 18.10 on my pc and it says that that I need either a DVD drive or a USB port for the installer media. I tried to get it onto a USB but it won't let me install it to a USB. How do I install either Ubuntu 18.04.1 LTS or Ubuntu 18.10 on to my USB? DownloadUbuntuDesktop.jpg ImageBurningSetup.jpg
Asked
Active
Viewed 211 times
2 Answers
2
For a simple installer flash drive that will boot in UEFI:
Insert flash drive, note it's location, likely
sdb.Download an Ubuntu ISO file.
cdto its directory.Run in terminal:
sudo dd if=isofilename.iso of=/dev/sdb(assuming
sdbis the USB)The process will take a while.
When done, boot Ubuntu from the USB flash drive in UEFI mode and install.
BeastOfCaerbannog
- 16,703
C.S.Cameron
- 20,530
- 12
- 78
- 125
1
You can install mkusb with the following commands in a terminal window. Zorin is similar enough to Ubuntu so that the same commands work (to install and run mkusb).
sudo add-apt-repository ppa:mkusb/ppa # and press Enter
sudo apt-get update
sudo apt-get install mkusb mkusb-nox usb-pack-efi
You can start mkusb
- from the menu or
from the command line in a terminal window
mkusb file.isoor easier (more directly to version 12,
dusdus file.iso
and it will help you to identify and select the target device.
There are more details at help.ubuntu.com/community/mkusb
sudodus
- 47,684