Tag Archives: How to Setup LIVA

ECS LIVA Setup Part 4

DHCP issues

My last problem is related to the way DHCP is handled with ubuntu. Now I could have disabled DHCP and just set everything static but I reload my frontends on a regular basis so I didn’t want to do that every time I setup a frontend. Instead I have created a script to start mythtv after a 10 second delay.

    1.  Create script on the root of the filesystem named mythdelayed.sh
    2. Use the following Content
      1. #start mythtv in a delayed state because of slow ubuntu dhcp networking
      2. sleep 10
      3. mythfrontend –service
    3. Change the default mythtv startup entrymythdelayed-1
    4. Modify the entry to run the mythdelayed.sh script.mythdelayed-2
    5.  Restart and it should auto launch after 10 seconds and you should be up and running.  This concludes my LIVA setup postings. The next step is to configure Mythtv settings which I will leave up to you……

 

ECS LIVA Setup Part 1
ECS LIVA Setup Part 2
ECS LIVA Setup Part 3

ECS LIVA Setup Part 3

Monitory Disconnect/Re-connect Issue

So when i first got the LIVA i was not impressed with it at all.  It did not work as I expected it to and felt I got ripped off. Needless to say after figuring out a few tweaks those problems are now gone. Today i will show you the first one that is the most painful.

To give you some background, I have loaded the Intel Graphics driver fine according to Intel’s support page. the problem I ran into is that every time I turned my TV off the HDMI connection would drop and when I turned the TV back on it would show in the logs as reconnected but the TV would still show no input.  After trying several different TV’s and Computer monitors I gave up for a few months.  One nite i decided to look again and here is what i came up with for a solution.

  1.  cd to the top of the filesystem ( / )
  2. Create a new monitor-hdmi.sh script
    1. sudo vi monitor-hdmi.sh
    2. Paste in the follow text. (don’t add the numbers 1-9)
      1. #cont loop to see connected hdmi and reset display
      2. while true
      3. do
      4. if (xrandr | grep “HDMI1 connected (normal left inverted right x axis y axis)” > /dev/null)
      5. then
      6. xrandr –output HDMI1 –mode 1920×1080 -r 60.0
      7. fi
      8. sleep 10
      9. done

      10. monitor-hdmi-autostart-2

    3. Save the file and then “chmod +X monitor-hdmi.sh”
    4. additionally you need to set permissions with “chmod 777 monitor-hdmi.sh”
    5. If the monitor is not a 1080p monitor the resolution will change in step 2.2. for samsung 720p monitors its 1360×768
    6. Add the script to Session startup/App Autostart so that it starts at auto login.monitor-hdmi-autostart
    7. Now reboot and when you turn off your tv and  turn it back on  it should reconnect and show the HDMI output.

ECS LIVA Setup Part 1
ECS LIVA Setup Part 2
ECS LIVA Setup Part 4

#cont loop to see connected hdmi and reset display
while true
do
if (xrandr | grep "HDMI1 connected (normal left inverted right x axis y axis)" > /dev/null)
then
xrandr --output HDMI1 --mode 1920x1080 -r 60.0
fi
sleep 10
done

ECS LIVA Setup Part 2

  1.  Download the Mythbuntu ISO
  2.  Format USB stick using the following settings for Rufus
    1. Make sure you load the ISO first and then check the settingsRufus-mythbuntu-USB
  3. Once the USB stick is done, boot the LIVA off of it and install Mythbuntu using the onscreen instructions.
  4. Install PackageKit so you can install the Intel Linux Graphics Installer.
    1.  Sudo apt-get install packagekit
  5.  Download the Intel Linux Graphics Installer.
  6.  Run the DEB file and wait for it to finish installing.
  7. After it has been installed, now you can actually download the drivers and have them configured. Find the Intel Graphics Installer in the menu like the screenshot below.Intel Graphics Installer for Linux
  8.  Run the installer and wait, this process takes some time and will likely prompt you for a reboot at the end and it won’t reboot so you will have to manually reboot.
  9.  I don’t use the wireless card that comes with the PC but if you want to us it, you have to do some funky stuff to make it work as it doesn’t work out of the box with mytbuntu (or any ubuntu version from what i hear). You can find more info about that here (steps 1-6).

 

This concludes Part 2, you should now have a fully functional ubuntu pc. Next part i will give you some stuff to tweak a few quirks with Intel and DHCP networking.

ECS LIVA Setup Part 1
ECS LIVA Setup Part 3
ECS LIVA Setup Part 4

 

 

ECS LIVA Setup Part 1

Introduction

Liva 1      I have had this PC since it came out in July and thought i should do a writeup to share my thoughts and how to set it up. ECS has managed to create a nice x86 PC where others have failed with a nice CPU, Video, and Price features. I run Mythbuntu on all 3 of my LIVA’s. I have tried Windows 8.1 on one of them and it does pretty well even though the LIVA only features 32GB hard drive and 2GB ram for the version I have.

 

ecs-liva-3         All versions of the LIVA are the same except for the hard drive storage which comes in 32GB and 64GB configurations.  Feature wise you will find all the latest and greatest connectors on this mini pc. The USB 3.0 connector is a welcome upgrade that you wont find on any of the BayTrail Tablet Chip offerings such as the Zotac Pico.  While I do like the fact it has a Gbit ethernet adapter on it, for the purpose of a MythTV frontend its not really needed. In the Next few posts I will show you how to install Mythbuntu and get it ready to watch movies and television.

ECS LIVA Setup Part 2
ECS LIVA Setup Part 3
ECS LIVA Setup Part 4