-
Notifications
You must be signed in to change notification settings - Fork 70
Creating USB installation media in Linux
professorkaos64 edited this page Aug 16, 2016
·
7 revisions
Table of Contents generated with DocToc
###Using unzip (main installers)
- 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
###Using dd (ISO image installations)
- 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
###Using the SteamOS-Mega-Downloader
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.