Work In Progress: 1.4.4
#21
(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.Big Grin
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!
[-] The following 1 user Likes agent_kith's post:
  • hkphantomgtr
Reply

#22
(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.Big Grin
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😊
[-] The following 1 user Likes hkphantomgtr's post:
  • Snoopy8
Reply

#23
(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]



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
Reply

#24
@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!
Reply

#25
(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 

Code:
mpd.conf
 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:

 
Code:
device "hw:0"


Diretta:Diretta Audio Protocol
Reply

#26
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. 
 
Code:
sudo rpi-update

[Image: 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.
Reply

#27
(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!
Reply

#28
(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. 
 
Code:
sudo rpi-update

[Image: 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!
Reply

#29
(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. 
 
Code:
sudo rpi-update

[Image: 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. Wink

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.
Reply

#30
(09-May-2025, 10:20 AM)hkphantomgtr Wrote: Thanks, AK.  It's fine. Wink

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!
Reply



Bookmarks



Users browsing this thread:
2 Guest(s)

[-]
Our Sponsors

[-]
Welcome
You have to register before you can post on our site.

Username/Email:


Password:





[-]
Latest Threads
[split] Possible To Load Snakeoil OS in ...
Last Post: agent_kith
Today 04:18 PM
» Replies: 10
» Views: 165
new install issues
Last Post: agent_kith
Today 04:11 PM
» Replies: 25
» Views: 490
Work In Progress: 1.4.4
Last Post: agent_kith
Today 04:07 PM
» Replies: 31
» Views: 804
Snakeoil 1.4.3 (High End U3)
Last Post: agent_kith
Today 04:04 PM
» Replies: 65
» Views: 2520
Snakeoil 1.4.0 (High End)
Last Post: agent_kith
Today 03:56 PM
» Replies: 73
» Views: 6059
Music Library and SSD
Last Post: Huey
Yesterday 05:01 AM
» Replies: 2
» Views: 52
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: 29
Snakeoil with Ubuntu Desktop ?
Last Post: agent_kith
08-May-2025 01:36 PM
» Replies: 5
» Views: 85
Tweaks to Do Music Your Way
Last Post: Snoopy8
08-May-2025 01:24 PM
» Replies: 0
» Views: 32

[-]
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.


Powered By MyBB, © 2002-2025. Theme © Melroy van den Berg.