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 XBMC install - Ubuntu 12.10/13.04 mini based - Hack_kid - 2013-12-30 OT but can anyone explain the linux command "sed" for me? i've never quite understood it and i'm pretty sure its gonna come into play for removing nomodset from /etc/default/grub for radeon OSS bringup RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - illiac4 - 2013-12-30 (2013-12-28, 22:36)uNiversal Wrote:(2013-12-28, 20:20)Preacher Wrote: Just for completeness (Hi, FernetMenta!) if anyone has followed the guide so far and wants to bring XBMC up to the later revision, these are the lines to do it: Maybe also add a command: Code: sudo dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge This will clean unused Linux kernel headers, images and modules, which can take some space. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Preacher - 2013-12-31 (2013-12-30, 04:32)Hack_kid Wrote: OT but can anyone explain the linux command "sed" for me? i've never quite understood it and i'm pretty sure its gonna come into play for removing nomodset from /etc/default/grub for radeon OSS bringup"sed" = stream editor. Can be used for doing a quick search/replace on text in a line, or cutting out lines. If you're doing a large amount of text parsing, you could combine "sed" and "awk".. or may as well learn perl. I won't clog up this thread with more info - sure you can Read The Friendly Manpages - but if you want a few sed examples (or need it to do your change) then we'll take this to PM. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - un1versal - 2013-12-31 wow, he can google... RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - fritsch - 2013-12-31 @Hack-Kid: No, that's not needed. I had it in, cause at 3.12 AMD needed a special xrandr command prior to starting xbmc cause of making the audio device available. I changed the command in the howto already, cause i'ts not needed anymore. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - un1versal - 2014-01-03 I am officially unsubscribing for updates and new posts on this thread, good luck and thank you for all the fish. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - thethirdnut - 2014-01-03 One suggestion RE: this script...why not aim to and plan to stick with 14.04 LTS...ONLY. Meaning give strong reference that other older and eventually newer releases won't be supported for quite some time... Why make things more difficult supporting diff kernels, etc going forward when the next long-term-support version is only a few months away? RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Bram77 - 2014-01-04 I will release a new version somewhere around the release of 14.04. I will incorporate as many of the fixes that have been suggested by users in this thread as possible. I will add an option to choose between xbmc repo’s. There will be no major changes in the scripts structure because I don't have time for a complete rewrite. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - mousi - 2014-01-06 Hello, I have a problem with this setup. When I try to play series episodes from smb share xbmc crashes, all I see is a black screen and I have to go to TTY1 (Alt+Ctrl+F1), login and reboot the pc. The last lines of my crashlog are: Code: 23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/1/?tvshowid=2 Any ideas? RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - hman333 - 2014-01-07 Just finished the install using 13.04 and 2.6.1 script. Whenever I boot into Ubuntu I get the xbmc start screen, the nvidia splash screen and then just black screen. Any suggestions? Edit: tried install again with newest uNiversI script. I seem to be getting the same thing as post 1156. Any advice? Edit 2: got it up and running, turned out to be an issue with my wireless card causing not all of the packages to be downloaded. On another note can anyone help with this: I have this setup on a laptop. When I plug in my output to TV the screen gets split between the two numbers, the system acts as though its one large screen. I want to disable the laptop display and only output to the TV. Right now I only see half of xbmc on the TV. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Baitou - 2014-01-18 Never mind, got help from Fritsch with Radeon OSS. I'm in pretty deep shit here being that I know fuck-all about this. I managed to install it according to the script earlier this summer but had to do a reinstall yesterday. But I can't get hardware acceleration to work anymore. Code: sudo apt-add-repository -r -y ppa:wsnipex/xbmc-xvba I have run this. I have the E350 motherboard with Radeon 6310. In the settings page VDPAU is enabled but when pressing O while watching something it still only shows dc:ff-h264 which I've understood means hardware acc is not running. I tried to start over from scratch with http://forum.xbmc.org/showthread.php?tid=174854 but couldn't install that distro, my keyboard stopped working when starting installation. Anyone have the time or patience to point me in the right direction? RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - thethirdnut - 2014-01-19 One pointer for you: VDPAU = Nvidia hw acceleration XVBA = ATI/AMD hw acceleration RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - wsnipex - 2014-01-23 XVBA is deprecated. Radeon(on >=HD5xxx) now supports VDPAU. RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Hack_kid - 2014-01-27 (2014-01-04, 15:47)Bram77 Wrote: I will release a new version somewhere around the release of 14.04. I will incorporate as many of the fixes that have been suggested by users in this thread as possible. I will add an option to choose between xbmc repo’s. There will be no major changes in the scripts structure because I don't have time for a complete rewrite. check my git. i did most the work for you. just didnt have time to release github.com/Albinoman887 RE: HOW-TO: Automated efficient XBMC install - Ubuntu 12.10/13.04 mini based - Furner - 2014-01-29 nm |