Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-08-11 Thread hopkins


Hi,

Turning off the web interface via SSH and the setup menu does not seem
to be persisent after rebooting. Is there a way to do that ?

Thanks



hopkins's Profile: http://forums.slimdevices.com/member.php?userid=68982
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-02 Thread itsikhefez


Right.. that makes more sense... let me go over to that forum and come
back once its working in Raspbian



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-02 Thread paul-


Like I previously mentioned doing it in Raspbian first is going to be
easier, since there is full DKMS support.   Plus you have the Rasperry
PI forums that have many more users to help.  Once you get a working
driver, I can help with pCP if you want.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-02 Thread itsikhefez


I've got raspbian setup and am perusing around
https://github.com/raspberrypi/linux/tree/rpi-4.19.y/sound/soc/bcm

I'm thinking of using `rpi-proto` as a baseline and adapting to WM8741,
or add another option in `rpi-simple-soundcard` that references the
wm8741.

I've downloaded those source files locally and am a bit stuck on how to
build, install and load the new module.
(Whether its a new source file based on `rpi-proto` or a modified
version of the simple soundcard).

The `sound/soc/bcm` folder looks to be updated regularly with new
drivers so this seems to be a pretty common thing.
Are you familiar with any resource or guide that helps ramp up on the
development process?



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-01 Thread paul-


That codec is included with pCP, but you need a driver that implements
the codec for your board.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-01 Thread itsikhefez


paul- wrote: 
> The driver would have to reference the correct codec.  Would the cirrus
> logic card  be the same?   Do you know if someone has a driver built for
> this?

I found the codec implemented for the WM8741 (which is the DAC chip I'm
using) in the RPI github repo.
https://github.com/raspberrypi/linux/blob/rpi-4.19.y/sound/soc/codecs/wm8741.c

Does this make it easier to integrate to PCP ?



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-01 Thread paul-


I would just upgrade to 6.0.0  its 99% final.

For now, you will need to edit.  I'll consider better ways to do this in
the future.

/usr/local/etc/init.d/pcp_startup.sh

goto line 644, which looks like the below, and then increase the number
of retries.  There is 10 seconds between each retry.


Code:


RETRIES=3  # Retry network mounts, in case of power 
failure, and all devices restarting.
while [ $RETRIES -gt 0 ]; do
/bin/sh -c "mount ${MNTCMD}"
if [ $? -eq 0 ]; then
RETRIES=0
echo "${BLUE}Disk Mounted at 
/mnt/${PNT}."
else
RETRIES=$((RETRIES-1))
if [ $RETRIES -eq 0 ]; then
echo "${RED}Disabling network 
mount from server at ${IP}.${NORMAL}"
cp -f $NETMOUNTCONF /tmp/netconf
cat /tmp/netconf | awk '/^\[/ 
{m++}{if(m=='$I')sub("NETENABLE\=yes","NETENABLE\=no")}1' > $NETMOUNTCONF
LMSMOUNTFAIL="1"
else
echo "${RED}Disk Mount Error, 
Retrying $RETRIES more times...sleeping 10 seconds.${YELLOW}"
sleep 10
fi
fi
done




piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-03-01 Thread harry


paul- wrote: 
> I'm not sure I have a good solution for the NAS, You could increase the
> number of mount retries.
> 
> As for the date issue, in pCP6, I've just added date check to the LMS
> start sequence.  You could make the same edits on your side

Thanks for the reply! Increasing the number of mount retries sounds like
a good idea - sorry if it's obvious but how would I do that? I'm setting
up the mount using the web UI at the moment, and have upgraded to
version 5 now in case this was a new option. Equally how would I go
about adding the date check to LMS startup?



harry's Profile: http://forums.slimdevices.com/member.php?userid=29452
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread paul-


itsikhefez wrote: 
> 
> 1) If I make changes to it, how difficult would it be to add the
> modified driver to pCP ?
> 
It can be done, but a bit on the cumbersome side.  What I would suggest
you do is to make a driver with DKMS build scripts.  Then test it out on
a raspbian image.

> 
> 2) Are you familiar with the driver discussed in the thread I linked in
> the previous post?

That thread is very old.  Everything has evolved significantly since
then.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread itsikhefez


Thanks, I'll have to take a look at that sometime.

2 follow ups:
1) If I make changes to it, how difficult would it be to add the
modified driver to pCP ?
2) Are you familiar with the driver discussed in the thread I linked in
the previous post?



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread paul-


rpi-dac is just a generic i2s interface.  Very simple.   The source code
is in the RPI kernel github.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread itsikhefez


paul- wrote: 
> The driver would have to reference the correct codec.  Would the cirrus
> logic card  be the same?   Do you know if someone has a driver built for
> this?

Someone in this' long i2s RPI thread'
(https://www.raspberrypi.org/forums/viewtopic.php?f=44=8496=258427=amb=12407f515cd1187a6383a343d1806ddd#p258427)
said that driver works with the AMB.

Since the "RPI-DAC" driver seems to work, maybe that driver can be
adapted? Is the source code available somewhere?
I am a software engineer, and while it has been years since I worked on
drivers or other low level things, I may be able to adapt that driver to
the WM8741 using the datasheet.



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread paul-


itsikhefez wrote: 
> I'm trying to integrate pCP with the AMB gamma2 DAC module (Wolfson
> WM8741 chip).
> I've wired GND, BCK, LCLK and DATA to the gamma2.
> The gamma2 has an ASRC so MCLK signal is not required.
> 
> In the pCP settings, I've randomly chosen "RPi-DAC" and to my surprise
> it's actually working.
> I don't know which HAT the RPi-DAC is, but it is listed as pcm1794a
> based.
> I don't think this is the optimal configuration, for instance, there
> aren't any configurable settings.
> 
> What would be the best way to configure this? Can I add a new DAC
> option, or custom settings via a config file?

The driver would have to reference the correct codec.  Would the cirrus
logic card  be the same?   Do you know if someone has a driver built for
this?



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread paul-


chris5u wrote: 
> Even tried loading pCP v6.0, still same problem. Is there some recent
> issue with touchscreen? 
> 

There were recent driver changes made by rpi in the pCP 6.0.0 kernels. 
My RPI3 + touchscreen + hifiberry Dac+ works fine with wifi though.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread chris5u

