This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suraj@vayuputra:~$ steam | |
ERROR: ld.so: object '/usr/lib/x86_64-linux-gnu/libGLEW.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. | |
[2021-09-05 00:04:42] Startup - updater built Apr 9 2019 22:48:20 | |
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt". | |
libGL error: No matching fbConfigs or visuals found | |
libGL error: failed to load driver: swrast | |
SteamUpdateUI: An X Error occurred | |
X Error of failed request: BadValue (integer parameter out of range for operation) | |
Major opcode of failed request: 152 (GLX) | |
Minor opcode of failed request: 3 (X_GLXCreateContext) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## List of commands I am running to setup my Ubuntu system ########################################################## | |
## Will be used in the future to auto-deploy setups | |
# Upgrade system | |
sudo apt update && sudo apt upgrade | |
# Perform firmware update (for UEFI BIOS, Thunderbolt devices, connected I/0) | |
sudo service fwupd start | |
sudo fwupdmgr refresh --force | |
sudo fwupdmgr update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# THIS IS STILL A WORK IN PROGRESS! | |
# Install ARCH Linux with a whole-disk encrypted BTRFS file-system on UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/download/ | |
# Copy to a USB drive (Replace X with device number of USB) | |
dd bs=4M if=path/to/archlinux.iso of=/dev/sdX status=progress oflag=sync |