Rpi Softwares

Revision as of 11:33, 18 July 2016 by m>Amandeep (→‎JDownloader: lxshortcut)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Dynamic DNS

The objective is to access Raspberry Pi from Internet using Dynamic DNS service. Most of the ISPs in India (& other third world countries) provide Dynamic IP address due to shortage of IP addresses.

Using this tutorial you will be able to access your device(or any other Linux machine) through Internet. You will have a registered unique sub-domain name which will be pointing to the current IP address assigned to the device.

Requirements
  • Raspberry Pi(or any other Linux machine; for windows machine you need to download a different client)
  • ISP which provides Dynamic IP address.
  • DDClient,inadyn, etc or any other free Dynamic DNS Client.
  • Need to register at FreeDNS (free)


Note
  • If you ISP provides a static IP, then you can directly access device using IP address or can use any DNS service(e.g: FreeDNS) for mapping IP to domain name. there is no need of installing client in Raspberry Pi.
  • If your ISP provides a private IP address (e.g. 10.103.85.131), then following this tutorial will not help.


Configuration
  • Log on to SignUp page and register for a new unique sub-domain name (e.g: network.info.tm).
  • Open Dynamic DNS page. Copy the large alpha-numeric key in "Direct URL" link. e.g:
http://freedns.afraid.org/dynamic/update.php?[xxxxxxxxxxxxxxxxxxxxxx]
  • Install & Configure DDClient
sudo apt-get install ddclient
sudo nano /etc/ddclient.conf
 daemon=3600
 use=if, if=eth0                        ##comment out this line & use below line if Interface is not having Public IP directly assigned
 #use=web, web=checkip.dyndns.com/, web-skip='IP Address'
 server=freedns.afraid.org
 protocol=freedns
 login=xxxxxxxx
 password=xxxxxxxx
 xxxxxxxx.com                              ##replace with your domain name
sudo service ddclient restart 


WiringPi

Source

Installation:

git clone git://git.drogon.net/wiringPi
cd wiringPi
git pull origin
./build

Verify:

gpio -v
gpio readall


Tonido

Installation:

sudo mkdir /usr/local/tonido
cd /usr/local/tonido
sudo wget http://patch.codelathe.com/tonido/live/installer/armv6l-rpi/tonido.tar.gz
sudo tar-zxvf tonido.tar.gz
./tonido.sh start 

Audio Playback for FLAC, M4A etc:

cd /usr/local/tonido
sudo apt-get install ffmpeg
sudo ln -s /usr/bin/ffmpeg ffmpeg.exe
sudo ln -s /usr/bin/ffmpeg ffmpegv.exe

Auto Start at Bootup:

sudo wget --output-document=tonido http://www.tonido.com/support/download/attachments/9109990/tonido?version=2&modificationDate=1412274854000&api=v2
sudo cp tonido /etc/init.d/
sudo chmod +x /etc/init.d/tonido
sudo update-rc.d tonido defaults


Transmission

Please follow Automount USB Drive for mounting USB during bootup else Transmission will give error for temp files not found.

Installation:

sudo apt-get install transmission-daemon
sudo /etc/init.d/transmission-daemon stop
sudo nano /etc/transmission-daemon/settings.json

Change “rpc-authentication-required” to false

"rpc-password": "password",
"rpc-username": "username",
"rpc-whitelist-enabled": false,
"download-dir": "/mnt/USBDrive",
"download-queue-size": 5,
"incomplete-dir": "/mnt/USBDrive", 
"incomplete-dir-enabled": true,
"seed-queue-size": 10,
"watch-dir": "/mnt/USBDrive",
"watch-dir-enabled": true,
"umask": 2,
sudo nano /etc/init.d/transmission-daemon
Change the USER=transmission-daemon to USER=root
sudo service transmission-daemon reload

Transmission will be available at following link now:

http://192.168.1.6:9091/transmission/web/


Deluge

Source: [howtogeek.com]

Installation:

sudo apt-get install deluged
sudo apt-get install python-mako
sudo apt-get install deluge-web

Configure Web(to change port if required):

sudo pkill deluge-web
nano ~/.config/deluge/web.conf

Auto Start at boot up:

sudo wget -O /etc/default/deluge-daemon http://cdn3.howtogeek.com/wp-content/uploads/gg/up/sshot5151a8c86fb85.txt
sudo nano /etc/default/deluge-daemon

Change the user if required:

DELUGED_USER="pi" # !!!CHANGE THIS!!!!
sudo chmod 755 /etc/default/deluge-daemon
sudo wget -O /etc/init.d/deluge-daemon http://cdn3.howtogeek.com/wp-content/uploads/gg/up/sshot5151aa042ad11.txt
sudo chmod 755 /etc/init.d/deluge-daemon
sudo update-rc.d deluge-daemon defaults

Now reboot the Pi & open the WebUI to see if everything is running fine:

http:/192.168.1.6:8112

Amule

Installation:

sudo apt-get install amule-daemon
sudo apt-get install amule-utils-gui

Copy the md5 of the password:

echo-n "password" | md5sum

Edit the Config file:

nano ~/.aMule/amule.conf
TempDir=/media/aman32/Temp
IncomingDir=/media/aman32/Incoming
AcceptExternalConnections=1
ECPassword = md5 value of On Password
ECPort = 4712

Below [WebServer]:

Enabled=1
Password= md5 value of On Password
Port=4711

Create Addresses file:

nano addresses.dat
http://www.emule.com/server.met

Auto Start:

sudo nano /etc/default/amule-daemon
 AMULED_USER = "pi"

Reboot:

sudo reboot

FTP Server

sudo apt-get install vsftpd
sudo nano /etc/vsftpd.conf

uncomment the following options:

local_enable=YES
write_enable=YES
sudo service vsftpd restart

Now you should be able to login with any local user credentails.

Use Filezille to upload files & verify:

tail /var/log/vsftpd.log 


TFTP Server

sudo apt-get install tftpd-hpa

tftpd-hpa look for ipv6 and wont start without it. Add -4 or –ipv4 between the quotes on the TFTP_OPTIONS line in the file

sudo nano /etc/default/tftpd-hpa
 TFTP_USERNAME=”tftp”
 TFTP_DIRECTORY=”/srv/tftp”
 TFTP_ADDRESS=”0.0.0.0:69″
 TFTP_OPTIONS=”–secure”
sudo chmod -R 777 /srv/tftp
sudo service tftpd-hpa restart
sudo service –status-all


JDownloader

Source: steven-england.info

  • If you are in a SSH connection, change into a desktop session based terminal before starting JDownloader.
  • JDownloader needs features of an active LXDE environment, it won’t work as a headless service.
mkdir ~/jdownloader2
cd jdownloader2
wget http://installer.jdownloader.org/JDownloader.jar
java -jar /home/pi/jdownloader2/JDownloader.jar
  • Create startup script
nano /home/pi/jdownloader2/startjd2.sh
#!/bin/sh
java -jar /home/pi/jdownloader2/JDownloader.jar
chmod 755 /home/pi/jdownloader2/startjd2.sh
  • Autostart
nano ~/.config/lxsession/LXDE-pi/autostart
@/home/pi/jdownloader2/startjd2.sh
  • If you want a desktop icon:
sudo apt-get install lxshortcut                      ## Install lxshortcut if it is not already installed by default
lxshortcut -o /home/pi/Desktop/JDownloader.desktop





{{#widget:DISQUS |id=networkm |uniqid=Rpi Softwares |url=https://aman.awiki.org/wiki/Rpi_Softwares }}