I’m having trouble with built-in WiFi on pCP 3B+ with HiFi Berry DAC+
using Raspberry touchscreen. Worked fine for ~ 1 year and then lost WiFi
capabilities. Tried swapping to another 3B+ and same problem with WiFi
with touchscreen. Even tried loading pCP v6.0, still same problem. Is
there some recent issue with touchscreen? The pCP 3B+ with DAC+ that I
swapped out from touchscreen now works fine stand alone with WiFi.

Copy of WiFi settings page is attached, after fresh install of v5.0 on
SD and then applied HotFix to 5.0.1. wpa_supplicant.conf is apparently
loaded and SSID & PSK PW recognized, but WiFi MAC & IP not found . . .

I’d appreciate any suggestions from the community. I really need WiFi to
stream from LMS to my stereo. Thanks!

Chris



SB3; Squeeze Boom; rPi 3B - HiFiBerry DAC+; rPi 3B+ - HiFiBerry DAC+
with LMS

chris5u's Profile: http://forums.slimdevices.com/member.php?userid=68275
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-28 Thread itsikhefez


I'm trying to integrate pCP with the AMB gamma2 DAC module (Wolfson
WM8741 chip).
I've wired GND, BCK, LCLK and DATA to the gamma2.
The gamma2 has an ASRC so MCLK signal is not required.

In the pCP settings, I've randomly chosen "RPi-DAC" and to my surprise
it's actually working.
I don't know which HAT the RPi-DAC is, but it is listed as pcm1794a
based.
Although, I don't think this is the optimal configuration, for instance,
there aren't any configurable settings.

What would be the best way to configure this? Can I add a new DAC
option, or custom settings via a config file?



itsikhefez's Profile: http://forums.slimdevices.com/member.php?userid=69115
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-27 Thread paul-


I'm not sure I have a good solution for the NAS, You could increase the
number of mount retries.

As for the date issue, in pCP6, I've just added date check to the LMS
start sequence.  You could make the same edits on your side



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-27 Thread harry


I'm running PCP on a Raspberry Pi 3, connected via ethernet and wifi.
It's used as an LMS server rather than as a player, and music is stored
on a WD My Cloud NAS. I'm still running version 3.2 because generally
speaking it works so reliably I haven't found the need to upgrade
although am happy to do so if it will help with this issue! 

Unfortunately we've been getting regular power cuts recently. When power
is restored, PCP / LMS restarts quicker than either our internet router
or the NAS. This means that PCP fails to set its time, and also fails to
restore the CIFS mount of the NAS. (And if we don't notice this, then
when you try to play music via LMS, it doesn't find the files, and
removes them from the library, necessitating an annoying library
rescan.) 

What's the best way to fix this? Seems like the options would be either
to delay boot after an unexpected shutdown, or to keep trying for NTP
and the network filesystem if they're not available at first. I don't
know how to do either of these! I feel sure this must have been covered
somewhere so apologies if this is repetitive!



harry's Profile: http://forums.slimdevices.com/member.php?userid=29452
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-25 Thread Man in a van


@MOHN JADDEN
So you are going 

Analogue out from the rpi > 5.1 receiver > ADC > Optical input on the
Soundbar.

Does the soundbar control the volume ?

Why not get a Spdif hat and go 

Spdif  > Soundbar with optical?

If you go cheapo then you may find there are no drivers for the board in
pCP, so check first. 

Not to be rude but this is now starting to drift away from the Thread
title. :)

If you wish to continue, then why not start a new thread with specific
details (names of equipment might help) full set-up details and what you
wish to achieve.

Location might help (I'm guessing USA ?).

More people might contribute :)

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-25 Thread MohnJadden


Man in a van wrote: 
> If you receiver has digital imputs and you don't use DSD files then you
> can find a spdif hat for the pi, or a hat with analogue outputs, plenty
> to choose from.
> 
> I would recommend a reputable name and not a cheapo from you know where
> :)
> 
> ronnie
> 

It only has analog inputs - it's just a thrift store 5.1 receiver that
outputs over analog to an ADC (yeah, it's a cheapo, but it works) which
goes to a soundbar TOSlink input.  No RCAs available on the soundbar and
I'm doing this on the cheap.  

If I get a HiFiBerry DAC+ do I need an amp as well, or will the
HiFiBerry have amp capability?



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-25 Thread paul-


WMB wrote: 
> 
> Possibly too swiftly because I find the wifi dongle does not always seem
> to load in time, but a reboot generally does the trick.
> 
I would suspect a DHCP server delay, on the wifi page, you can increase
the network timeout.  It defaults to 50, but I've seen some need to set
this to 65.

> 
> I initially had a problem with V5.0 the amplifier being muted which was
> not evident on the earlier version and which was resolved with a line in
> the startup -dtoverlay=iqaudio-dacplus,unmute_amp- which I found
> (somewhat hidden) in the IQ guide.

You should be able to select that option in the card config page.   A
better option would be to add 22 to the GPIO setting (I think active
low) on the squeezelite page.  That will mute and unmute the amp based
as needed.

> 
> The rotary volume control is another matter... 
> 

For this, I would look at this
https://forums.slimdevices.com/showthread.php?107001-ANNOUNCE-SqueezeButtonPi-Tool-to-use-buttons-and-rotary-encoders-on-a-RPi

The extension is pcp-sbpd.tcz



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-25 Thread Man in a van


MohnJadden wrote: 
> That did the trick, thank you!  It's a bit on the quiet side but I'm
> guessing I'll need a DAC since it's coming out of my headphone jack and
> right into my receiver by way of a 3.5 to RCA splitter.  
> 
> I appreciate all the help!


If you receiver has digital imputs and you don't use DSD files then you
can find a spdif hat for the pi, or a hat with analogue outputs, plenty
to choose from.

I would recommend a reputable name and not a cheapo from you know where
:)

ronnie


I once watched the great man on a Thanksgiving day game, ripp a
Turducken apart with his hands !!:)



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread MohnJadden


That did the trick, thank you!  It's a bit on the quiet side but I'm
guessing I'll need a DAC since it's coming out of my headphone jack and
right into my receiver by way of a 3.5 to RCA splitter.  

I appreciate all the help!



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread Man in a van


Use 

https://www.balena.io/etcher/

to make the image on the sd card, no need to unzip the download.

29540

29541


+---+
|Filename: bottom.png   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29541|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread MohnJadden


