Tiny Core Linux
Tiny Core Base => Raspberry Pi => Topic started by: cosminbro on December 08, 2022, 11:12:27 AM
-
Hello,
Someone please help, I want to install roon bridge on Tiny Core Linux - Raspberry PI 4b - 8GB RAM version.
Thanks a lot
-
Is there an open source version of roon/ropieee?
-
Is there an open source version of roon/ropieee?
I don't want to use ropieee for may reasons, like I can'y use hidden WiFi SSID, it's big and not so customizable.
In the mean time, I manage to successfully install roon bridge, but I have two issues:
- it tells me ALSA libraries is not installed;
- it installs in /opt/RoonBridge, so I want persistence for opt folder. When I use the backup command, after reboot it changes the tc password, and I can't log in again.
-
I solve the problem with passsword not keeping after reboot.
But ALSA still refuse to work....
-
What aspect of alsa doesn’t work? Do you get an error message? What does “aplay -l” report?
-
I made a fresh installation - from scratch - and now ALSA it works.
In the mean time, I tried to configure WiFi: I successfully saw the wlan connection in iwconfig result, but now I don't figure out how to create a connection to a hidden SSID, with password, and make this configuration persistent of course ...
-
I use the tutorial from here:
https://iotbytes.wordpress.com/make-raspberry-pi-3-built-in-wifi-module-work-with-picore/
but after reboot, it doesn't connect automatically, I have to manually start wifi.sh again....
-
Did you try setting wifi.sh to run from bootlocal.sh with a pause before it?
-
Hi cosminbro
The tutorial you followed said add this line to your bootlocal.sh file:
/usr/local/bin/wifi.sh -a 2>&1 > /tmp/wifi.log
Is that line still in your bootlocal.sh file?
Does the file /tmp/wifi.log exist?
Are there any error/warning messages in /tmp/wifi.log?
-
Thanks to all, I manage to get it work :)
I write a complete tutorial here, you can include in a new topic if you want:
https://community.roonlabs.com/t/install-roon-bridge-on-tiny-core-linux/226067
-
I have an issue: how can I block on-board audio and HDMI audio, and prevent them to appear as sound output options, and make this persistent?
-
Yes, blacklist the alsa module(s) for those. I don't have a rpi4 so can't comment on the details.
-
Hi cosminbro
According to the kernel documentation:
module_blacklist= [KNL] Do not load a comma-separated list of
modules. Useful for debugging problem modules.found here:
https://mjmwired.net/kernel/Documentation/kernel-parameters.txt
So adding this to your cmdline.txt file should work:
module_blacklist=alsa
The cmdline.txt file should be in the first partition where your config.txt file is.
-
And don't forget to check the config.txt file with all the options to set the audio and sound parameters with the 3.5jack and hdmi.
Here's the great doc/info from raspberrypi.
https://www.raspberrypi.com/documentation/computers/config_txt.html
I even see this
https://www.raspberrypi.com/documentation/computers/config_txt.html#test_mode
That not so documented with another manufacture.
-
I think he wants to get sound from another output? Disabling alsa core, not just the specific alsa modules, would disable all sound.
-
I think he wants to get sound from another output? Disabling alsa core, not just the specific alsa modules, would disable all sound.
Yes, I want to keep only USB output in ALSA, and disable built-in and hdmi audio
-
Easiest to do that in the rpi config.txt
https://www.raspberrypi.com/documentation/computers/config_txt.html
removing the line
dtparam=audio=on
should take care of it.
-
It seems it apply to Raspberry OS, not to Tiny Linux - I can't find any config.txt in tiny core installation
Easiest to do that in the rpi config.txt
https://www.raspberrypi.com/documentation/computers/config_txt.html
removing the line
dtparam=audio=on
should take care of it.
-
To edit the file you need to mount the boot msdos part. of the boot media, like this if you use sdcard.
mount /mnt/mmcblk0p1/
vi /mnt/mmcblk0p1/config.txt
If you have nano installed it's little easier editor to handle the file.
nano /mnt/mmcblk0p1/config.txt
-
It works now for internal audio, but the HDMI remains enabled...
To edit the file you need to mount the boot msdos part. of the boot media, like this if you use sdcard.
mount /mnt/mmcblk0p1/
vi /mnt/mmcblk0p1/config.txt
If you have nano installed it's little easier editor to handle the file.
nano /mnt/mmcblk0p1/config.txt
-
What is in your config.txt? post the complete contents.