![]() |
Linux HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Tips, tricks, and step by step guides (https://forum.kodi.tv/forumdisplay.php?fid=110) +--- Thread: Linux HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based (/showthread.php?tid=141369) |
RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Flynsarmy - 2012-10-26 (2012-10-25, 17:49)Bram77 Wrote: This one has been fixed. I'm not yet sure what's causing the errors when rebooting. Thanks Bram. Just had a test and here's the code to auto-uppercase the $GFX_CARD variable: Code: lspci |grep VGA |awk -F: {' print $3 '} |awk {'print $1'} |tr [a-z] [A-Z] RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 Auto uppercase code has been added. Thanks ![]() RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 (2012-10-25, 11:36)Flynsarmy Wrote:(2012-10-25, 09:02)uNiversal Wrote: Under which user did you run the script? What kind of videocard are you using exactly? EDIT: Never mind... I saw your post earlier where you posted that you have an Intel onboard cideocard. In version 2.6 I'll remove the nomodeset for intel cards only to see if it will work with all intel cards. RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 (2012-10-24, 18:39)uNiversal Wrote: @Bram77 I won't be doing fan speeds for now. Maybe I'll give it a go later on. Thanks for the info though! On my ION1 machine the following displays CPU temperature correctly, so that's what I'm using in the script. You sensors command does not work for me. It needs to have "temp2_input", not "temp1_input". Code: <cputempcommand>echo "$(sensors -u | head -6 |grep "temp2_input"| awk '{print $2 }' |awk '{printf("%d\n",$1 + 0.5);}') C"</cputempcommand> RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - un1versal - 2012-10-26 Yours gives 28c your grepping coretemp with the head -6 , im grepping tail lol, but perhaps the driver in 12.10 is newer than 12.04 it works, I been using that command since karmic. But its not important in relation to the other issues. I presume your looking through my many posts? I tested things almost to death (my death), I hope its useful. uNi RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 Yes, I'm working through the posts. You're help is very much appreciated! Thanks a lot ![]() I really can't do all the testing en debugging myself. It's just too much. I'll hopefully find a sensors command that will work with all systems some day. You command returns nothing on my system. Head -6 seems a bit more logical but is essentially the same ![]() RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 (2012-10-24, 13:06)uNiversal Wrote: @Bram77 I've added your usbautomount fix to version 2.6 . I'll test it later this evening. Thanks a lot! Both the CIR and 24p solutions are very hardware and driver specific. So I won;t be adding this. I can;t possibly add support for all types of hardware. This doesn't mean that your guides aren't very helpful! I could add links to your posts in the start posts if you're ok with that? RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - un1versal - 2012-10-26 Yes use whatever you think its best, I would expect adding support for everything would not be easy, specially multiplatform, I would have though you add support for what you need or can test directly in some way. Its a useful script either way, fantastic in fact. thx for that! Its a shame to let any potential useful stuff go to waste. thx uNi RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - chippyash - 2012-10-26 Hi Bram, I was almost there. Install seemed to go well but although the XBMC splash screen shows on boot, I get dropped to a command line. typing xbmc or xbmc-standalone both give following error Code: /usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:57: GtkWarning: could not open display for reference lsmod gives Code: xbmc@xbmc:~$ lsmod This on an Asrock ION 330HT-BD. If anyone can help I'd appreciate it as I'm trying this installer because of http://forum.xbmc.org/showthread.php?tid=143507&pid=1222744#pid1222744 problem. Ta. RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 That's strange. You have basically the same device as I have (ION 330-HT) and that's one error I haven't seen before. Maybe you could try starting from scratch again? Did you follow the exact guide from the start post. From beginning to end? RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-26 The start post has been updated for version 2.6.0. I've incorporated a lot of the suggestions mentioned the last few weeks. Not all, but a lot. Thank you all so much for helping out! Please let me know if you run into problems with the script. I haven't been able to test it because I have re-installed XBMC like 40 times over the last month. I don't have the time to do more clean installations at the moment. Bugs are likely, so please keep me posted. With your help I can keep/make the script stable. RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - chippyash - 2012-10-27 (2012-10-26, 22:43)Bram77 Wrote: Did you follow the exact guide from the start post. From beginning to end?Yup ;-) However, I noted somewhere else in the thread about removing xbmc and restarting the script. So I did that. No luck. So then I manually uninstalled xbmc and reinstalled it Code: sudo apt-get remove xbmc Now it works - sort of... Got xbmc with video but no audio. I'm outputting to an AV amp via hdmi (as per sig below) but none of the settings are working at the moment. I seem to recall having these problems about two years ago (same kit) but can't remember how I fixed it :-( Job for tomorrow I guess, as it's getting late. Love to figure out what went wrong cus your script is the closest I've come to a painless install of xbmc yet. Good job Bram. Any help on the audio appreciated. Cheers A Re: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Bram77 - 2012-10-27 You could try to re-run the script (version 2.6). If somehow the script didn't run properly last time the xbmc user might not be added to the audio group or something like that. Are you sure all volumes are up and channels not muted? To check this run alsamixer from console. RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - un1versal - 2012-10-27 @Bram77 libcec is part of the xvba packages it pumps in auto, one less to do! Feature added already. Script installs stable xbmc, but it could offer cutting edge as well? While your making a lists the IONHT CIR can be fixed as well , Link in my signature. Th mini xinit upstart scrip is the way to go, problem is that if you press exit on power menu xbmc restarts, instead of going to terminal (no biggie) Ill have a look at script tomorrow for anything that may have been left out, typos etc. Im sure I have posts that just too much info... lol. uNi RE: HOW-TO: Automated efficient (dedicated) XBMC installation on Ubuntu minimal 12.10 - Flynsarmy - 2012-10-27 (2012-10-27, 00:15)chippyash Wrote: Now it works - sort of... Got xbmc with video but no audio. I'm outputting to an AV amp via hdmi Go to System - Audio and make sure XBMC is set to use the HDMI. That fixed it for me. |