I burned the image using a Windows machine and was prompted to format
the disk in order to read it. I'll double check later but I don't think
I was able to open the SD card in Explorer without formatting it.



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread paul-


You can use any machine,  what do you use to burn the image?

The file gets renamed after use.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread MohnJadden


paul- wrote: 
> The console is set for autologon.To be honest, I have not used the
> setup method in a long time...   Dropping a wpa_supplicant.conf on the
> boot partition works so much easier.

Is there a way to do that without a Linux machine available other than
the Pi itself? I was able to create the wpa_supplicant file according to
the config link and save it, but it disappeared after rebooting.



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread paul-


The console is set for autologon.To be honest, I have not used the
setup method in a long time...   Dropping a wpa_supplicant.conf on the
boot partition works so much easier.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread MohnJadden


paul- wrote: 
> After you set the wifi parameters, you need to backup, then reboot.
> 
> Setup with keyboard and mouse instructions are listed here  Scroll
> down to the second section.
> 
> https://www.picoreplayer.org/how_to_setup_wifi_on_pcp_without_ethernet.shtml
> 
> of course the first method listed works too.
I tried both pcp br after exiting setup and backing up from the setup
menu then rebooting. The issue persists in both cases. Should I be
running setup as sudo? For what it's worth I don't get a prompt to log
on, this is a directly connected monitor.



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-24 Thread MohnJadden


paul- wrote: 
> After you set the wifi parameters, you need to backup, then reboot.
> 
> Setup with keyboard and mouse instructions are listed here  Scroll
> down to the second section.
> 
> https://www.picoreplayer.org/how_to_setup_wifi_on_pcp_without_ethernet.shtml
> 
> of course the first method listed works too.
I did a backup and reboot from the setup command, and the issue
persists.



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-23 Thread paul-


After you set the wifi parameters, you need to backup, then reboot.

Setup with keyboard and mouse instructions are listed here  Scroll
down to the second section.

https://www.picoreplayer.org/how_to_setup_wifi_on_pcp_without_ethernet.shtml



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-23 Thread MohnJadden


I'm running a brand new burned image of PicorePlayer 5.0, standard
build, on a Pi 3B+.  It boots just fine.  I'm not connected to Ethernet
since I have no wired network connectivity by my stereo.  

When I run setup and enter the correct wifi setup info - including all
correct case letters - and set the authentication as WPA, it doesn't
connect after I exit setup.  If I ping 8.8.8.8, it gives no route to the
host.  If I reboot, it searches for the network and finds nothing.  When
I run setup, none of the information has been saved - wifi is on but no
info is populated for the SSID, password, or authentication type.  If I
repeat setting up wifi and back up the config, the situation persists. 


What am I doing incorrectly here?  I've got WPA2-Personal set up for the
encryption on the networks from my router, and I'd much rather keep it
to WPA2 rather than roll down to WPA.



MohnJadden's Profile: http://forums.slimdevices.com/member.php?userid=69886
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-23 Thread Michael Herger

In another thread, someone noted that if one plans to run LMS on the rPi
(with piCorePlayer), resizing the SD card to 300MB was too small and
perhaps 2000MB would be better.  That's the first I'd seen this thought.
Is this only if one plans to use the SD card for holding the cache.  In
my own case, I use 300MB but have the LMS cache stored on the attached
USB drive (that holds my music files).   Thanks for your thoughts on
this.


I don't see why you wouldn't use the full card size. You bought it, use 
it. Most users probably are using just the SD card, because it's easier 
and does work well enough (I'm close to ending my third year of using 
the same card 24x7 as a LMS).


--

Michael
___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-23 Thread garym


In another thread, someone noted that if one plans to run LMS on the rPi
(with piCorePlayer), resizing the SD card to 300MB was too small and
perhaps 2000MB would be better.  That's the first I'd seen this thought.
Is this only if one plans to use the SD card for holding the cache.  In
my own case, I use 300MB but have the LMS cache stored on the attached
USB drive (that holds my music files).   Thanks for your thoughts on
this.



*Home:* VBA 4TB (2.5)>LMS 7.9.2>Transporter, Touch, Boom, Radio (all
ethernet)
*Cottage:* VBA 3TB (2.4)>LMS 7.9.1>Touch>Benchmark DAC I, Boom, Radio
w/Battery (ethernet, Radio WIFI)
*Office:* Win10(64)>LMS 7.9.2>Squeezelite
*The Wild (no internet): *PiCorePlayer 4.0 on rPi 3B+, hifiberry
Dac+Pro, 4TB USB (LMS & Squeezelite) 
*Controllers:* iPhone6 & iPadAir2 (iPeng), CONTROLLER, or SqueezePlay
7.8 on Win10(64) laptop
*Files:* ripping: dbpa > FLAC; post-rip: mp3tag, PerfectTunes;
Streaming: Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-20 Thread tw99


paul- wrote: 
> Why would you need to start before the normal attempt to start
> squeezelite?   If squeezelite is running do nothing, if it's not
> running, try to start it.
> 
> Just use "/usr/local/etc/init.d/squeezelite status"

Thanks, I've re-coded it that way, seems to work fine.



tw99's Profile: http://forums.slimdevices.com/member.php?userid=51684
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-20 Thread paul-


tw99 wrote: 
> OK - so are those user commands guaranteed to be run before squeezelite
> is started by PCP & does the startup process wait for them to complete ?
> 
> 
> If not I'll also need to handle what happens if the DAC happens to be
> powered up, which would have allowed PCP's squeezelite to start normally
> before my script gets in there.

Why would you need to start before the normal attempt to start
squeezelite?   If squeezelite is running do nothing, if it's not
running, try to start it.

Just use "/usr/local/etc/init.d/squeezelite status"



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-20 Thread tw99


paul- wrote: 
> You can still use a script.  Just put the script in your home directory.
> Then you can run it in the user commands section on the tweaks page.  
> I would recommend that you start squeezelite by using the init.d
> script.
> 
> /usr/local/etc/init.d/squeezelite start
> 
> You can also use the same script to check status.

OK - so are those user commands guaranteed to be run before squeezelite
is started by PCP & does the startup process wait for them to complete ?


If not I'll also need to handle what happens if the DAC happens to be
powered up, which would have allowed PCP's squeezelite to start normally
before my script gets in there.



tw99's Profile: http://forums.slimdevices.com/member.php?userid=51684
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-20 Thread paul-


