Created
April 17, 2016 09:35
-
-
Save czombos/db11e5bfb07d60ce640ebe02b7034a66 to your computer and use it in GitHub Desktop.
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
http://cdimage.ubuntu.com/ubuntu/daily-live/current/xenial-desktop-amd64.iso | |
sudo apt-get install mc vim htop openssh-server | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get dist-upgrade | |
sudo apt-get install python-software-properties software-properties-common autofs cifs-utils alsa-utils mesa-utils git-core librtmp1 libmad0 lm-sensors libmpeg2-4 libnfs8 libva1 vainfo linux-firmware dbus-x11 udisks2 pastebinit | |
sudo usermod -a -G cdrom,audio,video,plugdev,users,dialout,dip,input kodi | |
sudo add-apt-repository ppa:team-xbmc/ppa | |
sudo apt-get update | |
wget https://download.01.org/gfx/ubuntu/15.10/main/pool/main/i/intel-linux-graphics-installer/intel-linux-graphics-installer_1.4.0-0intel1_amd64.deb | |
sudo dpkg -i intel-linux-graphics-installer_1.4.0-0intel1_amd64.deb | |
sudo cp /etc/lsb-release /etc/lsb-release.backup // itt ki kell cserélni xenial-t wily-re | |
sudo apt-get -f install | |
wget --no-check-certificate https://download.01.org/gfx/RPM-GPG-KEY-ilg-3 -O - | sudo apt-key add - | |
intel-linux-graphics-installer | |
sudo apt-get update | |
sudo apt-get install kodi | |
vi ~/KODI_alsa_session_starter | |
#!/bin/bash | |
# force KODI to use ALSA for proper passthrough support | |
AE_SINK=ALSA kodi-standalone | |
chmod +x ~/KODI_alsa_session_starter | |
sudo vi /usr/share/xsessions/KODI_ALSA.desktop | |
[Desktop Entry] | |
Name=KODI | |
Comment=This session will start KODI Media Center in ALSA mode | |
Exec=/home/kodi/KODI_alsa_session_starter | |
Type=Application | |
sudo vi /etc/lightdm/lightdm.conf | |
display-setup-script=/etc/lightdm/xrandr.sh // hozzáadni a végéhez | |
sudo vi /etc/lightdm/xrandr.sh | |
#!/bin/bash | |
xrandr -display :0 --output HDMI3 --set "Broadcast RGB" "Full" | |
chmod +x /etc/lightdm/xrandr.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment