Skip to main content

3 posts tagged with "linux"

View All Tags

Fedora, switch audio channels with pipewire and wireplumber 0.5

· One min read

Update on this post, with the update to wireplumber v0.5 lua configuration files are not supported anymore. To switch channels on v0.5 you have to create the following file

.config/wireplumber/wireplumber.conf.d/51-change-channels.conf
monitor.alsa.rules = [
{
matches = [
{
node.name = "<name of the node>"
}
]
actions = {
update-props = {
audio.position = "FR,FL"
}
}
}
]

Check the previous post to understand how to retrieve the name of the node, if needed.

Fedora, switch audio channels with pipewire

· 5 min read
warning

The lua configuration files are valid only for wireplumber v<0.5. Please check here for the configuration required on v=0.5. This post remains valid for what concerns retrieving the node name required in the config file.

I bought a pair Creative Pebble V3[^1] and given my desk setup and the cables of the 2 speakers, I needed to switch left and right audio channels in order to setup correctly the speakers.

Now, I'm running Fedora Workstation and I never had to troubleshoot, manage, or change any audio settings besides adjusting volume when needed. I found out this task is not as easy as it seems, probably for a mixture of lack of documentation and lack of skills on my side.

ASPNET Core on CentOS

· 8 min read

Today I experimented with the DigitalOcean Cloud and the aspnet core deploy on a linux server. Specifically I wanted to deploy a sample .net core web app on a CentOS 7 server using nginx as a web server. I have no experience in managing a linux server or using nginx or deploying aspnet core to linux in general, however I do have some experience with the bash and the linux environment.