Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| #!/bin/bash | |
| # Autor: Nilton OS -- www.linuxpro.com.br | |
| echo 'setup-web2py-nginx-uwsgi-centos64.sh' | |
| echo 'Support CentOS 6.4' | |
| echo 'Installs Nginx 1.4.1 + uWSGI + Web2py' | |
| # Get Web2py Admin Password | |
| echo -e "Web2py Admin Password: \c " | |
| read PW |
| wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
| wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm | |
| sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: qbittorrent-nox | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Starts QBittorrent | |
| # Description: Start qbittorrent-nox on start. Change USER= before running | |
| ### END INIT INFO |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: qbittorrent-nox | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Starts QBittorrent | |
| # Description: Start qbittorrent-nox on start. Change USER= before running | |
| ### END INIT INFO |
| /* | |
| * Oscilloscope | |
| * Gives a visual rendering of analog pin 0 in realtime. | |
| * | |
| * This project is part of Accrochages | |
| * See http://accrochages.drone.ws | |
| * | |
| * (c) 2008 Sofian Audry (info@sofianaudry.com) | |
| * | |
| * This program is free software: you can redistribute it and/or modify |
| #define ANALOG_IN 0 | |
| void setup() { | |
| Serial.begin(9600); | |
| //Serial.begin(115200); | |
| } | |
| void loop() { | |
| int val = analogRead(ANALOG_IN); | |
| Serial.write( 0xff ); |
| 1- First Expand the filesystem & Enable the SSH and Changing the default user "pi" password | |
| 2- Change the locale and timezone | |
| 3- Configure the Wifi to connect into the internet | |
| http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/ | |
| sudo echo -e "\n# Disable power management\noptions 8192cu rtw_power_mgnt=0" >>/etc/modprobe.d/8192cu.conf # disable the power saving | |
| http://raspisimon.no-ip.org/ipaddress.php | |
| or | |
| https://coderwall.com/p/v290ta/raspberry-pi-wifi-setup-with-wpa2-psk-aes | |
| 4- Connect via ssh |
| set nocompatible " be iMproved | |
| filetype on "Avoid errors on close | |
| filetype off " required! | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| " Bundles {{{- | |
| " let Vundle manage Vundle | |
| " required! |
| #!/bin/sh | |
| # This is for the file /etc/init.d/dnscrypt | |
| ### BEGIN INIT INFO | |
| # Provides: dnscrypt | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: DNSCrypt for OpenDNS | |
| # Description: Launch the dnscrypt to communicate with OpenDNS |
Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)