Tuesday, July 28, 2015

Pioneer VSX-822, ARC and Samsung UN55en7100

Problem: I want to play my pictures slideshow on my TV, also like to play my favorite songs in the background using the receiver (with external speakers). I start my slideshow using xbox which is connected to game port on the receiver. Now, I try to start my music using receiver, it changes the video output on TV.

Connect TV ARC hdmi port -----------> (PIONEER VSX-822 ) RECEIVER OUT hdmi port

For example: if you want to use Samsung picture app to connect to media server ( NAS/PC where ever you have your pictures stored). Start samsung picture app, connect to storage and start the slide show. Once you have the slide show on the TV.
Use Pioneer Receiver iphone app to connect to media server and choose the song to play.

** Samsung UN55D7000 series picture app doesn't play picture 24 mega pixel, that's why I have to switch to some thing better.

Now, I want to use xbox to display my pictures with music in background.
By the way xbox display is just fantastic, I tried plex media app, roku media player etc. but nothing like xbox quality.

One problem with Xbox is you have start the music before you start the picture slide show, and also you cannot change the songs once you start the slide show.

Now the problem, xbox is connected to game port on Receiver.
Connect TV ARC port -----------> (PIONEER VSX-822 )RECEIVER OUT hdmi port
                                                  XBOX -------->        RECEIVER   (game port)

Whenever you start Pioneer iphone app to connect to media server, it switches the video output on the receiver to media server.
Here is how it works:
Connect TV ARC port -----------> (PIONEER VSX-822 )RECEIVER OUT hdmi port
                                                  XBOX -------->        TV (hdmi port)

Bottom line once you enable ARC on the Receiver and connected to TV ARC hdmi port correctly all the device you connect to TV will pass thru the audio using the Receiver.
And if you choose to change the mode in the receiver to media server it will not change the video output on the TV 

Wednesday, July 1, 2015

Cron error

Error in cron log

tail -f /var/log/cron

Dec  3 00:21:01 lfvsfcp25961 crond[19203]: (root) CMD (/home/root/backup/backup.sh backup.pg.com)
Dec  3 00:23:01 lfvsfcp25961 crond[24488]: (root) CMD (rsync -av --progress --inplace -e "ssh -i /home/root/.ssh/backup_rsa -q -c arcfour" /data/backups/`date +")


actual cron entry

23 00 * * * rsync -av --progress --inplace -e "ssh -i /home/root/.ssh/backup_rsa -q -c arcfour" /data/backups/`date +"%Y%m"`* root@backup.pg.com:/data/backup/backups > /tmp/sync.log


Fix:
escape the % signs. They have a special meaning in crontabs:

man (5) crontab:

Percent-signs (%) in the command, unless escaped with backslash (\),
will be changed into newline characters, and all data after the
first % will be sent to the command as standard input.

23 00 * * * rsync -av --progress --inplace -e "ssh -i /home/root/.ssh/backup_rsa -q -c arcfour" /data/backups/`date +"\%\Y\%m"`* root@backup.pg.com:/data/backup/backups > /tmp/sync.log