-
Notifications
You must be signed in to change notification settings - Fork 70
Creating USB installation media in Linux
Eduardo Horst edited this page Dec 16, 2018
·
7 revisions
Table of Contents generated with DocToc
- Using file roller
- Using unzip (main installers)
- Using dd (ISO image installations)
- Using the SteamOS-Mega-Downloader
File Roller is included in most distros, especially GNOME-variants. Recently I have had a bit of trouble having the installer find the USB drive as a CDROM device / install 100% correctly. The method that always worked reliably, was the GUI tool, file-roller. Simply format a drive as FAT32 using parted/gparted, and double click the ZIP archive. Extract the contents to the USB drive path.
- Locate you usb drive (e.g. /dev/sdX)
lsblk
- Download either the standard or custom installer from the SteamOS download page
- Locate the zip file in your GUI environment or in a terminal window.
- unzip the contents directly to a formatted / clean FAT32-formatted USB drive, using a GUI archive utility, or a command such as below.
sudo unzip MyZipFile.zip -d /dev/sdX
- Download the installation media desired from Valve or the community installer pages
- Open a terminal window and use the following syntax below.
Locate you usb drive (e.g. /dev/sdX)
lsblk
Create the image
sudo dd if=/path/to/installation/media.iso of=/dev/sdX
A fan-made downloader tool is available to download, verify, and image SteamOS to a USB drive or DVD disc (ISO images only). For more information, please see the wiki page over at SteamOS-Tools.