[RELEASE] Steam Launcher - Start Steam Big Picture Mode from within Kodi
I just had to rebuild my box after my system along with my SSD died. All new hardware. Using a GT 710 instead of my old GT 430. Still using AMD for my processor. I installed Kodinuntu, then upgraded to Xenial and Jarvis. Did all the instructions here like before, but when I log in, it's not going to the OpenBox session. If I launch Steam (both from terminal using the DISPLAY=:0 steam command or via the script), it just loads a black screen but I can hear Big Screen music in the background. If I log off Kodi and choose to log into the OpenBox session, I just get a black screen with a cursor instead of Kodi. I can't seem to find a fix. Here is my notes on the basic setup that I did for my system (important info X'd out). I have other things on there like mame and mednafen emulators as well. It worked fine in this last configuration.


- Install Kodibuntu. Create a 15GB (15360MB) primary / partition at the beginning and 4GB (4096MB) primary swap partition at the end with the remaining sandwiched primary partition becoming the /home partition.
- After reboot, it is normal to see the error popup "Kodi needs hardware accelerated OpenGL rendering."

- SSH into the server and install updated Nvidia drivers. Uninstall nvidia-prime as it is not supported by my hardware.
sudo apt-get purge nvidia*
sudo apt-get install python-software-properties pkg-config
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update && sudo apt-get install nvidia-367 nvidia-settings libvdpau1
sudo apt-get remove nvidia-prime

- Update Kodi and uninstall tvheadend:
sudo apt-get install kodi
sudo apt-get remove tvheadend

- Update system to current and reboot. Install the new lsb-release configuration file. You may need to reboot and install linux-firmware update separate:
sudo apt-get dist-upgrade
sudo reboot

- Upgrade to Ubuntu to Xenial locally. Hit CTRL-ALT-F1 for terminal. Allow services to restart without asking. Install all new configuration files. For lirc, choose Windows Media Center for the remote control and none for the IR transmitter. Remove old packages then allow it to restart. It will take 1 minute before it restarts.
sudo apt-get install update-manager-core
sudo do-release-upgrade
; sudo do-release-upgrade -d # if Ubuntu cannot find Xenial.

- Re-enable Kodi and Nvidia sources by uncommenting the lines with xenial in them, then reinstall them. Also remove unsupported tvheadend source:
sudo nano /etc/apt/sources.list.d/kodi.list
sudo nano /etc/apt/sources.list.d/graphics-drivers-ppa-trusty.list
sudo rm /etc/apt/sources.list.d/tvheadend.*
sudo apt-get update && sudo apt-get install kodi nvidia-364 nvidia-settings libvdpau1

- At the login screen, choose Kodi from the menu at top right, then login and confirm Kodi is working.
- SSH in and clean up orphaned files:
sudo apt-get autoremove
sudo apt-get autoclean

- Install pulseaudio. It can later be tested after Kodi is running using "speaker-test -c6 -twav"
sudo mv /etc/apt/preferences.d/libasound2-plugins.pref /etc/apt/preferences.d/libasound2-plugins.pref.bak && sudo mv /etc/apt/preferences.d/pulseaudio.pref /etc/apt/preferences.d/pulseaudio.pref.bak
sudo apt-get install pulseaudio libasound2-plugins
sudo nano /etc/pulse/daemon.conf
# Change the following lines.
# resample-method = speex-float-5 ; default speex-float-1
# default-sample-format = float32ne ; default s16le
# default-sample-channels = 5 ; default 2
sudo nano /etc/pulse/default.pa
# Add the below just underneath "#load-module module-alsa-sink"
# load-module module-alsa-sink device=hw:0,7

- Upload /etc/X11/edid.bin and /etc/X11/xorg.conf so that it can load the desktop when even the TV is off.

- Disable core files from getting generated in the home direcry:
sudo nano /etc/security/limits.conf
# Add the following to the bottom
# * - core 0

- Install Steam, wmctrl, and powerwake for the WOL script:
sudo apt-get install steam wmctrl powerwake

- Enable Openbox and set as default session and have it run Kodi:
sudo cp /usr/share/xsessions/hidden/openbox.desktop /usr/share/xsessions/
sudo dbus-send --system --type=method_call --print-reply --dest=org.freedesktop.Accounts /org/freedesktop/Accounts/User1000 org.freedesktop.Accounts.User.SetXSession string:openbox
mkdir -p $HOME/.config/openbox/ && echo "export DISPLAY=:0" >> $HOME/.config/openbox/autostart.sh && echo "xsetroot -solid black &" >> $HOME/.config/openbox/autostart.sh && echo "/usr/bin/kodi &" >> $HOME/.config/openbox/autostart.sh && chmod +x $HOME/.config/openbox/autostart.sh

- Install Valves X-Box controller drivers:
sudo apt-add-repository ppa:mdeslaur/steamos
sudo apt-get update && sudo apt-get install steamos-xpad-dkms

- Make sure the Valve driver loads:
sudo nano /etc/rc.local && sudo chmod +x /etc/rc.local
# Add the beloe just above "exit 0"
# (until [ "`lsmod | grep xpad`" ] ; do sleep 1 ; done ; rmmod xpad && modprobe xpad)&
Reply


Messages In This Thread
RE: [RELEASE] Steam Launcher - by DJ_Izumi - 2013-04-26, 06:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-04-26, 23:55
RE: [RELEASE] Steam Launcher - by DJ_Izumi - 2013-05-11, 19:55
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-11, 05:27
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-11, 06:39
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-11, 08:13
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-11, 10:07
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-12, 04:18
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-12, 05:06
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-12, 05:48
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-12, 06:29
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-12, 08:55
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-12, 08:58
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-12, 09:56
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-12, 10:49
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-13, 00:15
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-13, 04:02
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-13, 13:02
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-14, 08:39
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-14, 09:00
RE: [RELEASE] Steam Launcher - by inque54 - 2013-05-14, 09:35
RE: [RELEASE] Steam Launcher - by K3v1 - 2013-05-15, 21:14
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-15, 21:36
RE: [RELEASE] Steam Launcher - by K3v1 - 2013-05-16, 14:13
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-16, 23:37
RE: [RELEASE] Steam Launcher - by K3v1 - 2013-05-20, 20:04
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-23, 10:58
RE: [RELEASE] Steam Launcher - by bassdal - 2013-05-29, 00:17
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-29, 01:34
RE: [RELEASE] Steam Launcher - by bassdal - 2013-05-29, 02:50
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-05-29, 04:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-06-10, 08:41
RE: [RELEASE] Steam Launcher - by mohanman - 2013-07-07, 01:20
RE: [RELEASE] Steam Launcher - by mohanman - 2013-07-11, 13:18
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-12, 01:08
RE: [RELEASE] Steam Launcher - by relaxis - 2013-07-09, 11:38
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-09, 12:38
RE: [RELEASE] Steam Launcher - by Stildawn - 2013-07-13, 03:15
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-13, 06:11
RE: [RELEASE] Steam Launcher - by Stildawn - 2013-07-14, 22:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-14, 23:45
RE: [RELEASE] Steam Launcher - by Stildawn - 2013-07-15, 00:27
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-17, 09:43
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-18, 06:33
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-07-18, 15:21
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-08-03, 09:05
RE: [RELEASE] Steam Launcher - by NorDemoniac - 2013-08-24, 15:19
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-08-25, 04:46
RE: [RELEASE] Steam Launcher - by NorDemoniac - 2013-08-26, 12:28
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-08-29, 18:30
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-08-29, 23:39
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-08-30, 00:01
RE: [RELEASE] Steam Launcher - by xeibo - 2013-09-01, 15:58
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-01, 22:45
RE: [RELEASE] Steam Launcher - by Megatron - 2013-09-02, 05:38
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-02, 08:43
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-04, 09:24
RE: [RELEASE] Steam Launcher - by xeibo - 2013-09-04, 14:48
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-04, 23:55
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-09-05, 03:19
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-05, 04:19
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-09-05, 04:59
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-05, 14:38
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-06, 15:29
RE: [RELEASE] Steam Launcher - by buymeapc - 2013-09-06, 18:49
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-07, 02:37
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-09-07, 20:39
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-09-14, 11:24
RE: [RELEASE] Steam Launcher - by edru - 2013-09-18, 04:56
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-18, 08:37
RE: [RELEASE] Steam Launcher - by bwall244 - 2013-09-26, 01:00
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-09-26, 01:09
RE: [RELEASE] Steam Launcher - by aoaaron - 2013-10-04, 02:39
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-04, 07:07
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-10-04, 02:43
RE: [RELEASE] Steam Launcher - by aoaaron - 2013-10-04, 18:19
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-05, 01:36
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-23, 05:43
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-10-23, 20:03
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-24, 05:35
RE: [RELEASE] Steam Launcher - by Booza - 2013-10-26, 00:58
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-10-26, 01:30
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-26, 08:30
RE: [RELEASE] Steam Launcher - by MeMeMe - 2013-10-26, 14:11
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-10-27, 10:05
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-11-02, 02:08
RE: [RELEASE] Steam Launcher - by Booza - 2013-11-03, 19:17
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-11-03, 20:44
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-11-04, 08:00
RE: [RELEASE] Steam Launcher - by culprit - 2013-11-06, 23:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-11-07, 02:50
RE: [RELEASE] Steam Launcher - by culprit - 2013-11-07, 09:10
RE: [RELEASE] Steam Launcher - by wagnumpi - 2013-11-09, 01:24
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-11-09, 01:34
RE: [RELEASE] Steam Launcher - by wagnumpi - 2013-11-09, 14:03
RE: [RELEASE] Steam Launcher - by DJ_Izumi - 2013-12-05, 03:36
RE: [RELEASE] Steam Launcher - by BraveBuc - 2013-12-06, 06:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-06, 12:41
RE: [RELEASE] Steam Launcher - by BraveBuc - 2013-12-06, 15:50
RE: [RELEASE] Steam Launcher - by bs0d - 2013-12-13, 05:21
RE: [RELEASE] Steam Launcher - by jeayese - 2013-12-13, 06:03
RE: [RELEASE] Steam Launcher - by Excelsis - 2013-12-13, 11:30
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-14, 00:45
RE: [RELEASE] Steam Launcher - by Excelsis - 2013-12-14, 12:34
RE: [RELEASE] Steam Launcher - by bakito - 2013-12-19, 20:10
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-20, 00:28
RE: [RELEASE] Steam Launcher - by ComeGetIt - 2013-12-20, 10:33
RE: [RELEASE] Steam Launcher - by DJ_Izumi - 2013-12-20, 19:39
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-21, 00:20
RE: [RELEASE] Steam Launcher - by DJ_Izumi - 2013-12-21, 00:27
RE: [RELEASE] Steam Launcher - by ComeGetIt - 2013-12-22, 11:47
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-22, 23:51
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-23, 14:49
RE: [RELEASE] Steam Launcher - by teeedubb - 2013-12-25, 04:07
Error on load - by easytc - 2014-08-17, 12:52
RE: [RELEASE] Steam Launcher - Start Steam Big Picture Mode from within Kodi - by vampyrex13 - 2016-06-07, 16:20
Logout Mark Read Team Forum Stats Members Help
[RELEASE] Steam Launcher - Start Steam Big Picture Mode from within Kodi7