You can still use a script.  Just put the script in your home directory.
Then you can run it in the user commands section on the tweaks page.  
I would recommend that you start squeezelite by using the init.d
script.

/usr/local/etc/init.d/squeezelite start

You can also use the same script to check status.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-20 Thread tw99


I'm using PiCorePlayer with a USB DAC. It works very well indeed.  

The only issue I have is what happens if the USB DAC is not powered on
when PCP starts up. In this case squeezelite fails to start because the
specified output device is not available. So it needs some manual
intervention to get it to work again.

Before I used PCP I had a trivial script that waited for the USB DAC to
be available before properly starting squeezelite, as follows.   Is
there a way I can do something like this with the existing PCP
customization options ? Or if I need to hack it in somewhere by hand,
any suggestions as to the best place ?


Code:

#!/bin/bash
  
  while true
  do
  # see if USB DAC is available yet
  if ~pi/squeezelite-armv6hf -l | grep -ql "Anti"
  then  # it is
  ~pi/squeezelite-armv6hf -s 192.168.0.4 -n "Lounge RPi"
  else # keep waiting
  sleep 1
  fi
  done
  



Thanks in advance for any ideas...



tw99's Profile: http://forums.slimdevices.com/member.php?userid=51684
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-17 Thread dhull


Never mind, I found it under the Beta tab.



SB3 / Synology NAS running Logitech Media Server 7.9.0 / Squeeze Lite on
Raspberry Pi 2 & 3

dhull's Profile: http://forums.slimdevices.com/member.php?userid=19653
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-17 Thread dhull


Is there an option to set a static IP address? The closest thing I can
find it turning off WiFi. I've done that and the wired connection is
working with a DHCP assigned address.



SB3 / Synology NAS running Logitech Media Server 7.9.0 / Squeeze Lite on
Raspberry Pi 2 & 3

dhull's Profile: http://forums.slimdevices.com/member.php?userid=19653
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-17 Thread paul-


Not sure why it wouldn't be saved.   Are you saying you can't reset
it up again?



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-17 Thread dhull


I did an in-situ upgraded to 5.0 after the required hotfix. All went
well and things are working. But the upgrade didn't save the static IP
address I used before the upgrade. I don't see a network option for
this, but maybe I missed it. Please advise.



SB3 / Synology NAS running Logitech Media Server 7.9.0 / Squeeze Lite on
Raspberry Pi 2 & 3

dhull's Profile: http://forums.slimdevices.com/member.php?userid=19653
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-16 Thread paul-


Has to be done from an ssh session.  
https://www.picoreplayer.org/how_to_upgrade_lms.shtml



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-16 Thread schiff1108


I am on pCP 5 on LMS 7.9.2

What is the most easy and safe way to upgrade to a higher version of
LMS?

Thanks



Living Room / Hifi: piCorePlayer 4.0.0 on rPi 3B+ & Allo DigiOne & 1TB
USB (LMS 7.9.2 & Squeezelite) & Keces DC-116, Mutec MC-3+ Smart Clock,
Rega DAC R, Rotel RB/RC-1070, Klipsch Forte III
Bedroom: Boom
Kitchen: Radio
Spare: SB3, Touch

schiff1108's Profile: http://forums.slimdevices.com/member.php?userid=64153
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-15 Thread Greg Erskine


hi ElEsido,

If I remember correctly, in piCore, /etc/fstab is generated
"dynamically" early during every boot process.

When I tried making my own /etc/fstab and saving with a backup I found
it loaded too late in the boot process to be used.

Also, most fstab entries are "noauto" so mount -a doesn't mount them.

For mounting devices for LMS, I think Paul has by-passed fstab and mount
-a by scripting mounts directly in a startup script.

regards
Greg



Greg Erskine's Profile: http://forums.slimdevices.com/member.php?userid=7403
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-14 Thread paul-

Of course bootlocal.sh is called.   That’s what starts pCP.   And it
already runs with root permission. 

Drop the sudo statements.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-14 Thread ElEsido


Hi all

This is my bootlocal.sh


Code:

#!/bin/sh
  # put other system startup commands here
  
  GREEN="$(echo -e '\033[1;32m')"
  
  echo
  echo "${GREEN}Running bootlocal.sh..."
  #pCPstart--
  /home/tc/www/cgi-bin/pcp_startup.sh 2>&1 | tee -a /var/log/pcp_boot.log
  #pCPstop--
  
  mkdir /mnt/timecapsule
  echo "# Timecapsule via Samba" | sudo tee -a /etc/fstab
  echo "//10.0.1.1/Data/Musik /mnt/timecapsule cifs 
username=***,password=***,sec=ntlm,ro,noauto,iocharset=utf8 0 0" | sudo tee -a 
/etc/fstab
  



However; /mnt/timecapsule and the entry in fstab are not created. I used
the commands in an older version of Picoreplayer but in my version 5 it
does not work. When I call 
Code:

sudo ./bootlocal.sh

 from the terminal it creates the folder and the entry in fstab. 

Could it be that bootlocal.sh is not initiated on startup?



ElEsido's Profile: http://forums.slimdevices.com/member.php?userid=50767
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-11 Thread Man in a van


Man in a van wrote: 
> 
> 
> On the LMS i have the DSDPlay  Plugin installed
> 
> 29347
> 
> 

paul- wrote: 
> The digione is only claimed to support DOP.  So the only squeezelite
> setting you should try in the -D option is 
> 
> x:dop
> 
> where x is some delay that might be needed to hide pops and clicks when
> switching.

Well I can't get any of my test files to playback.

They work on another system with beta9 v6.0.0 and Squeezelite
v1.9.6-1206-pCP.

I have tried pcp v4.0.1 and that also, does not seem to work.

I'll just leave it alone, I hope *mftech* has better luck

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-11 Thread paul-


The digione is only claimed to support DOP.  So the only squeezelite
setting you should try in the -D option is 

x:dop

where x is some delay that might be needed to hide pops and clicks when
switching.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-11 Thread Man in a van


mftech wrote: 
> I'm using the Digione +Rpi3 whit LMS 7.9.2 running on a Daphile Server
> No problems with PCM playback.
> I enable both settings for DSD-over-PCM in LMS Player Settings.
> 
> After this settings was enable I was unable to playbapck DSD or PCM, the
> cursour move but no sound, I tried the following actions, whitout
> sucess:
> 
> -Stop/Start Squeezelite on the Picoreplayer configuration page 
> 
> -Reboot PicorePlayer
> 
> -Reboot Daphile
> 
> By un-checking the options for DoP in LMS everything get back to normal.
> 
> Is it a bug or I missed a step in configuring Picoreplayer ?

