Page 1 of 4 123 ... LastLast
Results 1 to 10 of 38

Thread: Sound blaster Z Linux test-patch

  1. #1
    Join Date
    Nov 2008
    Beans
    30

    Sound blaster Z Linux test-patch

    http://forums.creative.com/showthread.php?t=741501

    This works to me, line out ,front left and front right. mic in 1st jack. in ubuntu 16.4 x64. I have Sb z.
    but not rear left and rear right. and no front panel for mic and headphones.
    Last edited by hhh81; May 28th, 2016 at 09:38 PM.

  2. #2
    Join Date
    Nov 2008
    Beans
    30

    Re: Sound blaster Z Linux test-patch

    i want to know how to keep the patch modify (changes/improvements) when will be out the next kernel.
    Last edited by hhh81; May 29th, 2016 at 05:26 PM.

  3. #3
    Join Date
    May 2014
    Location
    /home
    Beans
    11,247
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Sound blaster Z Linux test-patch

    Did you apply the patch to kernel source code? Or just download the kernel from dropbox?

  4. #4
    Join Date
    Nov 2008
    Beans
    30

    Re: Sound blaster Z Linux test-patch

    I have used and installed the .deb files from dropbox

    linux-image-4.5.0-sbz_4.5.0-sbz-1_amd64.deb
    linux-headers-4.5.0-sbz_4.5.0-sbz-1_amd64.deb
    Last edited by hhh81; May 29th, 2016 at 05:25 PM.

  5. #5
    Join Date
    May 2014
    Location
    /home
    Beans
    11,247
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Sound blaster Z Linux test-patch

    By using that you may put your system at risk because the kernel will update but not be used after rebooting since that kernel is 4.5 which is higher than the 4.4 kernels used by 16.04

  6. #6
    Join Date
    Nov 2008
    Beans
    30

    Re: Sound blaster Z Linux test-patch

    What should i do? Use ubuntu without audio ?
    Last edited by hhh81; May 29th, 2016 at 07:19 PM.

  7. #7
    Join Date
    May 2014
    Location
    /home
    Beans
    11,247
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Sound blaster Z Linux test-patch

    I have manually added the patch to 4.4 source code, compiled it and installed it in my kernel modules and nothing bad has happened. I do not have the sound blaster z
    Post the result of
    Code:
    ls /lib/modules
    and I will see if I can compile the modules for a 4.4 kernel that you have for a test

  8. #8
    Join Date
    Nov 2008
    Beans
    30

    Re: Sound blaster Z Linux test-patch

    user@user-System-Product-Name:~$ ls /lib/modules
    4.4.0-22-generic 4.5.0-sbz

    thank you.

  9. #9
    Join Date
    May 2014
    Location
    /home
    Beans
    11,247
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Sound blaster Z Linux test-patch

    You will need to boot into the 4.4.0-22 kernel before starting, use the Grub menu through Advanced Options to select the kernel


    First we will make a new directory and make copies of the modules
    Code:
    mkdir sound
    cp /lib/modules/4.4.0-22-generic/kernel/sound/pci/hda/*.ko sound/
    Now to install some packages to compile
    Code:
    sudo apt-get install git linux-headers-generic build-essential
    Clone the source code I put on github
    Code:
    git clone https://github.com/jeremyb31/4.4sound-blaster-z.git
    cd 4.4sound-blaster-z
    Copy some system files so they work

    Code:
    cp /usr/src/linux-headers-$(uname -r)/Module.symvers Module.symvers
    cp /usr/src/linux-headers-$(uname -r)/.config ./
    Finally to build the modules and copy them to the correct directory
    Code:
    make -C /lib/modules/$(uname -r)/build M=$(pwd) modules
    sudo cp *.ko /lib/modules/$(uname -r)/kernel/sound/pci/hda/
    Now you can reboot back to the 4.4.0-22 to test

  10. #10
    Join Date
    Nov 2008
    Beans
    30

    Re: Sound blaster Z Linux test-patch

    when i'll update to next kernel what commands should i do?

Page 1 of 4 123 ... LastLast

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
  •