Linux For The Rest Of Us #123 – pianobarfly pianobarfly pianobarfly pianobarfly pianobarfly

Direct MP3 Download: Linux For The Rest Of Us #123 – pianobarfly pianobarfly pianobarfly pianobarfly pianobarfly


A Linux podcast for anyone even remotely interested in Linux!

With Steve McLaughlin, the Door to Door Geek and Cody Cooper

 

Episode 123 Show Notes

 

Bright Light Pillow As Seen On TV – Starlight Square – A calming night light and pillow in one! Ultra-Soft Bright Light Pillow As Seen On TV offers a soothing array of changing colors – red, blue, white, green and yellow – to ease a child who is restless or afraid of the dark to sleep at night, making lights out a fun time.

(http://www.amazon.com/Bright-As-Seen-On-TV/dp/B009IT1EZO )

 

Sonar Linux.

(http://sourceforge.net/projects/sonargnulinux/ )

Sonar Project – The Sonar Project is to build a Linux operating system focused on accessibility.

(http://www.indiegogo.com/sonar )

LinuxBasement – Episode 74 – Sonar – Part 2.

(http://www.linuxbasement.com/content/lb-episode-74-sonar-part-2 )

 

Basic Basic – Just be honest with everyone

pianobarfly – pianobarfly is a console client for the personalized web radio pandora

(https://github.com/ghuntley/pianobarfly )

 

Ubuntu on Tablets – With unique multitasking productivity, effortless navigation and defence-ready security, Ubuntu raises the bar on tablet design and sets a new standard for the post-PC era. Bright. Brilliant. Beautiful. And naturally neat.

(http://www.ubuntu.com/devices/tablet )

Ubuntu Tablet Unveiled By Canonical

(http://www.omgubuntu.co.uk/2013/02/ubuntu-for-tablet-unveiled-by-canonical-nexus-7-download-coming-thursday )

 

Raspberry Pi: Easily Boot Multiple Linux Distributions From The Same SD Card With Berryboot – BerryBoot is a tool / bootloader that allows you to install (and boot) multiple Linux distributions on the same SD card or USB drive. It supports Raspberry Pi as well as Android tablets, TV sticks and boards that have an Allwinner A10 processor, such as MK802.

(http://www.webupd8.org/2013/02/raspberry-pi-easily-boot-multiple-linux.html )

 

Command for Recording Your Desktop – The avconv command is part of libav, a fork of the FFMPEG software, and is used to convert video and audio from one format to another. (http://www.penguinproducer.com/Blog/2012/06/command-for-recording-desktop/ )

 

Upgrade the Kdenlive to 0.9.4 version to Avoid Crash Problem – Kdenlive has released the 0.9.4 version on January 2012. As the new version, it offers the new stability on the core machine which avoids the crash problem appears. Actually the crash problem is one of the big problem which is reported by many Kdenlive users.

(http://www.ossdoc.com/2013/02/upgrade-kadenlive-to-094-version-to.html )

 

How To Use Kdenlive – There are many factors to take into account when you are choosing software for video editing. This guide uses the Free Software editor Kdenlive which we recommend for teaching and making short films.

(http://www.flossmanuals.net/how-to-use-video-editing-software/ )

 

Hostapd : The Linux Way to create Virtual Wifi Access Point – hostapd is a user space daemon for access point and authentication servers.

(http://nims11.wordpress.com/2012/04/27/hostapd-the-linux-way-to-create-virtual-wifi-access-point/ )

 

GetDeb, PlayDeb Return, Ubuntu Gamers Rejoice – That abysmal moment when you want to play a little Marathon and your favorite games repository is down.. Some of you may have experience the discomfort of this is late December with GetDeb – and subsequently PlayDeb – went down for the count. Get Deb and PlayDeb had been around for years and has been a staple in the Ubuntu gaming community. Their server crash was severe, and most everything seemed lost. But that was not the case…

(http://www.thepowerbase.com/2013/02/getdeb-playdeb-return-ubuntu-gamers-rejoice/ )

 

UNIX / Linux Shell Script For Monitoring System network with ping command.

(http://bash.cyberciti.biz/monitoring/monitor-windows-linux-server-with-ping-script/ )

 

Thanks Chuq

 

Save as pingcheck.sh

>>>>>>>

#******************************************************

#****** Programmer: Chuq Jackels ******

#****** Date: 19 February 2013 ******

#****** Name of script: pingcheck.sh ******

#****** Location of scipt:~/ ******

#****** Dependancies:bash, python, sendpingmail.py ******

#****** Description:Pings IP address upon 10 fails it ******

#****** emails to alert you of the IP change. ******

#****** Purpose: Helpful when waiting for your domain ****

#****** to be transferred from one host to another. ******

#****** ******

#******************************************************

#!/bin/bash

ipForm=$(zenity –entry

–title “Ping Check”

–text=”What is the website you want to check?”

–entry-text “website” )

currentIP=$(nslookup $ipForm | awk ‘/Name:/{printf “%st”,$3;getline;print $2}’ )

newIP=$(nslookup $ipForm | awk ‘/Name:/{printf “%st”,$2;getline;print $2}’ )

 

while :

# this script is set to ping 10 times (ping -c 10) if you wish to change that you will also want to change $count Ping your domain if you do not know your IP and insert that and also change nslookup to your own domain.

do

count=$(ping -c 10 $currentIP | grep ‘received’ | awk -F’,’ ‘{ print $2 }’ | awk ‘{ print $1 }’)

if [ $count = 10 ]; then sleep 1m

else

if [ $count = 1..9 ]; then sleep 1s;

else if [ $count = 0 ]

then python sendpingmail.py && zenity –info –text=”Ping Failed, Your website, $ipForm has a new IP, Email has been sent. Your new IP address is $newIP” ; break

 

fi

fi

fi

done

 

>>>>>>>

 

Save as sendpingmail.py

>>>>>>>

#!/usr/bin/python

import os, re

import sys

import smtplib

 

#from email.mime.image import MIMEImage

from email import encoders

from email.mime.multipart import MIMEMultipart

from email.mime.base import MIMEBase

from email.MIMEText import MIMEText

 

SMTP_SERVER = ‘smtp.gmail.com

SMTP_PORT = 587

 

sender = ‘YOURGMAILHERE@gmail.com

password = “YOURPASSWORDHERE”

recipient = ‘WHOYOUWANTTOSENDTHISTO@EMAILADDRESSHERE.COM

subject = ‘Your IP Address Has been changed!’

 

def main():

msg = MIMEMultipart()

msg[‘Subject’] = subject

msg[‘To’] = recipient

msg[‘From’] = sender

 

part = MIMEText(‘text’, “plain”)

 

session = smtplib.SMTP(SMTP_SERVER, SMTP_PORT)

 

session.ehlo()

session.starttls()

session.ehlo

 

session.login(sender, password)

 

# Now send or store the message

qwertyuiop = msg.as_string()

 

session.sendmail(sender, recipient, qwertyuiop)

 

session.quit()

os.system(‘notify-send “Email sent”‘)

 

if __name__ == ‘__main__’:

main()

>>>>>>>

 

 

turpial – Turpial is a microblogging client written in Python. It is lightweight, functional and does not harm the ozone layer.

Thank you Ryan

(http://turpial.org.ve/downloads/ )

 

TwitterFall

(http://twitterfall.com/ )

 

MIT Builds An Open-Source Platform For Your Body – MIT Media Lab’s 11-day health care hackathon pulled students and big companies together with a common goal: Healing a broken industry.

(http://www.fastcompany.com/3005184/mit-builds-open-source-platform-your-body )

 

Debian Sources List Generator (Beta)

(http://debgen.simplylinux.ch/ )

 

Steam on Linux Sale!!!

(http://arstechnica.com/gaming/2013/02/valve-officially-launches-steam-for-linux-with-massive-sale/)

 

 

NELF Questions for Interviews

 

E-Mails

 

Jonathan Nadeau writes:

 

Hey Guys,

 

Listening to you talk about the Chromebook made me think this is the year of the linux desktop. Granted its not what people pictured when it was said but it looks like Chromebook could take over. It is running a stripped down version of Ubuntu. This is interesting. Also if you can run GNU/Linux on these then why buy a Windows computer to install GNU/Linux. You can just put it on one of these and no Microsoft tax is being paid.

 

Jonathan

 

 

Mark Owens writes:

 

couldn’t you just make multiple partitions 32 Gb or less, or would the cameras have issues with more than one partition on the sd card

 

Mark Owens

 

 

Chris Chamlee writes:

 

Cody,

 

Love the show. I also carry a Acer Chromebook and wanted to hear what must have apps/extensions your using.

 

Chris

 

D2d

https://chrome.google.com/webstore/detail/appjump-app-launcher-and/hccbinpobnjcpckmcfngmdpnbnjpmcbd

https://chrome.google.com/webstore/detail/better-music-for-google-p/bdollfdihekkbcgmbpjddfdaeigacmia

https://chrome.google.com/webstore/detail/do-share/oglhhmnmdocfhmhlekfdecokagmbchnf

https://chrome.google.com/webstore/detail/docs-pdfpowerpoint-viewer/nnbmlagghjjcbdhgmkedmbmedengocbn

https://chrome.google.com/webstore/detail/firebug-lite-for-google-c/bmagokdooijbeehmkpknfglimnifench

https://chrome.google.com/webstore/detail/flashblock/cdngiadmnkhgemkimkhiilgffbjijcie

https://chrome.google.com/webstore/detail/googl-url-shortener/iblijlcdoidgdpfknkckljiocdbnlagk

https://chrome.google.com/webstore/detail/google-%201-button/jgoepmocgafhnchmokaimcmlojpnlkhp

https://chrome.google.com/webstore/detail/google-chrome-to-phone-ex/oadboiipflhobonjjffjbfekfjcgkhco

https://chrome.google.com/webstore/detail/google%20-notifications/boemmnepglcoinjcdlfcpcbmhiecichi

https://chrome.google.com/webstore/detail/invisiblehand/lghjfnfolmcikomdjmoiemllfnlmmoko

https://chrome.google.com/webstore/detail/pocket-formerly-read-it-l/niloccemoadcdkdjlinkgdfekeahmflj

https://chrome.google.com/webstore/detail/quick-note/mijlebbfndhelmdpmllgcfadlkankhok

https://chrome.google.com/webstore/detail/secure-shell/pnhechapfaindjhompbnflcldabbghjo

https://chrome.google.com/webstore/detail/send-page/higemadklcnjhjpgcbnnbpgeeippjjcp

 

Aaron writes:

 

Just want to say thanks for the show notes. That’s what makes podcast’s about twice as useful.

 

Aaron

 

 

Ryan Ridenour writes:

 

So you can stop whining that you haven’t got one!

Keep up the great work on the show.

Regards,

Ryan

 

 

Ashley Anderson writes:

 

Dudes, I just told my Boss about system76. He had never heard of them, but he just ordered the Bonobo Extreme with maxed out specs & hardware. He spent $3,500.00 but is rocking 32GB RAM, i7, 400GB SSD, and a 1TB HDD, etc.

 

I wanted to say things for talking about system 76 on the show. It helped me today with my boss. Personally I run a Lenovo Thinkpad T420, and LOVE it.

 

Have a great day guys.

 

Ash

 

 

Ross Schneider writes:

 

Hello Cody!

 

I wanted to take a moment and maybe be the first person to send you a message at your exclusive Podnutz email address. I just wanted to thank you and Steve “Door” for bringing such great Linux content to your fans in every episode. Several months ago I started listening to different Podcasts of interest and Linux was on the list. I dabbled in Linux originally about 8 years ago, but my initial excitement for an alternative to Windows lead to disappointment with what I found to be a convoluted experience trying to navigate in at the time I think was Ubuntu 5.04. Now, as I have been recently trying several different distros in Virtualbox, I am very impressed in the evolution of the Linux desktop experience and hope it only gets better and finally gives Windows some much needed competition. Podnutz is a great resource for all things tech and you have become an integral part. Of course “Door” now being at the helm of the network just solidifies Podnutz as another perfect example of how rewarding the Internet experience can be in the right hands.

 

Thank you again,

 

Ross S. (a.k.a. Sleepless Dad)

 

 

Ric Crouch writes:

 

Hey guys,

 

My latest project has involved editing some HD video. In the past, I’ve used Adobe Premier on Windows. My version is supposed to edit HD video, so that’s what I was planning on using. I captured the video just fine, and it would play in Windows Media Player, but Premier was a slide show. There was NO way I was going to be able to edit this project like that.

Just for grins I decided to try OpenShot in Linux. Now, OpenShot is pretty bare-bones as video editors go, but for this project I was pretty much just trimming clips and splicing them together.

Thankfully, OpenShot worked like a champ. I was not only able to edit the videos, but I was also able to quickly render them into both HD and DVD versions! Again, it’s pretty bare bones, so users won’t have the rich feature set of Premier or Final Cut, but it is quite effective for simple projects like this.

 

Thank goodness for Linux!

 

Ric Crouch

 

 

To send a voicemail call 707-6PODNUT (707-6763688)

 

Watch LFTROU live every Tuesday night at 09:00pm EST

 

Email: podcast@linuxfortherestofus.com

 

To support Podnutz please use the following links, and remember you don’t pay any extra for using the links !

 

Podnutz Amazon link (http://www.podnutz.com/amazon)

Podnutz Newegg link (http://www.podnutz.com/newegg)

Podnutz Ebay (http://www.podnutz.com/ebay)

Podnutz Deals (http://www.podnutz.com/deals)

Podnutz Clothing (http://www.podnutz.com/clothing)