LinuxMCE Forums
May 24, 2013, 07:24:54 am GMT-1 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
 
  Home Help Search Chat Login Register  
  Show Posts
Pages: 1 ... 58 59 [60] 61 62 ... 69
886  LinuxMCE / Installation issues / Re: Gyration Remote keys all wacky on: February 24, 2011, 04:40:31 am
What I had to do to fix this was edit my xorg.conf file under "Server Flags" to add.

Option "AutoAddDevices" "false"
887  LinuxMCE / Installation issues / Re: Installation Freezes After Selecting Install LinuxMCE on: February 23, 2011, 02:33:23 am
Hi there. A few things...

1. Use 810, and until further notice, 32bit is the only option.
2. Use a snapshot. http://linuxmce.iptp.org/snapshots/ 
3. The graphics chipset is not going to work well, if at all.
4. Follow this wiki. http://wiki.linuxmce.org/index.php/Installing_0810
5. Yes, it absolutely has to be connected to the internet. In fact the internet needs to be on eth0, and your internal network on eth1.
888  LinuxMCE / Developers / Re: Kubuntu prep script for 8.10 installs on: February 21, 2011, 05:35:47 pm
More changes, works well, but will eliminate unneeded repos. Also added the Dolphin's Places script to beginning to add LMCE folders.

http://svn.linuxmce.org/trac.cgi/attachment/ticket/1003/repoplaces.sh?format=raw
889  LinuxMCE / Developers / Re: Kubuntu prep script for 8.10 installs on: February 20, 2011, 05:52:24 pm
Had a small oversight. Corrected.

Script works well... but leaves sources LMCE does not require. Will hone it down to what is needed.

*juast noticed dist-upgrade works in download only mode. will tweak.
890  LinuxMCE / Developers / Re: Kubuntu prep script for 8.10 installs on: February 20, 2011, 01:55:23 pm
Hi,

I have tested both scripts but I can not connect to http://fastspeedtest.net

I have tryed to connect to http://fastspeedtest.net using FireFox and it tells me that it is not possible to connect to the site.

Anyone else having this problem?

Regards
Johannes

This script should not affect your ability to connect to any websites, only what is available for install.
891  LinuxMCE / Developers / Re: Kubuntu prep script for 8.10 installs on: February 20, 2011, 01:48:06 am
Better script.
Code:
#!/bin/bash
n1=$(grep -e 'security.' -e 'archive.' /etc/apt/sources.list | wc -l) #looks for references that shouldn't be there and counts them
o1=0;
if [ "$n1" -gt "$o1" ] ; then echo "Changing Repositories"
sed -i.backup -e 's/us.archive/old-releases/' -e 's/security.ubuntu/old-releases.ubuntu/' -e 's/\/archive/\/old-releases/' /etc/apt/sources.list; #changes us.archive, security.ubuntu, and /archive to old-releases
< /etc/apt/sources.tmp
        else
          echo "Repositories correct, running update."
        fi
sort -u /etc/apt/sources.list > /etc/apt/sources.tmp; #removes duplicates in temp file
cat /etc/apt/sources.tmp > /etc/apt/sources.list; #rewrites sources.list without duplicates
apt-get update 
n1=$(grep -e 'security.' -e 'archive.' /etc/apt/sources.list | wc -l) #looks for references that shouldn't be there and counts them
o1=0;
if [ "$n1" -gt "$o1" ] ; then echo "Changing Repositories"
sed -i.backup -e 's/us.archive/old-releases/' -e 's/security.ubuntu/old-releases.ubuntu/' -e 's/\/archive/\/old-releases/' /etc/apt/sources.list; #changes us.archive, security.ubuntu, and /archive to old-releases
< /etc/apt/sources.tmp
sort -u /etc/apt/sources.list > /etc/apt/sources.tmp; #removes duplicates in temp file
cat /etc/apt/sources.tmp > /etc/apt/sources.list; #rewrites sources.list without duplicates
        else
          echo "Repositories correct, running dist-upgrade"
        fi
apt-get dist-upgrade -ydu --force-yes
n1=$(grep -e 'security.' -e 'archive.' /etc/apt/sources.list | wc -l) #looks for references that shouldn't be there and counts them
o1=0;
if [ "$n1" -gt "$o1" ] ; then echo "Changing Repositories"
sed -i.backup -e 's/us.archive/old-releases/' -e 's/security.ubuntu/old-releases.ubuntu/' -e 's/\/archive/\/old-releases/' /etc/apt/sources.list; #changes us.archive, security.ubuntu, and /archive to old-releases
< /etc/apt/sources.tmp
        else
          echo "Repositories Correct."
        fi
sort -u /etc/apt/sources.list > /etc/apt/sources.tmp; #removes duplicates in temp file
cat /etc/apt/sources.tmp > /etc/apt/sources.list; #rewrites sources.list without duplicates
#echo "Installing LMCE"
#env
#sad=$SUDO_USER
#sh /home/$sad/Desktop/LinuxMCE

Can, but do not wish to launch install prog... would rather instantiate the rest of the processes from here, or push the button.
892  LinuxMCE / Installation issues / Re: LinuxMCE on a Lenovo Thinkcentre M58p on: February 19, 2011, 03:48:58 pm
Hi there. A few things...

1. Use 810, and until further notice, 32bit is the only option.
2. Use a snapshot. http://linuxmce.iptp.org/snapshots/   (See top sticky in this forum, 23748 is good)
3. In bios, if possible, disable onboard video.
4. Follow this wiki. http://wiki.linuxmce.org/index.php/Installing_0810
5. The AV wizard (first boot) default output is on vga. Hook up a vga monitor for setup.
6. Don't plug stuff in until the setup wizard tells you to.
7. And probably most importantly... make sure you have 2 nics in your machine... and internet is on eth0.
893  LinuxMCE / Developers / Kubuntu prep script for 8.10 installs on: February 19, 2011, 06:24:30 am
This is a little script I wrote for those of us who install a lot.
It looks for references in sources.list that should not be there and changes them.
It then removes any duplicates.
It then performs update and then dist-upgrade.
It then starts the LMCE install.
This is not fully tested as of this second (am fresh installing now)... but it will not do any harm if it bombs.
Feel free to test, and post your results.

Code:
#!/bin/bash
n1=$(grep -e 'security.' -e 'archive.' /etc/apt/sources.list | wc -l) #looks for references that shouldn't be there and counts them
o1=0;
if [ "$n1" -gt "$o1" ] ; then echo "Changing Repositories"
sed -i.backup -e 's/us.archive/old-releases/' -e 's/security.ubuntu/old-releases.ubuntu/' -e 's/\/archive/\/old-releases/' /etc/apt/sources.list; #changes us.archive, security.ubuntu, and /archive to old-releases
sort -u /etc/apt/sources.list > /etc/apt/sources.tmp; #removes duplicates in temp file
cat /etc/apt/sources.tmp > /etc/apt/sources.list; #rewrites sources.list without duplicates
else
  echo "Repositories Correct, Running update, and dist-upgrade"
fi
apt-get update && apt-get dist-upgrade -ydu --force-yes
#echo "Installing LMCE"
#env
#sad=$SUDO_USER
#sh /home/$sad/Desktop/LinuxMCE

Save as something.sh
Code:
sudo chmod +x something.sh
sudo ./something.sh
Any feedback is welcome.
Spawning the installer appears to break things, so have commented out.
http://svn.linuxmce.org/trac.cgi/ticket/1003


894  LinuxMCE / Users / Re: DVB Cards info needed for Templates on: February 17, 2011, 09:51:43 pm
Avermedia 780m pcie combo tuner

Fresh dmesg:
http://pastebin.com/CKCxhnMs

With native FW (skipping the script), using the other drivers:
Code:
hg clone http://kernellabs.com/hg/~dheitmueller/ngene3
cd ngene3
make
make install

http://pastebin.com/Q0p38GVP make
http://pastebin.com/RVy6XuLF make install

Resulting in this dmesg
http://pastebin.com/g5s4zwCp

Vendor ID: 18c307201461062e

sudo lspci -vn
http://pastebin.com/Wju59bCr

sudo v4l2-ctl -n
Code:
Failed to open /dev/video0: No such file or directory

1 Digital ATSC/QAM in
1 Analog "HD" in
1 S-Video in
1 Audio in

Currently have 2 installed, working well on ATSC for both. Myth behaving famously. Though a little top heavy:

11696 root      19  -1  186m 169m 103m R   90  5.0  26:27.09 Xorg               
18553 root      20   0  410m 241m 121m S   40  7.1  16:49.35 mythfrontend       
 9546 mythtv    20   0  323m  51m  14m S    2  1.5   1:01.44 mythbackend     

I cannot get VDPAU working on core (Asus M3N78-VM) w/on board 8200 for other media, have not tried with myth.   

model name      : AMD Athlon(tm) II X2 240 Processor
stepping        : 2
cpu MHz         : 2799.955
cache size      : 1024 KB
895  LinuxMCE / Developers / Re: Avermedia PCIE combo capture card (AverTV combo m780 b) on: February 17, 2011, 01:18:32 am
I used to live there... I thought he looked familiar.
896  LinuxMCE / Developers / Re: SiriusXM on: February 16, 2011, 10:47:18 pm
Look also at pyxis
897  LinuxMCE / Developers / Re: Avermedia PCIE combo capture card (AverTV combo m780 b) on: February 16, 2011, 07:01:09 am
Well unless you know some voodoo I don't, you have to actually BE in IRC for that to work Tongue
898  LinuxMCE / Users / Re: ZWave wizard fail on latest LinuxMCE snapshot on: February 15, 2011, 08:00:45 pm
For the record, if you let the screen sit for a few minutes before hitting "next" it does not crash you out. Also only hit that next button once. It is not an immediate reply... but it goes forward.
899  LinuxMCE / Developers / Re: SiriusXM on: February 15, 2011, 07:52:08 pm
Sounds like a fun project... but I think these guys are busy crushing bugs rather than feature enhancements. It sounds pretty easy, so I will look into it, because my powers are weak. I know that flash is... glitchy at best in firefox.
900  LinuxMCE / Developers / Re: Avermedia PCIE combo capture card (AverTV combo m780 b) on: February 15, 2011, 02:50:21 am
After reboot, I have audio.


I have no idea wtf I did right, but assuredly there is a way to make this work without these steps... or even with... over my bunk connection, it was 10 minutes... but I expect the goal is to make it just work. I can't help there...



... today.
Pages: 1 ... 58 59 [60] 61 62 ... 69
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!