Si estas trabajando como root en Linux y quieres ejecutar Steam te aparecerá el mensaje "Cannot run as root user".
Para poder ejecutar Steam como root, abre con un editor de texto el archivo /usr/bin/steam y busca las siguientes lineas.
# Don't allow running as root if [ "$(id -u)" == "0" ]; then show_message --error $"Cannot run as root user" exit 1 fi
Comentarealas, debe quedar así.
# Don't allow running as root #if [ "$(id -u)" == "0" ]; then # show_message --error $"Cannot run as root user" # exit 1 #fi
Grabalo y ahora podrás ejecutar Steam como root.