L'articolo RaspyFi Rc2 is under development sembra essere il primo su RaspyFi.
]]>So stay tuned, hope I’ll get it released in a week!
L'articolo RaspyFi Rc2 is under development sembra essere il primo su RaspyFi.
]]>L'articolo RaspyFi quick start guide sembra essere il primo su RaspyFi.
]]>Select the .img file you previously unpacked and make sure “device” field points to your SD card, then click on Write
Gmpc . Nice and easy client, it offers several functionalities, few hanging issues, but it is my favourite
Ario. Lot of options, poor gui. It has Internet Radio enabled out of the Box
Mpdroid, fantastic app. Available free from PlayStore
Mpod, for iphone\ipod touch. Free on Ios Market.
Mpad, for Ipad.
SSH
User: pi
Password: raspberry
L'articolo RaspyFi quick start guide sembra essere il primo su RaspyFi.
]]>L'articolo RaspyFi new release is out! sembra essere il primo su RaspyFi.
]]>-512 mb model b support (but 256 models should work as well)
-based on latest raspbian image (2012-12-16-wheezy-raspbian)
-XMOS Native support (Hiface 2 is reported to be working)
-less space used and less processes active (shrinked to minimum requirements to get mpd running)
-fits on 2gb sd carD
-fat32 disk ready out of the boX
-volume can be set from client (Erik, this is for you!!)
-usb tweakings
-general quality improvements
-hdmi & analog audio disabled (no bcm2835 kernel module loaded at boot)
-mpd has higher priority set
known issues:
-resampling always enabled to 44100 htrz
SSH
User: pi
password: raspberry
UPDATE YOUR DATABASE FOR FIRST USE!
It Works out of the box with most of USB Dacs! (supported natively by linux) It works also with XMOS Transports (Hiface 2 is reported to be working!)
This is no more based on moebius linux, it is instead based on latest raspbian (updated at 12\1\13). It is definetely sounding better and it features some under the hood tweaking that proved to be effective. It is ready out of the box to play your library from a FAT32 usb stick or self powered hard disk. (IF you need ntfs support you should mount it and then edit /etc/mpd.conf).
You can also play your music from a Nas, you should have a samba share called nas and edit /etc/fstab and change the ip with you’r nas ip:
sudo nano /etc/fstab
//192.168.1.YOURIPHERE/nas /mnt/nas cifs username=pi,password= 0 0
reboot and edit /etc/mpd.conf , removing the comment from nas and commenting Music
music_directory “/mnt/nas”
#music_directory “/media/Music”
(Quality-wise, the nas option is strongly suggested)
To enjoy the best quality your RaspyFi powered Pi can give you please use a quality psu, I found out that Xperia phones chargers are pretty well made and stable, if you have an Ipod\Ipad\Iphone charger this could be good as well!
And you’re ready to go! I’m already working on a Real Time version of RaspyFi, stay tuned!
L'articolo RaspyFi new release is out! sembra essere il primo su RaspyFi.
]]>L'articolo Ho to install Mpd on an existing Debian installation on Raspberry Pi sembra essere il primo su RaspyFi.
]]>First update:
apt-get update
apt-get updgrade
Y, then Y again
When updating process is over:
reboot
Let’s disable Ipv6, that Raspberry Pi
Just add this line at the end of l file /etc/hosts
::1 localhost.localdomain localhost
Now we can install mpd
apt-get install mpd
Y
On the Pi it usually gives some error messages, we can safely ignore them.
reboot
Le’ts create our playlist folder:
mkdir -p ~/.mpd/playlists
Now let’s edit our mpd.conf file:
nano /etc/mpd.conf
And modify the string:
bind_to_address “localhost”
in
bind_to_address “127.0.0.1″
Ctrl + x ,then Y.
If we want to store our music library on a usb storage:
Let’s see how Debian calls our drive: (formatted in fat32):
fdisk -l
Specifically for me: /dev/sda1
Let’s create the Music folder and chmod it :
mkdir /media/Music
chmod -R 777 /media/Music
mount /dev/sda1 /media/Music
Modify the fstab file with our partitions :
nano /etc/fstab
just add this line:
/dev/sda1 /media/Music vfat defaults 0 0
Ctrl+x then Y
Let’s check if everything is ok:
mount -a
If we don’t get any error message, we’re ready to go.
reboot
If we want to use a nas as storage (SAMBA)
Install samba client
apt-get install smbclient
Creating mount directory:
mkdir /mnt/nas
chmod 777 /mnt/nas
Mount the nas
mount -w -t cifs -o username=,password= //192.168.1.nasip/sharename /mnt/nas
If you’ve protected your share with password, insert them. If none password or user has been set, just leave this field empty
Check with:
ls /mnt/nas
If everything is ok, you should see your directories.
Let’s set the automount
nano /etc/fstab
Add this line in the end
//192.168.1.ipnas/sharename /mnt/nas cifs username=,password= 0 0
Check with:
mount -a
If no error appears, again, we’re ready to go
reboot
Ok, last entries in our configuration file:
nano /etc/mpd.conf
Let’s tell mpd where our music is stored:
Usb storage:
music_directory “/media”
Nas storage:
music_directory “/mnt/nas”
If you have a usb dac, let’s tell mpd to use this instead of the shitty analog out:
audio_output {
type “alsa”
name “USB Dac”
device “hw:1,0″ # optional
format “44100:16:2″ # optional
mixer_device “default” # optional
# mixer_control “PCM” # optional
# mixer_index “0″ # optional
These options can be quite different depending how debian calls your dac, but i always used that with different usb dacs and it always worked. You can try by changing in 1,0 instead of 0,1 but this is up to you. As you can see, I din’t changed everything from resampling to buffer size etc etc. This will be done in future tweaking tutorials. Anyway the quality of music reproduction with these settings is pretty awesome, so expect some minor improvements with further tweakings.
Some examples:
If you wish to enable audio buffering (and so ram reading). Uncomment these strings.
#audio_buffer_size “2048″
#buffer_before_play “10%”
If you want to send the audio stream directly to the usb dac, bypassing any software\hardware mixer. Change the string
mixer_device “default”
in
mixer_device “none”
ctrl+ x e Y
reboot
Now You should choose a client in order to control your mpd box. The best available is GMPC for Windows\Linux. Pretty simple and straightforwarding (sometimes it freezes, hope this will get solved) you can find it here. Then you can use Mpdroid or Mpod to control mpd via smartphone. These 2 clients are really good and goodlooking.
Happy music, folks!
L'articolo Ho to install Mpd on an existing Debian installation on Raspberry Pi sembra essere il primo su RaspyFi.
]]>L'articolo A very good minimal linux distro for our Raspy sembra essere il primo su RaspyFi.
]]>I’m planning to brew one by myself in the near future, but in the meantime this distro is a very good starting point. Many thanks to the dev who made this!!!
For your confort I already prepared a .img version of this (on the author’s page you’ll only find a .bin file, only suitable for linux folks). You can grab it here and inin the project’s sourceforge page. Please use Win32diskimager to install it on your SD card. Just make sure your SD Card drive letter is correct, or you will end in wiping your HD content, be aware!
USER: root
PW: raspi
This is the distro where RaspyFi will be built.
Current issues: no 512 mb ram support.
A ready-to-flash RaspyFi build will be ready soon!!!
L'articolo A very good minimal linux distro for our Raspy sembra essere il primo su RaspyFi.
]]>