Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
9 user(s) are online (7 user(s) are browsing Forums)

Members: 0
Guests: 9

more...

Support us!

Headlines

 
  Register To Post  

« 1 ... 6 7 8 (9)
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
UBUNTU STUDIO

I downloaded 25.04
But also 24.04.2 LTS

For the rest the graphics packages and everything else can always be removed.

I read this maybe it is useful for the purpose:

“Configure Current Audio Configuration” takes you to the screen that allows you to configure the PipeWire Quantum, or (24.04 LTS only) lets you launch Studio Controls if using PulseAudio/JACK*.
24.10 and later only: “Change Kernel Boot Parameters” allows you to change the boot parameters that configure the kernel to be low-latency**.
“START|STOP Dummy Audio Device” Starts or stops the dummy audio device, or allows you to have it start or stop on login.
“DISABLE|ENABLE PipeWire-JACK” allows advanced users to use native JACKd2 via QJackControl.
24.04 Only: “Switch Configuration” installs the classic PulseAudio/JACK configuration and removes the PipeWire Audio configuration, or does the reverse depending on what is installed.*

What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Not too shy to talk
Not too shy to talk


See User information
@balaton

The OP obviously

Go to top
Re: QEMU GPU-PCIe AmigaONE
Not too shy to talk
Not too shy to talk


See User information
@white you seem to have completely misunderstood my message

Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
@NinjaCyborg

probably yes, it can happen
If you ask me the question again, I'd be happy to read.

What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Not too shy to talk
Not too shy to talk


See User information
@white
If we can't prove to you that the problem is with your system configuration, isn't it simpler to ask the Linux support forum?
You are currently using Ubuntu. This is a very popular distribution. Many people use QEMU X86_64 with qemu passthru for Windows emulation.
They may even have the same hardware as you and use ‘sudo’
Please ask them for help ... thank you

Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
@smarkusg

Thanks for the advice,
You see a few years ago I needed to reflect.

So I decided to go to Spain and I did the "Camino for Santiago".
It was a particular experience difficult to explain.

Of course there is also in Italy a "The Camino di San Francesco in a city called Assisi"

The purpose is identical, it serves to reflect.

Less famous than the French-Spanish one.
But still important.

For you instead I would always recommend Spain, Pamplona
The Running of the Bulls starts in July.

I think you should go there, get informed maybe you will find your way.

Thanks...

----------------------------------------------
note:
I'm getting a better understanding of how pipewire works,
so I think I'll stick with the current Ubuntu 25.4

This script should help with switching audio but I have yet to try it.
-----------------------------------------------
#!/bin/bash

if [ "$1" == "pipewire" ]; then
echo "Switching to PipeWire..."
systemctl --user stop pulseaudio
systemctl --user disable pulseaudio
systemctl --user enable pipewire
systemctl --user enable wireplumber
systemctl --user start pipewire
systemctl --user start wireplumber
echo "Switched to PipeWire."

elif [ "$1" == "pulseaudio" ]; then
echo "Switching to PulseAudio..."
systemctl --user stop pipewire
systemctl --user stop wireplumber
systemctl --user disable pipewire
systemctl --user disable wireplumber
systemctl --user enable pulseaudio
systemctl --user start pulseaudio
echo "Switched to PulseAudio."

else
echo "Usage: $0 [pipewire|pulseaudio]"
echo "Specify 'pipewire' or 'pulseaudio' to switch between them."
fi


Edited by white on 2025/5/18 3:11:13
Edited by white on 2025/5/18 4:20:27
Edited by white on 2025/5/18 4:20:48
Edited by white on 2025/5/18 4:22:11
Edited by white on 2025/5/18 4:22:58
Edited by white on 2025/5/18 4:30:43
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
Here I emulated with Virt-Manager KVM with a single GPU with an Ryzen 5800x processor now 5 years ago.
Using a geforce 970.

Amilator a LIVE distribution with FS-UAE with AmigaOS 4.1 in this case I used Kali-Linux

