Install Steam on Kali Sana
Step 1:
Install Code-Jokey before you start as it is required and makes it run a little better. Credits are in the Script.
#!/bin/bash
#inspired by kochd’s script # installs equivs which is used to generate fake packages sudo apt-get install equivs# creates a file called ‘tmp’ > tmp# appends package info to tmp echo ” Package: jockey-common Priority: optional Section: admin Installed-Size: 728 Maintainer: Martin Pitt <martin.pitt@ubuntu.com> Architecture: all Source: jockey Version: 0.9.7-0ubuntu7 Depends: bash, Description: user interface and desktop integration for driver management Jockey provides a user interface for configuring third-party drivers, such as the Nvidia and ATI fglrx X.org and various Wireless LAN kernel modules. . This package contains the common data shared between the frontends. Python-Version: 2.7 ” >> tmp equivs-build tmp # installs fake package sudo dpkg -i jockey-common_0.9.7-0ubuntu7_all.deb rm tmp jockey-common_0.9.7-0ubuntu7_all.deb |
Step 2:
Download the edited client:In Terminal
dpkg –add-architecture i386
apt-get update
wget https://github.com/GhostSquad57/Steam-Installer-for-Wheezy/raw/master/steam-debian_1.0.0.43-2_all.deb
sudo dpkg -i steam-debian_1.0.0.43-2_all.deb
Step 3:
Run it as RootBrowse to /usr/bin/
find steam and edit the file and in the middle area find this
# Don’t allow running as rootif [ “$(id -u)” == “0” ]; then
show_message –error $”Cannot run as root user” exit 1 fi |
# Don’t allow running as root
if [ “$(id -u)” == “1” ]; then show_message –error $”Cannot run as root user” exit 1 fi |