Revision of How to Create a LiveUSB from Thu, 01/12/2017 - 21:49
The revisions let you track differences between multiple versions of a post.
The goal of this manual is to instruct the user on how to make a bootable USB drive with Trisquel installed.
== Described methods == * Trisquel GNU/Linux (GUI: graphical user interface) * GNU/Linux (terminal) * Windows (GUI) * Mac OS X (terminal)
Note: It is possible to enlarge the images via the button right click of your mouse.
==Trisquel (Graphical)==
Launch System Settings from the main menu.
Select Startup Disk Creator.
Select a source disk image or burned Trisquel disk and a designated device. Click ‘’’Make Startup Disk’’’.
Confirmation will display that the startup drive is complete.
==Terminal (dd of GNU Coreutils)==
$ sudo dd if=/path/to/image.iso of=/dev/sdX bs=8M;sync Note that you want the device name (e.g. /dev/sdx) not the partition name (e.g. /dev/sdx1).
==Windows (Universal USB Installer (GPLv2))== ‘’’This manual is not an endorsement for the use of non-free operating systems. This manual is designed to help users migrate from non-free systems to free ones, as it is the case of Trisquel.’’’
The easiest way to get up an running with USB is to use the USB installer provided by pendrivelinux.com. You’ll need to download and install and follow the instructions. * Insert a USB stick with at least 2GB of free space. * Download Pen Drive Linux’s USB Installer. * Select Trisquel from the dropdown list.
Click ‘Browse’ and open the downloaded ISO file.
Choose the USB drive and click ‘Create’.
==In Mac OS X (Terminal)== ‘’’This manual is not an endorsement for the use of non-free operating systems. This manual is designed to help users migrate from non-free systems to free ones, as it is the case of Trisquel.’’’
Download a Trisquel disc image from our download page.
Open the Terminal from Applications/Utilities.
Convert the .iso file to a .img.
Type (according the name of the path to the file): $ hdiutil convert -format UDRW -o ~/path/to/trisquel.img ~/path/to/trisquel.iso
This will create a file with a .img.dmg extension. Type the following to rename this file. $ mv ~/path/to/trisquel.img.dmg ~/path/to/trisquel.img
To display the list of devices currently attached type: $ diskutil list