LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-06-2006, 11:39 PM   #1
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
Question Ain't working like it used to


I got Slackware11.0 up and running now on my pc. Standard setup, with 2.4.33 kernel. Everything is setup smoothly just like before, all my devices are detected, but they are acting weird.

First, I still no longer have DRI with my radeon generic driver. I haven't had DRI since 10.0, but thats not really such a big deal.

Second, my mouse is no longer behaving like it should. It is a Microsoft Intellimouse Explorer mouse, 5 buttons, and this is what I have for my xorg.conf (did not use existing xorg.conf, reran xorgconfig).
Code:
# Identifier and driver

    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "ExplorerPS/2" # Explorer PS/2
    Option "Device"      "/dev/mouse"
    Option "ZAxisMapping" "6 7"
    Option "Buttons" "7"
And of course, my .xinitrc
Code:
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
    xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
    xmodmap $usermodmap
fi

#custom mouse buttom remap
xmodmap -e "pointer = 1 2 3 6 7 4 5"

# Start the window manager:
exec /usr/X11R6/bin/startfluxbox
However, I can no longer scroll through pages like before.

Thirdly, and most important issue. No more sound. This is a strange issue here. My soundcard IS detected, just like before. I made sure I set the sound levels with alsamixer, and saved alsactl store as root, but when I play sounds, there is nothing. So, I made sure to check that speakers were plugged in, sound on the speakers turned up to the apropriate level, made sure the speakers where connected, and still nothing. I did not have this problem before, until 11.0. So what should I do now?
 
Old 10-07-2006, 02:49 AM   #2
SmearedBlackInk
LQ Newbie
 
Registered: Oct 2006
Location: Garden Grove, CA
Distribution: Slackware
Posts: 9

Rep: Reputation: 0
Sound Problem

I'm not sure about your other problems, but have you tried running alsaconf? If not, that should solve your problem. Good luck.

~Kc
 
Old 10-07-2006, 05:51 AM   #3
Eternal_Newbie
Member
 
Registered: Jun 2005
Location: The Pudding Isles
Distribution: Slackware
Posts: 573

Rep: Reputation: 59
EDIT: IGNORE this, simcox1 is correct
Code:
    Option "ZAxisMapping" "6 7"
    Option "Buttons" "7"
should be
Code:
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
Don't know about the sound, I'm afraid.

Last edited by Eternal_Newbie; 10-07-2006 at 09:50 AM.
 
Old 10-07-2006, 09:28 AM   #4
simcox1
Member
 
Registered: Mar 2005
Location: UK
Distribution: Slackware
Posts: 794
Blog Entries: 2

Rep: Reputation: 30
Your mouse problem is probably due to changes for .Xmodmap. I used to use

pointer = 1 2 3 6 7 4 5

but that no longer works. But this does

pointer = 1 2 3 4 5 8 9 6 7 10 11

xorg now recognises that my mouse has more buttons, so you have to adjust .Xmodmap for it to work.
 
Old 10-07-2006, 10:37 AM   #5
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Original Poster
Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
Ok. As for my sound issue. I did try running alsaconf. It found my card, and it reconfigured, but still nothing. I even ran xmms through xterm to see if there are any errors, nothing. Xmms plays, but there is just no sound...
 
Old 10-07-2006, 11:05 AM   #6
nykey
Member
 
Registered: Nov 2003
Posts: 360

Rep: Reputation: 30
Run 'rexima' in a terminal and check there if the volumes are ok.... I've got a feeling they will be at '0' value.
 
Old 10-07-2006, 11:53 AM   #7
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
For the sound problem, run alsamixer and set all the volumes (not, headphone jack sense and line jack sense may need to be set to off (or not set at all) as they tend to interfere with the sound).

Afterwards, run alsactl store to save the settings. Then open kmix or other volume control and set the volumes again.
 
Old 10-07-2006, 04:51 PM   #8
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Original Poster
Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
Ok, well rexima shows that all volumes are set above zero. Alsamixer reports the same thing, however I went in and set the mic to zero, and tried it again, still no sound.... grrr!
 
Old 10-07-2006, 05:54 PM   #9
onelung02
Member
 
Registered: Oct 2003
Location: utah
Distribution: Slackware 10.0, Gentoo 2006.0
Posts: 289

Rep: Reputation: 30
How are you testing if the sound works or not?
 