Well I have had a go at this today (about 3 hours of trying different
settings).

First: I don't have Daphile, so use LMS on a rpi4b (4gb) running
Raspbian Desktop OS.

29345

this is my rpi 3B+ set-up with the Digione

29346

On the LMS i have the DSDPlay  Plugin installed

29347

and on the piCoreplayer (called Digione) I have the pcp-dsdplay.tcz 
extension installed and this binary

29348

picoreplayer v5.0.0 is vanilla.

I can play back local album files without a problem.

I only have test DSD files and noe of those playback, the cursor moves
but there is no sound.

I have tried different values on the Squeezelite tab for the (examples
below)


Device supports DSD/DoP Setting


> 30:u32be
> 300:u32be
> 700:u32be
> 1000:u32be

Some allow playback of my local files, some prevent Squeezelite from
starting, none allow any DSD playback

I have tried the beta9 of v6.0.0 without any more success.

It is quite possible (indeed likely) that I have some setting incorrect
as I only try DSD out of curiosity.

This time I am still curious :confused:

Hopefully someone will chip in :)

ronnie


+---+
|Filename: squeezelite setting1.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29348|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-10 Thread mftech

Man in a van wrote: 
> Did you install the extension
> 
> 
> ?

Yes I did.



Tête à FLAC

2 X SB Classic
2 X SB2
1 X SB Boom
1 X SB Touch
1 X Transporter 
2 X Duet + Remote
3 X Rpi+Picoreplayer
2 X Chromecast
1 X Chromecast Audio
1 X Atoll ST100

All devives connected via CeolBOX server aka The Musical Box
Using OrangeSqueeze and Material Skin Plug-in to remote all my connected
devices.

mftech's Profile: http://forums.slimdevices.com/member.php?userid=1586
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-10 Thread Man in a van


mftech wrote: 
>  or I missed a step in configuring Picoreplayer ?


Did you install the extension


> pcp-dsdplay.tcz ?



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-09 Thread mftech

I'm using the Digione +Rpi3 whit LMS 7.9.2 running on a Daphile Server
No problems with PCM playback.
I enable both settings for DSD-over-PCM in LMS Player Settings.

After this settings was enable I was unable to playbapck DSD or PCM, the
cursour move but no sound, I tried the following actions, whitout
sucess:

-Stop/Start Squeezelite on the Picoreplayer configuration page 

-Reboot PicorePlayer

-Reboot Daphile

By un-checking the options for DoP in LMS everything get back to normal.

Is it a bug or I missed a step in configuring Picoreplayer ?



Tête à FLAC

2 X SB Classic
2 X SB2
1 X SB Boom
1 X SB Touch
1 X Transporter 
2 X Duet + Remote
3 X Rpi+Picoreplayer
2 X Chromecast
1 X Chromecast Audio
1 X Atoll ST100

All devives connected via CeolBOX server aka The Musical Box
Using OrangeSqueeze and Material Skin Plug-in to remote all my connected
devices.

mftech's Profile: http://forums.slimdevices.com/member.php?userid=1586
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-09 Thread paul-


Not sure which driver will support this DAC.  Very few ESS dacs are
officially supported due to ESS closed sources.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-09 Thread newpeter


paul- wrote: 
> Do you want squeezelite to resample?  or just tell lms to only send
> 44/48  to the device.

I want to try the connection: RPi3B + Allo Kalli Reclocker + DIY Dac
with ES9038PRO using I2S. Which audio output in Squeez setting will be
correct ?



newpeter's Profile: http://forums.slimdevices.com/member.php?userid=69082
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-05 Thread paul-


newpeter wrote: 
> What options in Squeezelite should be set so that Rpi 3B + works only
> with the Allo Kali 44/48 HAT overlay? The goal is to develop a clear I2S
> signal for an external DAC.

Do you want squeezelite to resample?  or just tell lms to only send
44/48  to the device.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-05 Thread newpeter


What options in Squeezelite should be set so that Rpi 3B + works only
with the Allo Kali 44/48 HAT overlay? The goal is to develop a clear I2S
signal for an external DAC.



newpeter's Profile: http://forums.slimdevices.com/member.php?userid=69082
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-03 Thread stereoptic


paul- wrote: 
> Most using HDMI want bitperfect.  If you change from 0db, then the
> stream is no longer bitperfect.
Thanks Paul



stereoptic's Profile: http://forums.slimdevices.com/member.php?userid=53162
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-02-01 Thread dplz


paul- wrote: 
> Syncing different hardware can be problematic, as each of the devices
> has different capabilieies.   I would start with some simple mp3 files
> that is local music saved on the LMS server.   See what happens.
> 
> What wifi chips are you using in those old RPI's?   I would bet the wifi
> is causing the problems.

paul- wrote: 
> The issue with the older pies and those chipsets is that they don't come
> close to the max throughput, and they have really bad antennae.
> 
> I have devices running those same chips, and they have run fine for
> years.  But I don't sync them.   If you go into LMS, Players settings,
> there are some parameters to control how far you let them get out of
> sync, before they re-sync.  Perhaps adding a few more ms would work.

I agree with throughput, I think having all 3b+ (and not 3b for the same
reason) it would be perfect for multiroom Sync. Even without having the
server attached via ethernet. 

Anyway, i changed some options into LMS for latency. I tested all this
morning and hadn't problems. I hope they keep It work. Thanks for the
tip.



dplz's Profile: http://forums.slimdevices.com/member.php?userid=69765
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread firedog


