2013-12-30, 04:32
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
(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:
Code:sudo apt-add-repository ppa:wsnipex/xbmc-fernetmenta-master
sudo apt-get update
sudo apt-get install xbmc xbmc-bin
sudo apt-get upgrade
(Source: FernetMenta - not my work, his!)
(2013-12-28, 20:25)illiac4 Wrote: Hmmm. Well i'd first remove the source for old repo than add new one. Purge xbmc and xbmc-bin and then update and install xbmc and xbmc-bin. Do autoclean and autoremove at the end.
So ya its then something like.... Recapitulating.
Code:sudo apt-add-repository -r -y ppa:wsnipex/xbmc-xvba
sudo apt-add-repository -y ppa:wsnipex/xbmc-fernetmenta-master
sudo apt-get -y remove --purge xbmc xbmc-bin
sudo apt-get update
sudo apt-get upgrade
sudo apt-get -y install xbmc xbmc-bin
sudo apt-get -y autoremove
sudo apt-get -y autoclean
See where the upgrade apt-get goes Preacher? Ya not after the install right?? That wasnt a Q
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
(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.
23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/1/?tvshowid=2
23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/2/?tvshowid=2
23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/3/?tvshowid=2
23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/4/?tvshowid=2
23:31:20 T:140360662435584 WARNING: GetIcon - Unknown nodetype requested videodb://tvshows/titles/2/-1/?tvshowid=2
23:31:20 T:140360654042880 NOTICE: Thread BackgroundLoader start, auto delete: false
23:31:31 T:140360969869184 NOTICE: Previous line repeats 3 times.
23:31:31 T:140360969869184 NOTICE: DVDPlayer: Opening: smb://RT-AC68U/My_Book/Series/Breaking Bad/Season 4/Breaking Bad - 4x11 - Crawl Space.avi
23:31:31 T:140360969869184 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
23:31:31 T:140360654042880 NOTICE: Thread DVDPlayer start, auto delete: false
23:31:31 T:140360654042880 NOTICE: Creating InputStream
23:31:31 T:140360654042880 NOTICE: Creating Demuxer
23:31:32 T:140360654042880 NOTICE: Opening video stream: 0 source: 256
23:31:32 T:140360654042880 NOTICE: Creating video codec with codec id: 13
23:31:32 T:140360654042880 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: MPEG-4 part 2
23:31:32 T:140360654042880 NOTICE: CDVDVideoCodecFFmpeg::GetFormat - Creating VDPAU(624x352)
23:31:32 T:140360654042880 NOTICE: (VDPAU) Close
############### END LOG FILE ################
############ END XBMC CRASH LOG #############
sudo apt-add-repository -r -y ppa:wsnipex/xbmc-xvba
sudo apt-add-repository -y ppa:wsnipex/xbmc-fernetmenta-master
sudo apt-get -y remove --purge xbmc xbmc-bin
sudo apt-get update
sudo apt-get upgrade
sudo apt-get -y install xbmc xbmc-bin
sudo apt-get -y autoremove
sudo apt-get -y autoclean
(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.