I still have the Amilator iso based on Debian.
The author still maintains his project.
EX Amilator
https://amiga.vk3heg.net/

I wonder if the project could be adapted to qemu once I fix the audio in my setup
With a LIVE stick

Of course it is possible to emulate any AmigaOS system even the classic ones.

Here a nice video I made to understand what it is about for those who do not know the project.

https://youtu.be/tIteEp40txw


Edited by white on 2025/5/18 15:20:25
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
I really can't figure out the cause of the audio this only happens with the activation of the RadeonHD.chip driver

as soon as I initialize RadeonHD.chip
here come the errors:
alsa: Could not initialize DAC
alsa: Failed to open `default':
alsa: Reason: The host is not active
alsa: Could not initialize DAC
alsa: Failed to open `default':
alsa: Reason: The host is not active
audio: Could not create a backend for voice `via-ac97.out'

the switch-audio.sh script works fine
-----------------------------------------------------------------
#!/bin/bash

if [ "$1" == "pipewire" ]; then
echo "Switching to PipeWire..."
systemctl --user stop pulseaudio
systemctl --user disable pulseaudio
systemctl --user enable pipewire
systemctl --user enable wireplumber
systemctl --user start pipewire
systemctl --user start wireplumber
echo "Switched to PipeWire."

elif [ "$1" == "pulseaudio" ]; then
echo "Switching to PulseAudio..."
systemctl --user stop pipewire
systemctl --user stop wireplumber
systemctl --user disable pipewire
systemctl --user disable wireplumber
systemctl --user enable pulseaudio
systemctl --user start pulseaudio
echo "Switched to PulseAudio."

else
echo "Usage: $0 [pipewire|pulseaudio]"
echo "Specify 'pipewire' or 'pulseaudio' to switch between them."
fi
-----------------------------------------------------------------


systemctl --user status pipewire-pulse :

○ pipewire-pulse.service - PipeWire PulseAudio
Loaded: loaded (/usr/lib/systemd/user/pipewire-pulse.service; enabled; preset: enabled)
Active: inactive (dead) since Mon 2025-05-19 06:44:12 CEST; 6min ago
Duration: 2min 21.287s
Invocation: 55355049d1e845079a5eb8103987fa15
TriggeredBy: ○ pipewire-pulse.socket
Main PID: 3101 (code=exited, status=0/SUCCESS)
Mem peak: 3.2M
CPU: 19ms

May 19 06:41:51 systemd emulation[3080]: Started pipewire-pulse.service - PipeWire PulseAudio.
May 19 06:44:12 systemd emulation[3080]: Stopping pipewire-pulse.service - PipeWire PulseAudio...
May 19 06:44:12 systemd emulation[3080]: Stopped pipewire-pulse.service - PipeWire PulseAudio.

running the ./switch-audio.sh pulseaudio script

Stopping 'pipewire.service', but its triggering units are still active:
pipewire.socket
Removed '/home/white/.config/systemd/user/sockets.target.wants/pipewire.socket'.
Removed '/home/white/.config/systemd/user/default.target.wants/pipewire.service'.
Disabling 'pipewire.service', but its triggering units are still active:
pipewire.socket
The following unit files have been enabled in global scope. This means
they will still be started automatically after a successful disablement
in user scope:
pipewire.service
Removed '/home/white/.config/systemd/user/pipewire.service.wants/wireplumber.service'.
The following unit files have been enabled in global scope. This means
they will still be started automatically after a successful disablement
in user scope:
wireplumber.service
Created symlink '/home/white/.config/systemd/user/default.target.wants/pulseaudio.service' → '/usr/lib/systemd/user/pulseaudio.service'.
Created symlink '/home/white/.config/systemd/user/sockets.target.wants/pulseaudio.socket' → '/usr/lib/systemd/user/pulseaudio.socket'.
Switched to PulseAudio.


./switch-audio.sh pipewire

Switching to PipeWire...
Stopping 'pulseaudio.service', but its triggering units are still active:
pulseaudio.socket
Removed '/home/white/.config/systemd/user/sockets.target.wants/pulseaudio.socket'.
Removed '/home/white/.config/systemd/user/default.target.wants/pulseaudio.service'.
Disabling 'pulseaudio.service', but its triggering units are still active:
pulseaudio.socket
The following unit files have been enabled in global scope. This means
they will still be started automatically after a successful disablement
in user scope:
pulseaudio.service
Created symlink '/home/white/.config/systemd/user/default.target.wants/pipewire.service' → '/usr/lib/systemd/user/pipewire.service'.
Created symlink '/home/white/.config/systemd/user/sockets.target.wants/pipewire.socket' → '/usr/lib/systemd/user/pipewire.socket'.
Created symlink '/home/white/.config/systemd/user/pipewire.service.wants/wireplumber.service' → '/usr/lib/systemd/user/wireplumber.service'.
Switched to PipeWire.

note:

I don't think it's due to the Ubuntu 25.4 installation phase when it asks if you want to choose proprietary drivers or not.

Otherwise, everything I do with Ubuntu works.

I'll try to create some virtual machines with Virt-Manager and see what happens.

Now I had to do the backup and it took me a bit of time.


Aanyway I ordered exactly the card

Asus Radeon R9 270X DirectCU II TOP
2 GB GDDR5 memory

https://www.techpowerup.com/gpu-specs/ ... 70x-directcu-ii-top.b2450

Identical to the one used by other users.
if it doesn't work, patience I'll give up

I'll move on to something else


Edited by white on 2025/5/19 5:24:26
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
I also tried this test in the hope that it would work and it worked.
I took my HD.raw file with AmigaONE perfectly working with SiliconMotion the audio is perfectly working.

And I simply took the RadeonHD.chip driver
and renamed it to SiliconMotion.chip

Upon reboot I could select the 32Bit screen with SiliconMotion.
But the audio stopped working.
So it is the RadeonHD.chip driver that conflicts with the audio.

This is my simple report.

I hope it is the graphics card that for some reason creates this problem now I will wait for the:

Asus Radeon R9 270X DirectCU II TOP
2 GB GDDR5 memory

then I will stop I promise

What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
now it's clear that it's a paradoxical situation if I talk about AmigaOS on a Linux forum they probably won't be of much help.
Especially with qemu that emulates AmigaONE.
That's all.

So whoever wants to answer me I'm here and I thank you.
But tell me you're wrong these are the .logs that prove the opposite. Thanks

So I'm simply looking for a solution.
And since we are few to do this experiment what can I say.
Everyone do their own work.
At this point forums are not much use if used in this way.
My respect goes to all those who participate in this forum.

But instead of helping me I only hear you're wrong so I feel bad.
That's all.

Resized Image

also used this script for ALSA:
./alsa-info_alsa-info.sh

which returns this without showing everything because it is too long
the important points:

with:
./switch-audio.sh pipewire

!!##############################
!!ALSA Information Script v 0.5.3
!!################################

!!Script ran on: Mon May 19 21:35:30 UTC 2025

!!Linux Distribution
!!------------------

Ubuntu 25.04 \n \l DISTRIB_ID=Ubuntu DISTRIB_DESCRIPTION="Ubuntu 25.04" PRETTY_NAME="Ubuntu 25.04" NAME="Ubuntu" ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and ... cies/privacy-policy" UBUNTU_CODENAME=plucky LOGO=ubuntu-logo


!!DMI Information
!!---------------

Manufacturer: ASUS
Product Name: System Product Name
Product Version: System Version
Firmware Version: 3621
System SKU: SKU
Board Vendor: ASUSTeK COMPUTER INC.
Board Name: TUF GAMING B550-PLUS


!!ACPI Device Status Information
!!---------------

/sys/bus/acpi/devices/AMDI0010:03/status 15
/sys/bus/acpi/devices/AMDI0030:00/status 15
/sys/bus/acpi/devices/AMDIF030:00/status 15
/sys/bus/acpi/devices/MSFT0101:00/status 15
/sys/bus/acpi/devices/PNP0103:00/status 15
/sys/bus/acpi/devices/PNP0501:00/status 15
/sys/bus/acpi/devices/PNP0A08:00/status 15
/sys/bus/acpi/devices/PNP0C01:00/status 15
/sys/bus/acpi/devices/PNP0C02:01/status 15
/sys/bus/acpi/devices/PNP0C02:03/status 15
/sys/bus/acpi/devices/PNP0C0C:00/status 11
/sys/bus/acpi/devices/PNP0C0F:00/status 11
/sys/bus/acpi/devices/PNP0C0F:01/status 11
/sys/bus/acpi/devices/PNP0C0F:02/status 11
/sys/bus/acpi/devices/PNP0C0F:03/status 11
/sys/bus/acpi/devices/PNP0C0F:04/status 11
/sys/bus/acpi/devices/PNP0C0F:05/status 11
/sys/bus/acpi/devices/PNP0C0F:06/status 11
/sys/bus/acpi/devices/PNP0C0F:07/status 11
/sys/bus/acpi/devices/device:27/status 15


!!ACPI SoundWire Device Status Information
!!---------------



!!Kernel Information
!!------------------

Kernel release: #15-Ubuntu SMP PREEMPT_DYNAMIC Sun Apr 6 15:05:05 UTC 2025
Operating System: GNU/Linux
Architecture: x86_64
Processor: x86_64
SMP Enabled: Yes


!!ALSA Version
!!------------

Driver version: k6.14.0-15-generic
Library version: 1.2.13
Utilities version: 1.2.13


!!Loaded ALSA modules
!!----------------------------

snd_hda_intel (card 0)
snd_hda_intel (card 1)


!!Sound Servers on this system
!!----------------------------

PipeWire:
Installed - Yes (/usr/bin/pipewire)
Running - Yes

Pulseaudio:
Installed - Yes (/usr/bin/pulseaudio)
Running - No


!!Soundcards recognized by ALSA
!!-----------------------------

0 [NVidia ]: HDA-Intel - HDA NVidia
HDA NVidia at 0xfc080000 irq 35
1 [Generic ]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xfc700000 irq 61


!!PCI Soundcards installed in the system
!!----------------------------------------

03:00.1 Audio device [0403]: NVIDIA Corporation AD107 High Definition Audio Controller [10de:22be] (rev a1)
Subsystem: ZOTAC International (MCO) Ltd. Device [19da:1726]
06:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti HDMI Audio [Radeon HD 7870 XT / 7950/7970] [1002:aaa0]
Subsystem: PC Partner Limited / Sapphire Technology Device [174b:aaa0]
08:00.4 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller [1022:1487]
Subsystem: ASUSTeK Computer Inc. Device [1043:8797]
---------------------------------------------------------


HERE I ENABLE THE SCRIPT FOR PULSE AUDIO <<----
Result:


With the script that enables Pulse Audio then:
./switch-audio.sh pulseaudio

!!####################################
!!ALSA Information Script v 0.5.3
!!####################################

!!Script ran on: Mon May 19 21:47:40 UTC 2025


!!Linux Distribution
!!------------------

Ubuntu 25.04 \n \l DISTRIB_ID=Ubuntu DISTRIB_DESCRIPTION="Ubuntu 25.04" PRETTY_NAME="Ubuntu 25.04" NAME="Ubuntu" ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and ... cies/privacy-policy" UBUNTU_CODENAME=plucky LOGO=ubuntu-logo


!!DMI Information
!!---------------

Manufacturer: ASUS
Product Name: System Product Name
Product Version: System Version
Firmware Version: 3621
System SKU: SKU
Board Vendor: ASUSTeK COMPUTER INC.
Board Name: TUF GAMING B550-PLUS


!!ACPI Device Status Information
!!---------------

/sys/bus/acpi/devices/AMDI0010:03/status 15
/sys/bus/acpi/devices/AMDI0030:00/status 15
/sys/bus/acpi/devices/AMDIF030:00/status 15
/sys/bus/acpi/devices/MSFT0101:00/status 15
/sys/bus/acpi/devices/PNP0103:00/status 15
/sys/bus/acpi/devices/PNP0501:00/status 15
/sys/bus/acpi/devices/PNP0A08:00/status 15
/sys/bus/acpi/devices/PNP0C01:00/status 15
/sys/bus/acpi/devices/PNP0C02:01/status 15
15
/sys/bus/acpi/devices/PNP0C02:03/status 15
/sys/bus/acpi/devices/PNP0C0C:00/status 11
/sys/bus/acpi/devices/PNP0C0F:00/status 11
/sys/bus/acpi/devices/PNP0C0F:01/status 11
/sys/bus/acpi/devices/PNP0C0F:02/status 11
/sys/bus/acpi/devices/PNP0C0F:03/status 11
/sys/bus/acpi/devices/PNP0C0F:04/status 11
/sys/bus/acpi/devices/PNP0C0F:05/status 11
/sys/bus/acpi/devices/PNP0C0F:06/status 11
/sys/bus/acpi/devices/PNP0C0F:07/status 11
/sys/bus/acpi/devices/device:27/status 15


!!ACPI SoundWire Device Status Information
!!---------------



!!Kernel Information
!!------------------

Kernel release: #15-Ubuntu SMP PREEMPT_DYNAMIC Sun Apr 6 15:05:05 UTC 2025
Operating System: GNU/Linux
Architecture: x86_64
Processor: x86_64
SMP Enabled: Yes


!!ALSA Version
!!------------

Driver version: k6.14.0-15-generic
Library version: 1.2.13
Utilities version: 1.2.13


!!Loaded ALSA modules
!!----------------------------

snd_hda_intel (card 0)
snd_hda_intel (card 1)


!!Sound Servers on this system
!!----------------------------

PipeWire:
Installed - Yes (/usr/bin/pipewire)
Running - Yes

Pulseaudio:
Installed - Yes (/usr/bin/pulseaudio)
Running - Yes


!!Soundcards recognized by ALSA
!!-----------------------------

0 [NVidia ]: HDA-Intel - HDA NVidia
HDA NVidia at 0xfc080000 irq 35
1 [Generic ]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xfc700000 irq 61


!!PCI Soundcards installed in the system
!!----------------------------------------

03:00.1 Audio device [0403]: NVIDIA Corporation AD107 High Definition Audio Controller [10de:22be] (rev a1)
Subsystem: ZOTAC International (MCO) Ltd. Device [19da:1726]
06:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti HDMI Audio [Radeon HD 7870 XT / 7950/7970] [1002:aaa0]
Subsystem: PC Partner Limited / Sapphire Technology Device [174b:aaa0]
08:00.4 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller [1022:1487]
Subsystem: ASUSTeK Computer Inc. Device [1043:8797]

NOTE:
so the script enables or disables PulseAudio at the moment clearly on reboot everything goes back to normal.


Edited by white on 2025/5/19 22:21:12
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
TO RECAP:

!!ALSA Version
!!------------

Driver version: k6.14.0-15-generic
Library version: 1.2.13
Utilities version: 1.2.13


!!Loaded ALSA modules
!!----------------------------

snd_hda_intel (card 0)
snd_hda_intel (card 1)


!!Sound Servers on this system
!!----------------------------

PipeWire:
Installed - Yes (/usr/bin/pipewire)
Running - Yes

Pulseaudio:
Installed - Yes (/usr/bin/pulseaudio)
Running - Yes


!!Soundcards recognized by ALSA
!!-----------------------------

0 [NVidia ]: HDA-Intel - HDA NVidia
HDA NVidia at 0xfc080000 irq 35
1 [Generic ]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xfc700000 irq 61


!!PCI Soundcards installed in the system
!!----------------------------------------

03:00.1 Audio device [0403]: NVIDIA Corporation AD107 High Definition Audio Controller [10de:22be] (rev a1)
Subsystem: ZOTAC International (MCO) Ltd. Device [19da:1726]
06:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti HDMI Audio [Radeon HD 7870 XT / 7950/7970] [1002:aaa0]
Subsystem: PC Partner Limited / Sapphire Technology Device [174b:aaa0]
08:00.4 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller [1022:1487]
Subsystem: ASUSTeK Computer Inc. Device [1043:8797]

What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Quite a regular
Quite a regular


See User information
@white
Here's an easy solution. Go to your favourite web search engine. Type: pipewire sound as root. Follow first link (if that does not help then look at further links). I hope that will put an end on your suffering with this. This solution works for most problems

Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
@Balaton

I am trying in every way to make it work but it does not work.
I search on google for possible solutions.
But until now none of these solutions have worked.
When I had to do the GPU Passthrough I thought it was the most difficult thing.

The problem is the audio here is my procedure I start the script and it is also very convenient.

./switch-audio.sh pulseaudio

Result:

Resized Image

systemctl status --user pipewire.service pipewire-pulse.service

Result:
Is this my screenshot correct ?
According to the parameters indicated ?

Resized Image

In addition to asking questions on this topic and seeming that I am not able to do the steps to activate the audio and the various configurations.
I am simply explaining what is happening.

I also understand that if it works for you it is logical that the first thing that comes to mind is that I am doing something wrong.

I would probably do the same too.
But the steps are correct.

note:

The most absurd thing of all is that if I try to use the RadeonHD driver installer even the old ones (2.1) that are then compatible with the Radeon r9 when the system restarts.
It does not install anything in the paths where I should find the drivers.

I will make a video of a few minutes to demonstrate it.
Obviously I am wasting a lot of time on this.
And I did not think I would find these difficulties.


Edited by white on 2025/5/20 16:56:19
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Just can't stay away
Just can't stay away


See User information
@Balaton

I think that these parameters in:

/etc/modprobe.d/vfio.conf

options vfio-pci ids=1002:6798,1002:aaa0
softdep drm pre: vfio-pci
softdep snd_hda_intel pre: vfio-pci
blacklist radeon
blacklist amdgpu

are not correct for audio

I should probably write something like:

softdep snd_hda_intel (1) pre: vfio-pci
or something similar
but I have no idea what I could write to try another

snd_hda_intel


Why in the .log of !!ALSA Information Script v 0.5.3

it shows me this:

snd_hda_intel (card 0)
snd_hda_intel (card 1)

!!Soundcards recognized by ALSA
!!-----------------------------

0 [NVidia ]: HDA-Intel - HDA NVidia
HDA NVidia at 0xfc080000 irq 35
1 [Generic ]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xfc700000 irq 61

is it the same audio card one for the jack and the other for the audio ?


If I do:

aplay /usr/share/sounds/alsa/Front_Center.wav

I get:

Playing WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Frequency 48000 Hz, Mono

But I don't hear any sound.


If I use VLC instead all the audio outputs work alsa pulse audio etc.


Edited by white on 2025/5/20 16:44:14
Edited by white on 2025/5/20 16:45:12
Edited by white on 2025/5/20 17:04:01
Edited by white on 2025/5/20 17:13:32
What do you see when you close your eyes ?
I see light, lots of light
I see you, dad
And I see mommy too
And I see me and we are together
And we play forever.
Go to top
Re: QEMU GPU-PCIe AmigaONE
Home away from home
Home away from home


See User information
@white
Quote:
If I use VLC instead all the audio outputs work alsa pulse audio etc.
Does "sudo vlc ..." work on your system now, or not?
If it still doesn't work you didn't solve anything.

None of your problems is related in any way to the Linux distribution you are using, to QEmu nor to AmigaOS, just about getting the PipeWire sound system working even as root user, instead of simply using ALSA instead as suggested by @balaton, and as @balaton wrote the first Google search result for "pipewire sound as root", in my case (different users will get different results on any major search engine, depending on previous searches, geo-location, etc.) is https://www.reddit.com/r/pipewire/comments/mibuu9/pipewire_as_root/ in which everything is explained in detail you have to do to make it work.

Go to top

  Register To Post
« 1 ... 6 7 8 (9)

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project