LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   troubleshooting /dev/mouse link in a Slack14 VM guest (https://www.linuxquestions.org/questions/slackware-14/troubleshooting-dev-mouse-link-in-a-slack14-vm-guest-4175478262/)

Drone4four 09-23-2013 05:36 PM

troubleshooting /dev/mouse link in a Slack14 VM guest
 
My mouse wheel doesn’t work in my Slackware guest VM. This is prolly because I selected the incorrect input device when installing. My, times have changed: /etc/X11/xorg.conf no longer exists and neither does xorgconfig. As root and with the xserver deactivated, ‘xorgsetup’ segfaults. The closest thing to an /etc/X11/xorg.conf is /etc/X11/xorg.conf-vesa. The only instance of Mouse in that file is:
Code:

InputDevice “Mouse1” “CorePointer”
I hesitated to try appending
Code:

Option "ZAxisMapping" "4 5"
because it made me feel stupid. My intuition was right b/c that didn’t help at all. How do I change my /dev/mouse link in Slackware14?

chemfire 09-23-2013 05:53 PM

Can you post the contents of /var/log/Xorg.0.log ? that should show us what driver its using. It may be that you will need to create an xorg.conf but we should start out with knowing what X is auto-detecting.

jtsn 09-24-2013 02:08 AM

Try adding the following to /etc/X11/xorg.conf.d/mouse.conf

Code:

Section "InputClass"
  Identifier    "PointerInputClass0"
  MatchIsPointer "True"
  Option        "ZAxisMapping" "4 5 6 7"
EndSection


Drone4four 09-24-2013 03:14 PM

Here is my /etc/X11/xorg.conf.d/mouse.conf:
Code:

Section "InputClass"
  Identifier    "PointerInputClass0"
  MatchIsPointer "True"
  Option        "ZAxisMapping" "4 5 6 7"
EndSection

Here is my /etc/X11/xorg.conf-vesa: http://paste2.org/j3AKB9EZ
Here is my /var/log/Xorg.0.log: http://pastebin.ca/2457897
Here is my dmesg: http://pastebin.com/XKZaXP3T

ReaperX7 09-24-2013 03:23 PM

When you run xorgsetup, check your /root folder for a xorg.conf.new file.

X has been having trouble recently with proper detection of multiple monitor displays on video cards actually NOT being there. The cause of X's internal configuration being messed up is an upstream issue that may need reporting.

Just edit the xorg.conf.new file as needed for DRI, and remove the lines for the extra displays, save, and copy it to /etc/X11 and it should work now.

Drone4four 09-24-2013 06:21 PM

Ah yes, thanks, Reaper.

I tried commenting quite a few different combinations of lines out of the xorg.conf.new in /root. I obviously copied that file to /etc/X11/xorg.conf.

I tried commenting out the second instance of Screen under the ServerLayout section and the second "Screen" section. The file was initially set to load two similar modules: dri and dri2. I tried commenting out dri2 (but leaving dri) and that still didn't fix the X server. Likewise, I commented out dri, but re-enabled dri2. Still no dice.

It's worth noting that both Device sections were commented out by default.

I can't seem get X to start with the new config. I'm not familiar enough with DRI to figure out what parameters are essential and what are not.

I would really appreciate it if someone could advise me on this.

Here are the contents of the xorg.conf that I am experimenting with:

Code:

Section "ServerLayout"
        Identifier    "X.org Configured"
        Screen      0  "Screen0" 0 0
#        Screen      1  "Screen1" RightOf "Screen0"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath  "/usr/lib64/xorg/modules"
        FontPath    "/usr/share/fonts/local"
        FontPath    "/usr/share/fonts/TTF"
        FontPath    "/usr/share/fonts/OTF"
        FontPath    "/usr/share/fonts/Type1"
        FontPath    "/usr/share/fonts/misc"
        FontPath    "/usr/share/fonts/CID"
        FontPath    "/usr/share/fonts/75dpi/:unscaled"
        FontPath    "/usr/share/fonts/100dpi/:unscaled"
        FontPath    "/usr/share/fonts/75dpi"
        FontPath    "/usr/share/fonts/100dpi"
        FontPath    "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
        Load  "dri2"
        Load  "dbe"
        Load  "dri"
        Load  "glx"
        Load  "extmod"
        Load  "record"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

#Section "Monitor"
#        Identifier  "Monitor1"
#        VendorName  "Monitor Vendor"
#        ModelName    "Monitor Model"
#EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "SWcursor"                  # [<bool>]
        #Option    "kmsdev"                    # <str>
        #Option    "ShadowFB"                  # [<bool>]
        Identifier  "Card0"
        Driver      "modesetting"
        BusID      "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "ShadowFB"                  # [<bool>]
        #Option    "DefaultRefresh"            # [<bool>]
        #Option    "ModeSetClearScreen"        # [<bool>]
        Identifier  "Card1"
        Driver      "vesa"
        BusID      "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport  0 0
                Depth    1
        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    4
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    8
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    15
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    16
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    24
#        EndSubSection
EndSection

#Section "Screen"
#        Identifier "Screen1"
#        Device    "Card1"
#        Monitor    "Monitor1"
#        SubSection "Display"
#                Viewport  0 0
#                Depth    1
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    4
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    8
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    15
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    16
#        EndSubSection
#        SubSection "Display"
#                Viewport  0 0
#                Depth    24
#        EndSubSection
#EndSection

Here are the contents of my /var/log/Xorg.0.log: http://pastebin.ca/2457945

ReaperX7 09-24-2013 06:36 PM

Comment out only the extra monitors. DRI2 and DRI are the driver handlers, and DRI2 is the handler for the Gallium API under Mesa. Leave those uncommented along with GLX.

Here's a general usage revision you might need:

Note: I have added the fbdev driver detection, but this can be safely ignored if you don't have the xf86-driver-fbdev package installed from /extras. It's more or less there for legacy purposes.

You can also swap out the modesetting driver for any other video card driver needed such as radeon, nouveau, or intel should you have those cards.

Code:

Section "ServerLayout"
        Identifier    "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath  "/usr/lib64/xorg/modules"
        FontPath    "/usr/share/fonts/local"
        FontPath    "/usr/share/fonts/TTF"
        FontPath    "/usr/share/fonts/OTF"
        FontPath    "/usr/share/fonts/Type1"
        FontPath    "/usr/share/fonts/misc"
        FontPath    "/usr/share/fonts/CID"
        FontPath    "/usr/share/fonts/75dpi/:unscaled"
        FontPath    "/usr/share/fonts/100dpi/:unscaled"
        FontPath    "/usr/share/fonts/75dpi"
        FontPath    "/usr/share/fonts/100dpi"
        FontPath    "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
        Load  "dri2"
        Load  "dbe"
        Load  "dri"
        Load  "glx"
        Load  "extmod"
        Load  "record"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "SWcursor"                  # [<bool>]
        #Option    "kmsdev"                    # <str>
        #Option    "ShadowFB"                  # [<bool>]
        Identifier  "Card0"
        Driver      "modesetting"
        BusID      "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "ShadowFB"                  # [<bool>]
        #Option    "DefaultRefresh"            # [<bool>]
        #Option    "ModeSetClearScreen"        # [<bool>]
        Identifier  "Card1"
        Driver      "vesa"
        BusID      "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "ShadowFB"                  # [<bool>]
        #Option    "DefaultRefresh"            # [<bool>]
        #Option    "ModeSetClearScreen"        # [<bool>]
        Identifier  "Card2"
        Driver      "fbdev"
        BusID      "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport  0 0
                Depth    1
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    4
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    8
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    15
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    16
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    24
        EndSubSection
EndSection


turtleli 09-24-2013 07:33 PM

Maybe I'm confused. What are you trying to solve? Your initial post suggests to me that you were able to start X in the VM though you couldn't get the mouse wheel working.

If it was just the mouse wheel, there's no need to mess about with DRI, DRI2, monitors, graphics drivers or other display related stuff. You probably don't need a full xorg.conf, you should only need to override the mouse configuration, something like what jtsn suggested but obviously we need to figure out what should really go in that file.

I don't know if it'll help, but perhaps you could try using xev and scrolling your mouse wheel in the window. Look for what button events occur (if any) when you scroll up and down. For example, I get ButtonPress and ButtonRelease events for button 4 when I scroll up and button 5 when I scroll down.

ReaperX7 09-24-2013 08:31 PM

Virtual Machines, as he's pointing out, often have issues with peripheral devices being detected, especially VirtualBox as of late. I've been noticing that VirtualBox's mouse is somewhat glitchy and doesn't often register properly and the vboxvideo driver seems to not want to work with X11 in most regards simply not working at all and crashing.

In regards to this, a full xorg.conf might not be needed, but it's a good place to start the process of finding out what went wrong by having a master xorg.conf file to work from. As his Xorg.log.0 shows, basically, vboxvideo failed to load completely which caused vesa to fail too, and without fbdev to fallback, there was no available driver, and since X11's configuration mode has been problematic, xorgsetup fails to work properly resulting in the fact he couldn't get his mouse working also.

xorg.conf might be legacy, but it damn well works.

In fact VirtualBox has been rather problematic as of late with the Additions drivers being very glitchy and buggy, not just with GNU/Linux, but FreeBSD, and Windows as well.

turtleli 09-24-2013 09:37 PM

Quote:

Originally Posted by ReaperX7 (Post 5034190)
In regards to this, a full xorg.conf might not be needed, but it's a good place to start the process of finding out what went wrong by having a master xorg.conf file to work from.

I do not agree. Why introduce more variables to debug? xorg.conf files are useful if you need to override autodetect settings. It should be kept minimal, you should only fix what doesn't work. Drone4four cannot even start X with the new config, so having a full xorg.conf has instead introduced problems.

ReaperX7 09-25-2013 06:21 PM

He can't start xorg due to the fact he has a bad video driver.

Instead of condemning a full configuration file, you need to understand why it's useful...

...to present an xorg.conf DEFAULTS setup which you know always works. He needs defaults to work from to see what the standard defaults are then re-customize back to his personalized specifications.

For him the "modesetting" driver might not be wise to use, so he can switch it with the "vesa" driver.

Just becasue a script is old doesn't devalidate it's usage and usefulness. Automation often has it's problems and just because the automated design is there, doesn't walways mean it's always the best choice.

turtleli 09-25-2013 08:32 PM

...
Quote:

Originally Posted by ReaperX7 (Post 5034896)
He can't start xorg due to the fact he has a bad video driver.

Initial post states: Mouse wheel not working, which implies X was running and there was a working video driver.
Later post states: Cannot get X to run.
Changes made between X running and not running: xorg.conf
Cause of X failure: bad xorg.conf configuration

Quote:

Originally Posted by ReaperX7 (Post 5034896)
Instead of condemning a full configuration file, you need to understand why it's useful...

...to present an xorg.conf DEFAULTS setup which you know always works. He needs defaults to work from to see what the standard defaults are then re-customize back to his personalized specifications.

And I will repeat, it's now not working at all and has introduced problems?

I'm just saying, I am quite error prone but I (usually) read posts carefully and do do my research.

Please read the man page for Xorg(1) (xorgsetup executes this to generate an xorg.conf and then modifies that), in particular "-configure" in the OPTIONS section and the full CONFIGURATION section, and understand why autoconfiguration and minimal overrides for what isn't correct (i.e. wrong keyboard layout, video driver) is usually better than using a full xorg.conf. Essentially, safe fallbacks. If you provide a full xorg.conf, X will assume you know best. If you're wrong, well, it won't start.

Also, for a VM, why would you suggest that Drone4four use the nvidia, radeon or intel driver? It doesn't actually make sense.



I shall wait for the OP or others to respond before making further posts here.

Drone4four 09-26-2013 03:47 PM

The new /etc/X11/xorg.conf suggested by ReaperX7 now starts X. It's also worth noting that I am using vesa as the driver, and not nouveau. However my initial problem with the lack of scroll wheel functionality persists. Even with
Code:

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

in my xorg.conf, the scroll wheel still isn't working. Here is the full xorg.conf that I am using now:
Code:

Section "ServerLayout"
        Identifier    "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath  "/usr/lib64/xorg/modules"
        FontPath    "/usr/share/fonts/local"
        FontPath    "/usr/share/fonts/TTF"
        FontPath    "/usr/share/fonts/OTF"
        FontPath    "/usr/share/fonts/Type1"
        FontPath    "/usr/share/fonts/misc"
        FontPath    "/usr/share/fonts/CID"
        FontPath    "/usr/share/fonts/75dpi/:unscaled"
        FontPath    "/usr/share/fonts/100dpi/:unscaled"
        FontPath    "/usr/share/fonts/75dpi"
        FontPath    "/usr/share/fonts/100dpi"
        FontPath    "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
        Load  "dri2"
        Load  "dbe"
        Load  "dri"
        Load  "glx"
        Load  "extmod"
        Load  "record"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "SWcursor"                  # [<bool>]
        #Option    "kmsdev"                    # <str>
        #Option    "ShadowFB"                  # [<bool>]
        Identifier  "Card0"
        Driver      "vesa"
        BusID      "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "ShadowFB"                  # [<bool>]
        #Option    "DefaultRefresh"            # [<bool>]
        #Option    "ModeSetClearScreen"        # [<bool>]
        Identifier  "Card1"
        Driver      "vesa"
        BusID      "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option    "ShadowFB"                  # [<bool>]
        #Option    "DefaultRefresh"            # [<bool>]
        #Option    "ModeSetClearScreen"        # [<bool>]
        Identifier  "Card2"
        Driver      "fbdev"
        BusID      "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport  0 0
                Depth    1
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    4
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    8
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    15
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    16
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    24
        EndSubSection
EndSection

I'm not sure if this is still relevant, but is my /var/log/Xorg.0.log: http://paste2.org/Gbwm4745

Thank you ReaperX7, turtleli, chemfire, and jtsn for all your comments and suggestions.

Could any of you recommend trying something else to get my scroll wheel functionality?

Sorry for the delayed reply. I have been busy with other things.

turtleli 09-27-2013 02:48 PM

Quote:

Originally Posted by turtleli (Post 5034148)
I don't know if it'll help, but perhaps you could try using xev and scrolling your mouse wheel in the window. Look for what button events occur (if any) when you scroll up and down. For example, I get ButtonPress and ButtonRelease events for button 4 when I scroll up and button 5 when I scroll down.

Did you try this? What button events did you see (ignore all the mouse movement events)?

ReaperX7 09-27-2013 03:18 PM

ZAxisMapping should setup the wheel mouse completely and set it properly for scrolling. As Turtleli suggested run xev and see what comes out in the output and logs.

Do you by chance have package xf86-input-mouse installed? I know a lot of distributions ONLY supply the xf86-input-evdev package for udev purposes, and I think Patrick does still include some of the older drivers for maximum detection capabilities, but you should run and check pkgtool's list to be sure before we proceed any further.

I'm also wondering becasue of how fickle VirtualBox is, I'm wondering if there's a remote chance your system isn't looking for hald for some reason. It shouldn't, but just in case you require it, here's the downloads for it:

64-bit version
hal-0.5.14-x86_64-3

32-bit version
hal-0.5.14-i486-3

and the hal-info
hal-info-20091130-noarch-1

You shouldn't need this package at all to be truthful, but as I stated VirtualBox tends to misbehave and often doesn't work right in any regards.

Just curious but have you attempted to check your VirtualBox virtual machine of Slackware against another Virtual machine like qemu to see if one has problems the other does or doesn't?

As I stated before VirtualBox has been problematic as of late, so don't put too much stock in it being completely stable and useful, but we will see what we can do to help with the mouse problem.

To be completely honest, I think it's VirtualBox that has the problem and not Slackware.

turtleli 09-27-2013 07:51 PM

I found a evdev bug report with someone having issues in qemu using the -usbdevice tablet option. I also notice in your xorg.0.log that you have a virtualbox usb tablet device loaded as well which shows similar characteristics to the qemu -usbdevice tablet option. I'm guessing that this could be the source of your problems.


Quote:

Originally Posted by ReaperX7 (Post 5036073)
I'm wondering if there's a remote chance your system isn't looking for hald for some reason. It shouldn't, but...

No. HAL should not be installed. I don't use VirtualBox, but there's no reason to believe that it will suddenly make X use HAL. Programs do not mutate without valid reason.

Drone4four 09-28-2013 11:19 PM

Quote:

Originally Posted by turtleli (Post 5036055)
Did you try this? What button events did you see (ignore all the mouse movement events)?

Sorry for overlooking this suggestion when you first made it. When I run xev, moving the mouse cursor over the box causes code to whiz by in the console. Likewise, when I right click, left click, click both left and right buttons at the same time, code registers in console. Clicking the mouse wheel shows that something is happening. But when I scroll, nothing happens.

Quote:

Originally Posted by ReaperX7 (Post 5036073)
ZAxisMapping should setup the wheel mouse completely and set it properly for scrolling. As Turtleli suggested run xev and see what comes out in the output and logs.

See above for the output I saw when running xev.

Quote:

Do you by chance have package xf86-input-mouse installed? I know a lot of distributions ONLY supply the xf86-input-evdev package for udev purposes, and I think Patrick does still include some of the older drivers for maximum detection capabilities, but you should run and check pkgtool's list to be sure before we proceed any further.
pkgtool indicates that I have slackage installed called xf86-input-mouse-1.7.2-x86_64-1

Quote:

I'm also wondering because of how fickle VirtualBox is, I'm wondering if there's a remote chance your system isn't looking for hald for some reason. It shouldn't, but just in case you require it, here's the downloads for it:
64-bit version
hal-0.5.14-x86_64-3
32-bit version
hal-0.5.14-i486-3
and the hal-info
hal-info-20091130-noarch-1
You shouldn't need this package at all to be truthful, but as I stated VirtualBox tends to misbehave and often doesn't work right in any regards.
I held off on pursuing this suggestion as per turtleli on the next page confirming your claim that I shouldn’t need hal.

Quote:

Just curious but have you attempted to check your VirtualBox virtual machine of Slackware against another Virtual machine like qemu to see if one has problems the other does or doesn't?

As I stated before VirtualBox has been problematic as of late, so don't put too much stock in it being completely stable and useful, but we will see what we can do to help with the mouse problem.

To be completely honest, I think it's VirtualBox that has the problem and not Slackware.
I installed qemu on Ubuntu. It’s user friendly for users willing to pore over the documentation and get everything running with a CLI. I would like to do this, but there are so many other things on my agenda to ‘hack’ and learn from. Would trying another *nix iso in VirtualBox provide equivalently useful insight? I just tried elive topaz and the scroll wheel works perfectly automagically. Thinking there was a possibility that by interchanging the elive VM xorg.conf with the xorg.conf in my Slack14 VM might work. It didn’t, but at least we’ve ruled out that it’s a problem with VirtualBox.

Here is the elive xorg.conf for reference:

Code:

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
        Identifier        "Generic Keyboard"
        Driver                "kbd"
        Option                "XkbRules"        "xorg"
        Option                "XkbModel"        "pc105"
        Option                "XkbLayout"        "us,ca"
EndSection

Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "vboxmouse"
        Option                "Device"        "/dev/input/mice"
        Option                "Protocol"        "Auto"
        Option                "CorePointer"
EndSection

Section "Device"
        Identifier        "Configured Video Device"
        Driver                "vboxvideo"
EndSection

Section "Monitor"
        Identifier        "Configured Monitor"
EndSection

Section "Screen"
        Identifier        "Default Screen"
        Monitor                "Configured Monitor"
EndSection

Section    "Extensions"
  Option      "RANDR"    "enable"
  Option      "RENDER"    "enable"
  Option      "Composite" "enable"
EndSection

Section "dri"
        Mode 0666
EndSection

Thanks,turtleli and ReaperX7 for your continued patience and help.

turtleli 09-29-2013 09:20 AM

Are the VirtualBox guest additions installed? I've just installed Slackware64-14.0 as a VirtualBox guest and initially the mouse wheel would not work and the Xorg.0.log was very similar to yours. After installing the guest additions the mouse wheel works perfectly and the Xorg.0.log changes quite signficantly.

My Slackware64-14.0 VM does not use any xorg.conf files by the way.

Drone4four 09-29-2013 05:51 PM

@turtleli: I went to install these packages, including virtual box's dkms, guest additions and even guest-xll, from the Ubuntu repository but aptitude tells me they are already installed:

Code:

gnull@raring ~ $ sudo apt-get install virtualbox-guest-additions-iso virtualbox-guest-x11 virtualbox virtualbox-guest-dkms virtualbox-dkms
Reading package lists... Done
Building dependency tree
Reading state information... Done
virtualbox-guest-additions-iso is already the newest version.
virtualbox is already the newest version.
virtualbox-dkms is already the newest version.
virtualbox-guest-dkms is already the newest version.
virtualbox-guest-x11 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
gnull@raring ~ $


turtleli 09-29-2013 07:05 PM

I mean install the guest additions in your Slackware14 guest, not in your host system.

When your Slackware14 VM is running, go to the VirtualBox VM menu, Devices->Install Guest Additions which will insert a CD into the virtual machine CD drive, mount the CD if it doesn't happen automatically (I think it happens automatically if you're running kde or xfce) and as root execute the VBoxLinuxAdditions.run which you'll find there.

If you're familiar with SlackBuilds then an alternative is to use the virtualbox-addons and virtualbox-kernel-addons Slackbuilds. If you're not familiar then I would suggest you use the above option instead.

Drone4four 09-30-2013 03:17 PM

Ah yes, that worked. I immediately chose the second point of attack. Afterall, I go way back with the SlackBuilds community on irc. I shared some good times with mwalling and rworkman, alienBOB and Gizzmo. SlackBuilds.org had scripts for creating virtualbox-addons and virtual-box-kernel-addons. Everything built and installed real snappy. After rebooting, the scroll wheel was working. And the irregular mouse tracking behaviour described by ReaperX7 went away too.

turtleli: I wholeheartedly appreciate all your detailed suggestions. Thank-you, my friend.

ReaperX7 09-30-2013 08:15 PM

Do be careful with VirtualBox however in any regards. The Additions drivers have been problematic in recent versions, so do take care with them.


All times are GMT -5. The time now is 10:30 PM.