Work In Progress: 1.4.4
|
Posts: 2,988
Threads: 192
Joined: Feb 2016
Reputation:
667
Location: Perth, WA
(06-May-2025, 08:51 PM)hkphantomgtr Wrote: Hi, AK, may I suggest that adding core temperature, clock speed and volt into the Webui Dashboard, so I can save some time in putty? Thanks for your concern. Created a ticket to this.
Spent most of my time preparing my resume and applying for jobs past few weeks so havn't really worked on Snakeoil OS as much as I want... Hopefully I can pick up the pace on Snakeoil OS development again... :/
Snakeoil Operating System - Music, your way!
Posts: 561
Threads: 29
Joined: Jan 2019
Reputation:
162
(07-May-2025, 11:31 AM)agent_kith Wrote: (06-May-2025, 08:51 PM)hkphantomgtr Wrote: Hi, AK, may I suggest that adding core temperature, clock speed and volt into the Webui Dashboard, so I can save some time in putty? Thanks for your concern. Created a ticket to this.
Spent most of my time preparing my resume and applying for jobs past few weeks so havn't really worked on Snakeoil OS as much as I want... Hopefully I can pick up the pace on Snakeoil OS development again... :/
I prefer you get a good job first😊
Posts: 41
Threads: 5
Joined: Jan 2023
Reputation:
15
Location: 中国
(26-Apr-2025, 03:22 PM)wxrbbs Wrote: [font]mpd.conf
Get configuration parameters error
zeroconf_enabled "yes"
zeroconf_name "wxrbbsroon"
audio_output {
type "alsa"
name " _OUTPUT="
device "hw:0: Diretta3FF0 [TargetApp_0000,0: TargetApp_0000"
buffer_time "40000"
period_time "10000"
mixer_type "none"
auto_format "no"
auto_channels "no"
replay_gain_handler "none"
}
It should be:
zeroconf_enabled "yes"
zeroconf_name "wxrbbsroon"
audio_output {
type "alsa"
name " _OUTPUT="
device "hw:0"
buffer_time "40000"
period_time "10000"
mixer_type "none"
auto_format "no"
auto_channels "no"
replay_gain_handler "none"[/font]
}
![[Image: cheer1.gif]](https://forums.snakeoil-os.net/images/onion/cheer1.gif)
Interim fix using ChatGPT: Update the init file located at
Code: /var/www/music_players/mpd-v23/init
with the code below:
if [ -z "${DEVICE}" ]; then
clean_output=$(echo "$AUDIO_OUTPUT" | cut -d ':' -f1-2)
ALSA_DEVICE="device \"$clean_output\""
else
ALSA_DEVICE="${DEVICE}"
fi
Posts: 2,988
Threads: 192
Joined: Feb 2016
Reputation:
667
Location: Perth, WA
@ wxrbbs What's the context of the MPD configuration you have above?
What's the problem you're trying to address?
Snakeoil Operating System - Music, your way!
Posts: 41
Threads: 5
Joined: Jan 2023
Reputation:
15
Location: 中国
08-May-2025, 03:11 PM
(This post was last modified: 08-May-2025, 03:12 PM by wxrbbs.)
(08-May-2025, 01:53 PM)agent_kith Wrote: @wxrbbs What's the context of the MPD configuration you have above?
What's the problem you're trying to address?
Hello ak,
I installed Diretta, and when MPD acquires the Diretta sound card, it writes all characters into the
file like this:
Code: device "hw:0: Diretta3FF0 [TargetApp_0000,0: TargetApp_0000"
, which causes MPD to fail to play music.
The correct parameter should be:
Diretta:Diretta Audio Protocol
Posts: 561
Threads: 29
Joined: Jan 2019
Reputation:
162
09-May-2025, 12:11 AM
(This post was last modified: 09-May-2025, 01:08 AM by hkphantomgtr.)
Hi, AK, when I update the Pi5 with Raspberry Pi OS with the following command, there are suspicious words, does it mean "RealTime" kernel? If so, I wish this will be true and is a good stable one. As the firmware of Pi5 only can be updated by this command in Raspberry Pi OS, not in Ubuntu.
AI said the following commands can do the same job but it's not at all.
Code: sudo apt update && apt full-upgrade -y
If Raspberry Pi OS offers Realtime kernel, maybe SO can try on this to see how the sound effect goes. Because the Pi5 need "rpi-update" to update the firmware.
Posts: 2,988
Threads: 192
Joined: Feb 2016
Reputation:
667
Location: Perth, WA
(08-May-2025, 03:11 PM)wxrbbs Wrote: I installed Diretta, and when MPD acquires the Diretta sound card, it writes all characters into the [/size][size=medium] Created an issue to track this. Will try and fix this in 1.4.4.
Snakeoil Operating System - Music, your way!
Posts: 2,988
Threads: 192
Joined: Feb 2016
Reputation:
667
Location: Perth, WA
(09-May-2025, 12:11 AM)hkphantomgtr Wrote: Hi, AK, when I update the Pi5 with Raspberry Pi OS with the following command, there are suspicious words, does it mean "RealTime" kernel? If so, I wish this will be true and is a good stable one. As the firmware of Pi5 only can be updated by this command in Raspberry Pi OS, not in Ubuntu.
![[Image: image.png]](https://i.ibb.co/TBSYt5cd/image.png)
AI said the following commands can do the same job but it's not at all.
Code: sudo apt update && apt full-upgrade -y
If Raspberry Pi OS offers Realtime kernel, maybe SO can try on this to see how the sound effect goes. Because the Pi5 need "rpi-update" to update the firmware. I'm not that familiar with this to be honest. From memory rpi-update just updates the debian packages, but your screen capture mention something about firmware.
you can update the firmware in Ubuntu via rpi-eeprom-update, but I'm unsure if they're doing the same thing here.
Anyways those look like debug messages, 0 means no, and 1 means yes. No real context to what they mean to be honest.
Snakeoil Operating System - Music, your way!
Posts: 561
Threads: 29
Joined: Jan 2019
Reputation:
162
(09-May-2025, 09:46 AM)agent_kith Wrote: (09-May-2025, 12:11 AM)hkphantomgtr Wrote: Hi, AK, when I update the Pi5 with Raspberry Pi OS with the following command, there are suspicious words, does it mean "RealTime" kernel? If so, I wish this will be true and is a good stable one. As the firmware of Pi5 only can be updated by this command in Raspberry Pi OS, not in Ubuntu.
![[Image: image.png]](https://i.ibb.co/TBSYt5cd/image.png)
AI said the following commands can do the same job but it's not at all.
Code: sudo apt update && apt full-upgrade -y
If Raspberry Pi OS offers Realtime kernel, maybe SO can try on this to see how the sound effect goes. Because the Pi5 need "rpi-update" to update the firmware. I'm not that familiar with this to be honest. From memory rpi-update just updates the debian packages, but your screen capture mention something about firmware.
you can update the firmware in Ubuntu via rpi-eeprom-update, but I'm unsure if they're doing the same thing here.
Anyways those look like debug messages, 0 means no, and 1 means yes. No real context to what they mean to be honest.
Thanks, AK. It's fine.
Fyi, rpi-update updates Pi firmware. And in my pi 5 case, interestingly, such update almost comes weekly.
rpi-eeprom updates something about booting. This command exits in Ubuntu natively.
Posts: 2,988
Threads: 192
Joined: Feb 2016
Reputation:
667
Location: Perth, WA
(09-May-2025, 10:20 AM)hkphantomgtr Wrote: Thanks, AK. It's fine. 
Fyi, rpi-update updates Pi firmware. And in my pi 5 case, interestingly, such update almost comes weekly.
rpi-eeprom updates something about booting. This command exits in Ubuntu natively. RPi-update appears to be a shell script. What happens if you just copies that file from a RaspOS and try to run it in Ubuntu? I might try that one day if you havn't done so yet.
Snakeoil Operating System - Music, your way!
|
Users browsing this thread: |
3 Guest(s)
|
|
Welcome
|
You have to register before you can post on our site.
|
Latest Threads
|
[split] Possible To Load Snakeoil OS in ...
Last Post: agent_kith
Today 04:18 PM
» Replies: 10
» Views: 169
|
new install issues
Last Post: agent_kith
Today 04:11 PM
» Replies: 25
» Views: 491
|
Work In Progress: 1.4.4
Last Post: agent_kith
Today 04:07 PM
» Replies: 31
» Views: 812
|
Snakeoil 1.4.3 (High End U3)
Last Post: agent_kith
Today 04:04 PM
» Replies: 65
» Views: 2524
|
Snakeoil 1.4.0 (High End)
Last Post: agent_kith
Today 03:56 PM
» Replies: 73
» Views: 6063
|
Music Library and SSD
Last Post: Huey
Yesterday 05:01 AM
» Replies: 2
» Views: 53
|
upmpdcli unable to start
Last Post: Amph
09-May-2025 08:16 PM
» Replies: 7
» Views: 1630
|
Audirvana
Last Post: hkphantomgtr
09-May-2025 04:01 PM
» Replies: 0
» Views: 31
|
Snakeoil with Ubuntu Desktop ?
Last Post: agent_kith
08-May-2025 01:36 PM
» Replies: 5
» Views: 86
|
Tweaks to Do Music Your Way
Last Post: Snoopy8
08-May-2025 01:24 PM
» Replies: 0
» Views: 33
|
SnakeoilOS Mission Statement
|
Our mission is to create a free to use computer OS that is easy to install, intuitive to operate and play music that will connect and engage with you emotionally.
SnakeoilOS gives you the freedom to spend more time on listening, enjoying and exploring music. Wasting time on computers is now a thing of the past! Everything is constantly evolving/improving. Please check back often for updates.
If you like this project, do show your support with a small token donation. All donations collected will be used to run this website, and for purchasing new equipment for the project.
|
|
|