paul- wrote: 
> In your wifi setup you have "spaces" before and after the SSID name.  
> The Scan results show the SSID without spaces.
> 
> The + sign in the encoded ssid is a  character. and you can
> see the spaces in the ssid= line.
> 
> network={
>   #enc_ssid="+dhLinksys_5GHz+"
>   ssid=" dhLinksys_5GHz "

Thanks. Got rid of the spaces (didn't realize they were there) and the
wifi is connected again.



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread paul-


In your wifi setup you have "spaces" before and after the SSID name.  
The Scan results show the SSID without spaces.

The + sign in the encoded ssid is a  character. and you can
see the spaces in the ssid= line.

network={
#enc_ssid="+dhLinksys_5GHz+"
ssid=" dhLinksys_5GHz "



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread firedog


paul- wrote: 
> That just make is clear wifi is not connected.  Just copy the rest.
> there should be a send to Pastebin button too.

Don't see a Pastebin, but here's the wifi diag log:
29226


+---+
|Filename: wifidiag log.txt |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29226|
+---+


GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread paul-


That just make is clear wifi is not connected.  Just copy the rest.
there should be a send to Pastebin button too.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread firedog


paul- wrote: 
> When you press Diagnostics on the wifi page.it will do a scan, does
> it show any APs?

The only thing I see that looks relevant to me:

wlan0 IEEE 802.11  ESSID:off/any  
Mode:Managed  Access Point: Not-Associated   Tx-Power=31 dBm  

Retry short limit:7   RTS thr:off   Fragment thr:off
Encryption key:off
Power Management:on


If there's another section of the diagnostics you want to see, let me
know.
Thanks



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread Feeback25


Man in a van wrote: 
> Well I have had a play with this this morning.
> 
> normal disclaimers apply :p
> 
> ronnie

Thank you very much Ronnie, always as efficient !!!
Philippe



Feeback25's Profile: http://forums.slimdevices.com/member.php?userid=69559
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread paul-


When you press Diagnostics on the wifi page.it will do a scan, does
it show any APs?



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread firedog


Suddenly my RBP won't connect to wifi-no ip is found. 
The diagnostics and everything look okay. Connection via ethernet is
fine, but when I shut down and then reboot without the ethernet cable
connected, the network isn't found. 
Can't figure this one out. 
I even changed the DHCP address of the unit in my router, but that
didn't help.
I also reflashed the card and started the unit "from scratch", but it
didn't help.

Any ideas? Any information I can send that will help figuring this out?


Thanks



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread paul-


The issue with the older pies and those chipsets is that they don't come
close to the max throughput, and they have really bad antennae.

I have devices running those same chips, and they have run fine for
years.  But I don't sync them.   If you go into LMS, Players settings,
there are some parameters to control how far you let them get out of
sync, before they re-sync.  Perhaps adding a few more ms would work.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread dplz


paul- wrote: 
> Syncing different hardware can be problematic, as each of the devices
> has different capabilieies.   I would start with some simple mp3 files
> that is local music saved on the LMS server.   See what happens.
> 
> What wifi chips are you using in those old RPI's?   I would bet the wifi
> is causing the problems.

Hi Paul. Thanks for reply. So I played some FLAC files and some MP3
files. Everything was good. 

I want to tell you the wifi Chips I have in the different pi's :

Livingroom : RTL8188EUS 802.11n Wireless Network Adapter

Bathroom:Ralink Technology, Corp. RT5370 Wireless Adapter 

Bedroom:RTL8188CUS 802.11n WLAN Adapter
Are this good or not? 

There Is another pi3b+ that only play LMS without any active client and
it's connected via ethernet.
Thanks in Advance.



dplz's Profile: http://forums.slimdevices.com/member.php?userid=69765
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread Man in a van


paul- wrote: 
> The Audiophonics extension was removed as it had some old wiring pi
> libraries built in.   There is a script in the tc home directory that
> should replace it just fine.   pcp-powerbutton.sh.   But in most cases
> the two overlays that Ronnie mentioned work great too.  And you do need
> to install shutdown-monitor as well.
> 


Feeback25 wrote: 
> 
> 
> @Paul: for my personal culture, can you specify the procedure with
> PCP-powerbutton.sh (where to find this script, how to make it work ...
> etc ?) 
> 
> Thanks
> Philippe

Well I have had a play with this this morning.

I made a new image of v5.0.1

Set Squeezelite output and confirmed that it played.

on the Squeezelite settings  installed the pcp-powerbutton.sh and saved.

The button worked but I had no Squeezelite player.

Ahhh... I had forgotten the shutdown-monitor.tcz extension, so i
installed it.

Reboot and still no Squeezelite player.

Ahhh... maybe I need to do the Teaks page thingso I
didRebootand still no Squeezelite player.

Played around with different combinations, another new image but still
no joy.

Then the lightbulb moment, there are two files in the Home directory,
maybe try the other one ?

A new image, set Squeezelite image, install extension, install
powerscript.sh and everything seemed to workbut thw blue led was
missing on the dac, off to Tweaks, do the gpio settings..Reboot.

All is tickety-boo :)

29223

normal disclaimers apply :p

ronnie


+---+
|Filename: pCP power setting.png|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29223|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-31 Thread dplz


paul- wrote: 
> Syncing different hardware can be problematic, as each of the devices
> has different capabilieies.   I would start with some simple mp3 files
> that is local music saved on the LMS server.   See what happens.
> 
> What wifi chips are you using in those old RPI's?   I would bet the wifi
> is causing the problems.

Hi Paul.

The wifi Chips are using in all client are these:

Livingroom : RTL8188EUS 802.11n Wireless Network Adapter

Bathroom:Ralink Technology, Corp. RT5370 Wireless Adapter 

Bedroom:RTL8188CUS 802.11n WLAN Adapter

And, There Is a 3b+ connected in router ethernet as a server.
Any tips?



dplz's Profile: http://forums.slimdevices.com/member.php?userid=69765
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread Feeback25


Thanks guys,
It works for me with Ronnie's method.
I use the Audiophonics PI-SPC II module which is a power manager:
https://www.audiophonics.fr/fr/accessoires-pour-raspberry-pi-et-autres-sbc/audiophonics-pi-spc-
ii-module-control-of-power-to-linear-raspberry-pi-p-11504.html

My settings:
Tweaks: gpio-poweroff: yes, 22, low
gpio shutdown: yes, 17, high, pull down
Squeezelite: power On / Off gpio: 22, low

@Paul: for my personal culture, can you specify the procedure with
PCP-powerbutton.sh (where to find this script, how to make it work ...
etc ?) 

Thanks
Philippe



Feeback25's Profile: http://forums.slimdevices.com/member.php?userid=69559
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread Man in a van


Thanks for the explanation Paul.

I'll let it sink in.slowly :)

ronnie



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread paul-


The Audiophonics extension was removed as it had some old wiring pi
libraries built in.   There is a script in the tc home directory that
should replace it just fine.   pcp-powerbutton.sh.   But in most cases
the two overlays that Ronnie mentioned work great too.

Active Hi means the input shows active when there is 3.3 volts applied
to the pin, Active Low means the input shows active when the pin is
grounded to 0v. 

The Pull Up/Down/Off is setting and internal resistor on the rpi board. 
If I have a button that shorts a gpio pin to ground, and it is set
Active Low.  When the button is released, you need a way to get the pin
driven back to 3.3v, thus you would set the PullUp Resistor on that
GPIO.   Pull Down works exactly opposite.  Off would mean no internal
pulls.this would be used if your driving a pin with a transistor or
other electronics.

So in Most cases:  You want to set Active Hi, Pull Down   Active
Low, Pull Up.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread Man in a van


Man in a van wrote: 
> I just checked mine which is running v6.0.0.beta 7 and found that
> squeezelite would not start
> 
> I went to the Squeezelite settings and found this new one, made the
> adjustment and rebootedsqueezelite running.
> 
> Use at your own discretion :)
> 
> 29217
> 
> ronnie
> 
> ::Edit: Just found out;  this does not now power off, must need to add
> the script ?::
> 
> ::Edit 2: A long press on the switch will power off, before a short
> press sufficed.::
> 
> ::May be best best to wait for Paul to advise on this feature::


I noticed with this arrangement that the blue led on th dac was not
illuminated.

So I changed to this

29218


and upon returning to the squeezelite page the led cam on.

Short press on the power switch to turn of is also back sigh.

Seems that NO script entry is needed (it's either one block or the
other, not both blocks together).

Ronnie.

I just want to say I don't understand this High/low up/down stuff :o 
:confused:


+---+
|Filename: working squeezelite power switch.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29218|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread Man in a van


I just checked mine which is running v6.0.0.beta 7 and found that
squeezelite would not start

I went to the Squeezelite settings and found this new one, made the
adjustment and rebootedsqueezelite running.

Use at your own discretion :)