Old 10-07-2006, 06:12 PM   #10
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Original Poster
Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
I am testing just by running xmms. I even tried playing mp3s through mpg321. It plays, but no sound. I am at a loss. Sound technically works, some setting that I can't find could be the problem, because if sound didn't work, I would get an error message through xmms or mpg321, instead of it actually playing. If you want to know, this is the output for lsmod btw.
Code:
slackuser@slacker:~$ lsmod
Module                  Size  Used by    Not tainted
ntfs                   50848   1 (autoclean)
radeon                101856   0
snd-seq-oss            23104   0 (unused)
snd-seq-midi-event      3208   0 [snd-seq-oss]
snd-seq                33552   2 [snd-seq-oss snd-seq-midi-event]
snd-pcm-oss            28928   0 (unused)
snd-mixer-oss          11928   0 [snd-pcm-oss]
usb-storage            63520   1
printer                 7520   0 (unused)
keybdev                 1828   0 (unused)
mousedev                4244   1
hid                    21380   0 (unused)
usbmouse                1912   0 (unused)
input                   3104   0 [keybdev mousedev hid usbmouse]
usb-ohci               18856   0 (unused)
ehci-hcd               17644   0 (unused)
tulip                  39712   1
crc32                   2880   0 [tulip]
parport_pc             14692   0
parport                22472   0 [parport_pc]
uhci                   23804   0 (unused)
usbcore                56812   0 [usb-storage printer hid usbmouse usb-ohci ehci-hcd uhci]
snd-via82xx            13580   0
gameport                1388   0 [snd-via82xx]
snd-ac97-codec         68160   0 [snd-via82xx]
snd-pcm                52804   0 [snd-pcm-oss snd-via82xx snd-ac97-codec]
snd-timer              13168   0 [snd-seq snd-pcm]
snd-mpu401-uart         3120   0 [snd-via82xx]
snd-rawmidi            12224   0 [snd-mpu401-uart]
snd-seq-device          3716   0 [snd-seq-oss snd-seq snd-rawmidi]
snd                    34304   0 [snd-seq-oss snd-seq-midi-event snd-seq snd-pcm-oss snd-mixer-oss snd-via82x
x snd-ac97-codec snd-pcm snd-timer snd-mpu401-uart snd-rawmidi snd-seq-device]
soundcore               3300   5 [snd]
snd-page-alloc          4980   0 [snd-seq-oss snd-seq snd-mixer-oss snd-via82xx snd-pcm snd-timer snd-rawmidi
 snd-seq-device snd]
jfs                   141120   1 (autoclean)
ide-scsi                9392   0
agpgart                45092   1
slackuser@slacker:~$
 
Old 10-07-2006, 06:21 PM   #11
onelung02
Member
 
Registered: Oct 2003
Location: utah
Distribution: Slackware 10.0, Gentoo 2006.0
Posts: 289

Rep: Reputation: 30
Might be a shot in the dark, but what output plugin are you using within XMMS?
 
Old 10-07-2006, 07:16 PM   #12
IvanPro
LQ Newbie
 
Registered: Oct 2006
Location: Italia
Distribution: Slackware 11.0
Posts: 15

Rep: Reputation: 0
IF you have your speakers connected via analog connection, have you made sure that you have selected analog output in the sound mixer?

sorry if this is a dumb suggestion...
 
Old 10-07-2006, 08:07 PM   #13
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Original Poster
Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
Code:
IF you have your speakers connected via analog connection, have you made sure that you have selected analog output in the sound mixer?
Possibly, but I wouldn't know how to do that. I never had to do that. As soon as I changed the volume settings with alsamixer, things were ok, I have been doing this since Slackware10.0

As for xmms, I am using ALSA. Plus, I did make sure ot add my username to the sound in /etc/group.
 
Old 10-08-2006, 05:29 AM   #14
IvanPro
LQ Newbie
 
Registered: Oct 2006
Location: Italia
Distribution: Slackware 11.0
Posts: 15

Rep: Reputation: 0
well, if you happen to have an audigy series soundcard like me you type alsamixer and then enable the "Audigy A" item (press "m" on it). I know of this because I've had to do it with ALMOST every distro I tried all the time (maybe you could just have been lucky enough to miss this problem before?)... ;-)

give it a try and see if it helps... (I did it right now for my slack install...)

(edit)

sorry I missed the fact it was a VIA card...

Last edited by IvanPro; 10-08-2006 at 02:26 PM.
 
Old 10-08-2006, 10:46 AM   #15
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,180

Original Poster
Rep: Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377Reputation: 1377
That does not work either. Plus this is a VIA chipset, not audigy A. Alsamixer reports the soundcard as VIA 82C686A/B rev12.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
acpi nearly working IBM thinkpad R40e 2684HVG no Fn key working, throttling OK Emmanuel_uk Linux - Laptop and Netbook 2 05-31-2006 01:41 AM
Intel sound not working, usb modem not working. siriusb Linux - Hardware 8 03-04-2006 10:16 PM
F3-F10 is not working when F13-F20 is working in redht-8. haivinay Linux - General 0 09-20-2004 06:39 AM
Link/Applet not working in all Linux browsers, but working in IE MasterPatricko Linux - Software 6 09-04-2004 03:39 AM
cannot download files in mozilla -save dialog not working, galeon not working cmisip Linux - General 0 08-03-2003 03:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration