Results 1 to 8 of 8

Thread: Aureal Vortex I - problems ...

  1. #1
    Junior Member
    Join Date
    May 2002
    Posts
    50

    Aureal Vortex I - problems ...

    I recently installed RH 7.3, and have an Aureal semiconductor / Vortex I soundcard (I'm assuming that's the 8820). I went to soundforge.net site and downloaded the latest aureal driver for the card, read the README, checked out the Makefile (I have a 400MHz PII, so i left the CPU option at 'Pentium'), and did a 'make install20' as indicated in the README.
    When I was running RH 7.2, this worked and I had sound. Now, under RH 7.3 I get two errors and several warnings -- issues about casting types and other lingo that are a bit over my head.

    I did a fresh install of RH 7.3 (no upgrade from RH 7.2), and I did do a 'sndconfig' -- it recognized my card, but said it was not supported. How could this have all worked so easily with RH 7.2 but not with RH 7.3

    Any help on the matter would be much appreciated ... I'm a rookie at linux, and I have gone through and read many associated posts on this matter but nothing seems to help ...

  2. #2

    Re: Aureal Vortex I - problems ...

    hello,
    the warning are something that you can safely ignore, there are frequent 'casting' warnings that can be ignored.

    What are the errors? My 1st guess is that soemthing that needed to be installed was not, my 1st guess would be kernel headers.

    And oh yea! Welcome to linux junior

  3. #3
    Junior Member
    Join Date
    May 2002
    Posts
    50

    Re: Aureal Vortex I - problems ...


    hello,
    the warning are something that you can safely ignore, *there are frequent 'casting' warnings that can be ignored.

    What are the errors? *My 1st guess is that soemthing that needed to be installed was not, my 1st guess would be kernel headers. *

    And oh yea! *Welcome to linux junior *
    I have done a " rpm -q kernel-source ", and the kernel source on my system is NOT installed

    The type of error message that i'm getting is the following (note, i did not include the whole error message, it would be too long :

    [root@localhost aureal]# make install20
    make install AUCHIP=AU8820
    make[1]: Entering directory `/root/Desktop/aureal'
    cc -D__KERNEL__ -DMODULE -DAU8820 -mpentium -O6 -fomit-frame-pointer -Wall -pi
    pe -I/usr/src/linux/include -c -o au_audio.o au_audio.c
    In file included from au_vortex.h:50,
    from au_audio.c:49:
    /usr/include/linux/autoconf.h:1:2: #error Invalid kernel header included in user space
    In file included from au_vortex.h:58,
    from au_audio.c:49:
    /usr/include/linux/module.h:60: parse error before `atomic_t'
    /usr/include/linux/module.h:60: warning: no semicolon at end of struct or union
    /usr/include/linux/module.h:60: warning: no semicolon at end of struct or union
    /usr/include/linux/module.h:62: parse error before `}'
    /usr/include/linux/module.h:62: warning: data definition has no type or storage class
    /usr/include/linux/module.h:91: parse error before `}'
    In file included from /usr/include/linux/timex.h:152,
    from /usr/include/linux/sched.h:14,
    from au_vortex.h:63,
    from au_audio.c:49:
    /usr/include/asm/timex.h:10:21: asm/msr.h: No such file or directory
    In file included from /usr/include/linux/sched.h:14,
    from au_vortex.h:63,
    from au_audio.c:49:
    /usr/include/linux/timex.h:173: field `time' has incomplete type
    In file included from au_vortex.h:64,
    from au_audio.c:49:
    /usr/include/linux/delay.h:13:23: asm/delay.h: No such file or directory
    In file included from /usr/include/linux/signal.h:4,
    from /usr/include/linux/sched.h:25,
    from au_vortex.h:63,


    I'm assuming the 'error Invalid kernel header included in user space is the cause of all my problems. Do i need to get the kernel source to remedy this? ... i'm not familiar with kernel headers, so i would be very grateful for any assistance offered.

  4. #4

    Re: Aureal Vortex I - problems ...

    hello,
    install kernel-source and they will have the kernel headers you need. The provide a bunch of cool stuff that makes it much easier to install kernel related items.

  5. #5
    Junior Member
    Join Date
    May 2002
    Posts
    50

    Re: Aureal Vortex I - problems ...


    hello,
    install kernel-source and they will have the kernel headers you need. *The provide a bunch of cool stuff that makes it much easier to install kernel related items. *
    I'm still having a little problems ... lemme go ahead and mention what I've done so far

    I got my kernel-source (kernel-2.4.18-3.src.rpm) and installed it (rpm -ivh <filename.rpm> ) ... it installed successfully (not sure where though) ... i am not sure weather i need to run any othe program or call after installing the kernel-source (pls verify)

    I attempted to create a symlink, but my directory structure is different than the typical /usr/src/linux-<kernel version> structure that I've seen before. In RH 7.3, here's what it looks like:

    /usr/src has only one directory (& no files) in it, that being /redhat ..... inside /usr/src/redhat are the following directories -- /BUILD, /RPMS, /SOURCES, /SPECS, & /SRPMS. I am unsure as to what to make a symlink to.

    Without making the symlink, i tryed installng the aureal driver, and got the same errors as before (basically, 2 errors again).

    Also, by installing the kernel source, what kind of cool stuff is there for me to use? I'd like to utilize these, but i'm unsure as to where to look ... any assistance would be great, and thanks so far for all the help!

  6. #6

    Re: Aureal Vortex I - problems ...

    hello,
    sorry for the delay - techincal difficulties

    the directory you mention is for redhat rpms, tyhe directory for kernel source should be at /usr/src/linux or maybe /usr/src/linux-2.4, but none of the files/directories you mentioned are right.

    what happens when you do rpm -ql kernel-source ? this will list out out the files in the rpm.
    here is a rpm cheat sheet
    http://www.linuxjunior.org/cgi-bin/p...play&id=35

  7. #7
    Junior Member
    Join Date
    May 2002
    Posts
    50

    Re: Aureal Vortex I - problems ...


    hello,
    sorry for the delay - techincal difficulties * *

    the directory you mention is for redhat rpms, *tyhe directory for kernel source should be at /usr/src/linux or maybe /usr/src/linux-2.4, *but none of the files/directories you mentioned are right. *

    what happens when you do rpm -ql kernel-source ? *this will list out out the files in the rpm.
    here is a rpm cheat sheet
    http://www.linuxjunior.org/cgi-bin/p...play&id=35
    After a butting heads with linux a little more (and with the assistance of you guys!), I did manage to get the aureal 1.1.2 drivers to install ... i was doing the wrong rpm command (had to 'rpm --rebuild kernel-2.4.18-3.src.rpm' and THEN the 'rpm -ivh on the resulting kernel-source<blah blah>.rpm' since an 'rpm -ql kernel-source' came up with nothing), SO THANKS EVERYONE FOR ALL YOUR HELP!

    I did get an error though during the aureal driver install, something that said 'Error [1] during make, ignored' ... so i take it its not a biggie ... i also got a message that no aureal 8820 module was installed, which perplexed me, but upon rebooting the system recognized 'new hardware' and Kadzu propperly configured it (upon prompting me) ... so i can finally listen to CDs now!!!

  8. #8
    Moderator
    Kind Mastermind
    stryder144's Avatar
    Join Date
    Aug 2001
    Location
    Somewhere Over the Rainbow
    Posts
    2,923

    Re: Aureal Vortex I - problems ...




    After a butting heads with linux a little more (and with the assistance of you guys!), I did manage to get the aureal 1.1.2 drivers to install *... i was doing the wrong rpm command (had to 'rpm --rebuild kernel-2.4.18-3.src.rpm' and THEN the 'rpm -ivh on the resulting kernel-source<blah blah>.rpm' since an 'rpm -ql kernel-source' came up with nothing), SO THANKS EVERYONE FOR ALL YOUR HELP!

    I did get an error though during the aureal driver install, something that said 'Error [1] during make, ignored' ... so i take it its not a biggie ... i also got a message that no aureal 8820 module was installed, which perplexed me, but upon rebooting the system recognized 'new hardware' and Kadzu propperly configured it (upon prompting me) ... so i can finally listen to CDs now!!!
    Congratulations on getting your sound back. Don't worry about butting heads with Linux, as that seems to be par for the course. The great thing is that you learned something new, so hopefully things will go smoother "next time". I, myself, enjoy butting heads with Linux. Of course, that is my decision (I butt heads with Windows a lot, but that is not something that I have decided to do. It is forced on me.).

Similar Threads

  1. Printing Problems in Mandriva 10.2
    By Coral_Sea in forum Linux - General Topics
    Replies: 2
    Last Post: 05-26-2005, 07:14 PM
  2. Fixing 95/98 Networking problems
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 01:35 AM
  3. Questions,sound, aureal, using MDK 9.0
    By SuperRobotic in forum Linux - General Topics
    Replies: 12
    Last Post: 02-10-2003, 01:31 PM
  4. Problems with Distros
    By GhostDawg in forum Linux - General Topics
    Replies: 5
    Last Post: 01-07-2003, 02:46 AM
  5. Problem Installing aureal drivers
    By Infohawk in forum Linux - General Topics
    Replies: 8
    Last Post: 02-12-2002, 08:00 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •