Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Xaiver Merlyn

Pages: [1]
1
Installation issues / Re: error using quick DVD
« on: December 15, 2008, 04:26:55 pm »
I have also ran into this issue. Mine was caused by Kubuntu 7.10 and a P35 motherboard.

There are tons of "fixes" on the web, but the only one I have found that resolved my issue was to modify the kernel boot line. At the Kubuntu splash screen when you are trying to install, I pressed F6 and added "irqpoll" to the end of the command line before the "--". This allowed my system to boot past that. I later had to modify the /boot/grub/menu.lst and add irqpoll to the kernel lines in there. (You can also hit ESC at the GRUB loader and edit the kernel lines there but it won't stay).

Let me know if that helps.

2
Just my 2 cents. I've been working on this since I saw the first post.
This setup works with both the x86 and x64 710RC2 DVD installers (as far as installation). I haven't tried a manual install with the CD version.

I do have a question though, how can I tell if it is working properly on a diskless MD?


**Setup Development Environment**

Code: [Select]
sudo passwd root
su root
cd ~
apt-get install subversion wine
svn co http://svn.linuxmce.org/pluto/branches/charon-merge
mkdir -p /src/lib
cp /usr/pluto/lib/* /src/lib/ -R
cd charon-merge/
./configure
make

**Setup CoreAVC**

Install CoreAVC using Wine.

Code: [Select]
cp /home/linuxmce/.wine/drive_c/Program\ Files/CoreCodec/CoreAVC\ Professional\ Edition/CoreAVCDecoder.ax /usr/lib/win32/
cd ~
svn co http://coreavc-for-linux.googlecode.com/svn/trunk/ coreavc-for-linux
cd ~
wget http://coreavc-for-linux.googlecode.com/files/dshowserver-ia32-r63-gentoo.tar.bz2
tar -xjf dshowserver-ia32-r63-gentoo.tar.bz2
cd dshowserver
cp dshowserver /usr/local/bin
cp ../loader/registercodec /usr/local/bin
chmod a+x /usr/local/bin/dshowserver
chmod a+x /usr/local/bin/registercodec

mkdir ~/.mplayer/

export REGISTRY=$HOME/.mplayer/registry32
registercodec -r $REGISTRY -k "HKLM\\Software\\CoreCodec\\CoreAVC Pro\\Serial" -v "55555-55555-CORE-55555-55555"
dshowserver -c CoreAVCDecoder.ax -s 1280x720 -g 09571a4b-f1fe-4c60-9760de6d310c7c31 -b 12 -f 0x34363248 -o 0x30323449

cd charon-merge/ubuntu/xine-lib-1.1.10.1/
patch -Np1 -i ~/coreavc-for-linux/xine/dshowserver.patch
./configure
make
make install
cd /opt/libxine/lib
rm libxine.so.1
ln -s /usr/local/lib/libxine.so.1.19.0 libxine.so.1
shutdown -r now

Pages: [1]