29217

ronnie


+---+
|Filename: squeezelite setting power switch.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29217|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-30 Thread Man in a van


Feeback25 wrote: 
> Good morning all,
> I'm talking to Paul or Greg: I just did a brand new installation of PCP
> 5.0.1. I am using a power button on my system. I can no longer find
> "Audiophonics-powerscript.tcz" in the repositories.
> How can I install it or use an alternative?
> Thank you
> Philippe

These settings worked for me

29216

I can't find the link to the forum member who suggested them (and of
course, paul_)

You need to install the shutdown-monitor.tcz extension

ronnie


+---+
|Filename: piCorePlayer sabre dac power switch pins.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29216|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread Feeback25


Good morning all,
I'm talking to Paul or Greg: I just did a brand new installation of PCP
5.0.1. I am using a power button on my system. I can no longer find
"Audiophonics-powerscript.tcz" in the repositories.
How can I install it or use an alternative?
Thank you
Philippe



Feeback25's Profile: http://forums.slimdevices.com/member.php?userid=69559
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread firedog


firedog wrote: 
> I don't see anything like that in my setup. How did you get to that?

https://forums.slimdevices.com/attachment.php?attachmentid=29201

Since my unit accepts DSD Native, no settings for DoP appeared in my LMS
under the DSDPlay settings. It just said there that DSD Native is
working. 

I understood from other posts that the "trick" is to go into Squeezelite
settings, and write  into the formats that you DO NOT want to be
processed as native. Once you do that, the settings for DoP appear in
the settings for DSD, and LMS starts to convert DSD to PCM.



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread paul-


I2S is the buss that audio crosses, Dac chips also used i2c for control
of the device.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread Jeff07971


huxmut wrote: 
> So the trick $64 question is;
> does the rPi send data out as IIS or IIC ?

To most HAT DACs and Amps I2S.

Jeff



*Players:* SliMP3,Squeezebox3 x3,Receiver,SqueezeLite-X,PiCorePlayer x3
*Server:* LMS Version:  Latest Nightly on Centos 8.0 VM on ESXi 6.5.0U3
on Dell T320
*Plugins:*
AutoRescan/BBCiPlayer/PowerSave/PowerSwitchIII/Squeezecloud/Spotty/Player
Groups
*Remotes:* iPeng9/Orangesqueeze/PC/Jivelite/SqueezeLite-X
*Music:* 522GB,1.5K albums with 25K songs by 5K artists mostly FLACs

*Want a webapp ?* See
http://forums.slimdevices.com/showthread.php?104305-Webapp-for-LMS

Jeff07971's Profile: http://forums.slimdevices.com/member.php?userid=49290
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread huxmut


So the trick $64 question is;
does the rPi send data out as IIS or IIC ?



rPi 3 + rasPi 7" LCD + HiFiBerry DiGi+ | rPi 2 + IQaudio DAC+ |rPi 2 +
HiFiBerry DAC+ | Squeeze Box Touch | LMS + XPenology on HP Gen 8 |

huxmut's Profile: http://forums.slimdevices.com/member.php?userid=65108
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread Jeff07971


paul- wrote: 
> I'm far from an audio transport expert.   So hopefully I explained it
> correctly.   But I know that I2S data stream is subject to the clock
> rate of the RPI, which is why quite a few HAT products try to "re-clock"
> the incoming data.
> 
> All I know is that I can't hear the difference.  lol.

As far as I can see in the wiki (https://en.wikipedia.org/wiki/I%C2%B2S)
and the specs for the PCM5122 DAC theres no reason why I2S cannot be
"BitPerfect"

I2S is a transport and I cannot see why it cannot deliver a digital
signal unchanged from source

It maybe as Paul says, the Pi but I think not

Anyway like Paul I'm not likely to detect the LSB of a 24bit signal is
missing !

Jeff



*Players:* SliMP3,Squeezebox3 x3,Receiver,SqueezeLite-X,PiCorePlayer x3
*Server:* LMS Version:  Latest Nightly on Centos 8.0 VM on ESXi 6.5.0U3
on Dell T320
*Plugins:*
AutoRescan/BBCiPlayer/PowerSave/PowerSwitchIII/Squeezecloud/Spotty/Player
Groups
*Remotes:* iPeng9/Orangesqueeze/PC/Jivelite/SqueezeLite-X
*Music:* 522GB,1.5K albums with 25K songs by 5K artists mostly FLACs

*Want a webapp ?* See
http://forums.slimdevices.com/showthread.php?104305-Webapp-for-LMS

Jeff07971's Profile: http://forums.slimdevices.com/member.php?userid=49290
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread paul-


I'm far from an audio transport expert.   So hopefully I explained it
correctly.   But I know that I2S data stream is subject to the clock
rate of the RPI, which is why quite a few HAT products try to "re-clock"
the incoming data.

All I know is that I can't hear the difference.  lol.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread huxmut


paul- wrote: 
> I2S is not going to produce bitperfect data ...

I'm surprised to hear that bit. 
Im guessing it must be close as my old cloth ears arnt offended by my
current setup.

I'll try it out this weekend and see if i can hear a difference or not

Thanks for the education Paul :)



