XBMC Community Forum
[LINUX] HOW-TO install XBMC for Linux on Ubuntu 8.04 (Hardy) and 8.10 (Intrepid) - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Announcements, Info, and General Discussion (/forumdisplay.php?fid=85)
+--- Forum: Tips, tricks, and step by step guides (/forumdisplay.php?fid=110)
+--- Thread: [LINUX] HOW-TO install XBMC for Linux on Ubuntu 8.04 (Hardy) and 8.10 (Intrepid) (/showthread.php?tid=44019)



- toiva - 2009-03-01 21:56

I'm not sure if i understand what the fix was at that case? He had been running XBMC as root, but now had to run it as a normal user? It's not that, i've tried running it both ways.


- olympia - 2009-03-02 11:36

danillll Wrote:So the main difference is that I had to recompile the splash and not use the one linked in the guide, which still wouldn't work

Thanks danillll! Nod
I precompiled those splash screens under Intrepid, so this is the problem then.
It seems I have to do a separate precompilation on Hardy as well.

Will do this, when I have some time.


Keyboard not working - Silvesti - 2009-03-02 20:10

I ran through the guide, which went pretty quick, however my keyboard doesn't seem to be working in XBMC. I have an RF Receiver which connects via USB. The keyboard works fine in the BIOS and seems to work until the NVIDIA Splash screen at which time it fails to respond. I've been testing it by simply turning on and off caps lock during boot. It's not until just before the NVIDIA Splash screen that it fails to recognize cap locks, as indicated by the LED Cap lock light on the RF Receiver. When it finally loads into XBMC my keyboard fails to work.

Any ideas?
Thanks!


- danillll - 2009-03-03 06:31

I need help with resume/suspend, I loaded the conf file according to the guide, I can suspend the box however when I resume it, nothing shows up on my screen, I can ssh to the box and see xbmc process running no errors and nothing suspicious, any idea how to fix this? btw, I am running HARDY.


- olympia - 2009-03-03 10:58

danillll Wrote:I need help with resume/suspend, I loaded the conf file according to the guide, I can suspend the box however when I resume it, nothing shows up on my screen, I can ssh to the box and see xbmc process running no errors and nothing suspicious, any idea how to fix this? btw, I am running HARDY.

There are various problems with suspend and especially with resume on Hardy.
I spent weeks of my life to solve these without bigger success and that's why I am not using Hardy.

However, try add:
Code:
option "NvAGP" "1"
to xorg.conf under screen section.


RE: Keyboard not working - Silvesti - 2009-03-03 19:03

Silvesti Wrote:I ran through the guide, which went pretty quick, however my keyboard doesn't seem to be working in XBMC. I have an RF Receiver which connects via USB. The keyboard works fine in the BIOS and seems to work until the NVIDIA Splash screen at which time it fails to respond. I've been testing it by simply turning on and off caps lock during boot. It's not until just before the NVIDIA Splash screen that it fails to recognize cap locks, as indicated by the LED Cap lock light on the RF Receiver. When it finally loads into XBMC my keyboard fails to work.

I believe I've found the problem in the /etc/X11/xorg.conf file that NVIDIA replaces when the NVIDIA driver is installed. The original xorg.conf has the following settings:

Code:
Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"     "us"
        Option          "XkbVariant"    "intl"
        Option          "XkbOptions"    "lv3:ralt_switch"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
EndSection


Whereas the NEW xorg.conf file that NVIDIA genertates looks like this:

Code:
Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection


I've tried putting the original xorg.conf keyboard and mouse code into the new NVIDIA generated xorg.conf, but the keyboard still fails to work, however I do have the mouse working now. BTW, I'm using Hardy. This is all very strange as it worked perfectly on the XBMC Live CD.

Any suggeestions?


- olympia - 2009-03-03 20:31

Silvesti Wrote:I believe I've found the problem in the /etc/X11/xorg.conf file that NVIDIA replaces when the NVIDIA driver is installed. The original xorg.conf has the following settings:

Any suggeestions?

How does your xorg.conf exactly looks now?


- Silvesti - 2009-03-03 20:50

olympia Wrote:How does your xorg.conf exactly looks now?


As of right now, here is how my xorg.conf looks. This is after I've modified the mouse and keyboard sections of the file from the original one created by NVIDIA.


Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder57)  Sun Feb 22 21:02:18 PST 2009

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0"
    InputDevice    "Mouse0"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "CorePointer"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbRules"      "xorg"
    Option         "XkbModel"      "pc105"
    Option         "XkbLayout"     "us"
    Option         "XkbVariant"    "intl"
    Option         "XkbOptions"    "lv3:ralt_switch"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection



- Silvesti - 2009-03-03 21:00

Silvesti Wrote:As of right now, here is how my xorg.conf looks. This is after I've modified the mouse and keyboard sections of the file from the original one created by NVIDIA.

BTW, it looks like those edits I made are causing core dumps when rebooting.


- olympia - 2009-03-03 21:10

Silvesti Wrote:BTW, it looks like those edits I made are causing core dumps when rebooting.

Did you tried the one included in the guide?