I just figured out that the problem is not in Kali, it is that it's bare metal linux. I ran Kali on VMware and it works fine,did you use the--user
option when trying to check the status of those services? without that option, i don't get any output. for example
orCode:systemctl status --user 'pipewire*'
Code:systemctl status --user '*pulse*'
your original post says you are using kali purple. i thought there was only one version, but it may help to check and see if you are using the same version as my virtual machine so i am not giving you incorrect information. the commandlsb_release -a
should show some info about what you are running. this is the output i get in my virtual machine:
Code:lsb_release -a No LSB modules are available. Distributor ID: Kali Description: Kali GNU/Linux Rolling Release: 2023.2 Codename: kali-rolling
someone else mentioned checking installed packages. that might be helpful. this command should check for installed packages that contain the word pipe, pulse and pavu (for pavucontrol):
apt list '*pipe*' '*pulse*' 'pavu*' -i
the output from my vm in case we are running the same version:
Code:apt list '*pipe*' '*pulse*' 'pavu*' -i Listing... Done libpipeline1/kali-rolling,now 1.5.7-1 amd64 [installed,automatic] libpipewire-0.3-0/kali-rolling,now 0.3.65-3 amd64 [installed,automatic] libpipewire-0.3-common/kali-rolling,now 0.3.65-3 all [installed,automatic] libpipewire-0.3-modules/kali-rolling,now 0.3.65-3 amd64 [installed,automatic] libpulse-mainloop-glib0/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] libpulse0/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] libpulsedsp/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] pavucontrol/kali-rolling,now 5.0-2 amd64 [installed,automatic] pipewire-bin/kali-rolling,now 0.3.65-3 amd64 [installed,automatic] pipewire-pulse/kali-rolling,now 0.3.65-3 amd64 [installed,automatic] pipewire/kali-rolling,now 0.3.65-3 amd64 [installed,automatic] pulseaudio-module-bluetooth/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] pulseaudio-utils/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] pulseaudio/kali-rolling,now 16.1+dfsg1-2+b1 amd64 [installed,automatic] xfce4-pulseaudio-plugin/kali-rolling,now 0.4.5-1 amd64 [installed,automatic]
Any advice? Thanks.