rPi 3 + rasPi 7" LCD + HiFiBerry DiGi+ | rPi 2 + IQaudio DAC+ |rPi 2 +
HiFiBerry DAC+ | Squeeze Box Touch | LMS + XPenology on HP Gen 8 |

huxmut's Profile: http://forums.slimdevices.com/member.php?userid=65108
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread paul-


huxmut wrote: 
> is that also the case for I2C ?
> as in a dac hat.

I2S is not going to produce bitperfect data.   HDMI is not a DAC, it
feeds a data stream to a DAC.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread paul-


I've been working on 6.0.0 so long, the screen changed a little bit from
5.0.0.  Try the 6.0.0-b7



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread firedog


paul- wrote: 
> Should be able to set the DSD option to 
> 
> :dop
> 
> 29201

I don't see anything like that in my setup. How did you get to that?



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-29 Thread huxmut


is that also the case for I2C ?
as in a dac hat.



rPi 3 + rasPi 7" LCD + HiFiBerry DiGi+ | rPi 2 + IQaudio DAC+ |rPi 2 +
HiFiBerry DAC+ | Squeeze Box Touch | LMS + XPenology on HP Gen 8 |

huxmut's Profile: http://forums.slimdevices.com/member.php?userid=65108
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread paul-


Most using HDMI want bitperfect.  If you change from 0db, then the
stream is no longer bitperfect.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread stereoptic


Quick question about the output level settings for HDMI output  - what
are the benefits/deficits from setting the output to 100% (4db) or 96%
(0db)?



stereoptic's Profile: http://forums.slimdevices.com/member.php?userid=53162
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread paul-


Should be able to set the DSD option to 

:dop

29201


+---+
|Filename: 2020-01-28_20-08.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=29201|
+---+


piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread firedog


Hi-
I have DSDPlayer installed n my LMS server, and in it's settings for pCP
it says I can play DSD back natively. That's good, but I actually want
to convert DSD to PCM so I can also apply room correctiion to DSD
files.
My present settings don't give me that option. How can I setup the
piCorePlayer on my RBPi so that it will convert DSD to PCM?



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread paul-


castalla wrote: 
> I have installed pcp 5.0 .   What's the best method to make a copy of
> the image ?   Preferably using linux.

dd is the easiest.  Just make sure you use the correct devices.   Just
google it, there is tons of how-to out there.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-28 Thread castalla


I have installed pcp 5.0 .   What's the best method to make a copy of
the image ?   Preferably using linux.



LMS server: Pi Zero

Amp: Denon PMA-50

Players/Speakers:  Touch, Logitech Radios, Sonos Play 1s & Beam,
Libratone Zipp, GGMM E2 & E3, Yamaha WXAD-010, Loewe Airspeaker, Google
Chromecast Audio, Home Mini & Nest Hub, Amazon Echo 2,3 and Show5,
Pioneer WX-SMA1, Roberts S1, O2 Joggler, Cisco Joggler, Avantree Priva
BT transmitter

Brexit =   stupidity




castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-27 Thread paul-


I have heard of weird things happening on very small cards.  Could be a
compatibility issue with the RPi itself.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-27 Thread Man in a van


rincage wrote: 
> No, just a plain set up using Ethcher to write image to a 128MB (MB not
> GB) SDCard. Done nothing else to SDCard.
> 
> 
> 
> 

I think a bigger card is maybe an idea :)



Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-27 Thread rincage


paul- wrote: 
> Not sure how this happens, as the extension that contains the boot
> script, also contains the default configuration.  So getting a file not
> found error seems a bit impossible.
> 
> Have you done anything else to this installation? Do you have a fresh SD
> card that you can just burn, and then setup the card?


No, just a plain set up using Ethcher to write image to a 128MB (MB not
GB) SDCard. Done nothing else to SDCard.




Code:


  Generated by xtras_resize.cgi on Mon Jan 27 19:22:20 UTC 2020
  _ _ ___  __
  ___  (_) ___/__  ___ / _ \/ /__ ___ _ 
  / _ \/ / /__/ _ \/ __/ -_) ___/ / _ `/ // / -_) __/
  / .__/_/\___/\___/_/  \__/_/  /_/\_,_/\_, /\__/_/
  /_/   /___/
  
  piCorePlayer = piCore + Squeezelite + Raspberry Pi
  
  The software is provided "as is" without warranty of any kind,
  either express or implied, including without limitation any implied
  warranties of condition, uninterrupted use, merchantability,
  fitness for a particular purpose, or non-infringement.
  
  FilesystemSize  Used Available Use% Mounted on
  /dev/mmcblk0p2   42.5M 32.8M  6.3M  84% /mnt/mmcblk0p2
  Disk /dev/mmcblk0: 121 MB, 127139840 bytes, 248320 sectors
  3880 cylinders, 4 heads, 16 sectors/track
  Units: sectors of 1 * 512 = 512 bytes
  
  Device   Boot StartCHSEndCHSStartLBA EndLBASectors  
Size Id Type
  /dev/mmcblk0p1128,0,1 127,3,16  8192  73727  65536 
32.0M  c Win95 FAT32 (LBA)
  /dev/mmcblk0p2128,0,1 639,3,16 73728 172031  98304 
48.0M 83 Linux
  




rincage's Profile: http://forums.slimdevices.com/member.php?userid=69770
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] ANNOUNCE: piCorePlayer 5.0.0

2020-01-27 Thread paul-


Not sure how this happens, as the extension that contains the boot
script, also contains the default configuration.  So getting a file not
found error seems a bit impossible.

Have you done anything else to this installation? Do you have a fresh SD
card that you can just burn, and then setup the card?



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=110642

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


  1   2   3   4   5   6   7   8   9   >