-
Notifications
You must be signed in to change notification settings - Fork 70
Recovery Mode
Table of Contents generated with DocToc
If SteamOS fails to fully start, or enter the default Big Picture Mode home screen, you may have more serious problems going on. Before continuing below, you will have to boot into recovery mode. To do this, git the ESC key several times as you start your machine. You will reach a GRUB boot menu.
Choose "Advanced options for SteamOS GNU/Linux", which you'll want the first available recovery mode listing near the top. Usually this is the 2nd option after that selection. After some time, the boot process will land you at a root prompt. NOTE: Any commands you enter, should not have the sudo
prefix. Please exercise caution.
You will likely need a working network connection. If you need to install libiw30
and wireless-tools
, you can get that from the Debian repository. Search for a amd64.deb suffix. Despite this, it is probably just easier to connect you machine to a wired network connection.
You can insert something akin to the below into /usr/bin/steamos-autorepair.sh
and reboot your machine. This will give you time to run commands over SSH (if you have this installed). It is not the most clean way, but it will give you access to your already configure WLAN connection without hassle.
plymouth display-message --text="Sleeping for 500 seconds"
sleep 500s
Using a timer:
i=400; while [ $i -gt 0 ]; do plymouth display-message --text="Sleeping for 400 seconds. $i seconds remaining"; i=`expr $i - 1`; sleep 1; done
# List network devices
ifconfig -a
# Example, call DHCP to get an IP address on eth0 (wired connection)
dhclient eth0
# Enable a wireless connection
# The package 'wireless-tools' is not installed by default
# Load the .deb packages onto a USB drive and continue below
# The USB drive should automount under /media/usb0
dpkg -i /media/usb0/libiw30*_amd64.deb
dpkg -i /media/usb0/wireless-tools*_amd64.deb
ifconfig wlan0 up
iwlist wlan0 scan | less
iwconfig wlan0 essid <SSID> key <WIFI_KEY>