Skip to content

Instantly share code, notes, and snippets.

@alixedi
Forked from hanbzu/usbstartup.sh
Last active August 29, 2015 14:14
Show Gist options
  • Select an option

  • Save alixedi/4c927896d87001af49f8 to your computer and use it in GitHub Desktop.

Select an option

Save alixedi/4c927896d87001af49f8 to your computer and use it in GitHub Desktop.
# The Ubuntu USB startup creator often crashes.
# This is an alternate way of doing the same process through the command line
# First plug in the USB pendrive. It will mount automatically
# Then check where it is (which device)
df
# Let's say we see it's in /dev/sdb1
# Then we have to use /dev/sdb and NOT /dev/sdb1
# Unmount it
sudo umount /dev/sdb
# And create the startup disk
sudo dd if=lubuntu-13.10-desktop-i386.iso of=/dev/sdb bs=1M
# Cleanup
sync
eject /dev/sdc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment