Guest User

Untitled

a guest
Jan 25th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. Networking
  2. =======================================
  3. pi@raspberry:sudo /etc/init.d/networking restart
  4.  
  5. To check open connections
  6.  
  7. > netstat -ltp
  8.  
  9. http://www.modmypi.com/blog/tutorial-how-to-give-your-raspberry-pi-a-static-ip-address
  10.  
  11. https://wiki.archlinux.org/index.php/Network_configuration
  12.  
  13. DNS File
  14. -------------
  15. /etc/resolv.conf
  16.  
  17. To run wicd
  18. ------------
  19. sudo wicd
  20.  
  21. Text Mode
  22. ----
  23. sudo wicd-curses
  24.  
  25. https://wiki.archlinux.org/index.php/Wicd#Autostart
  26.  
  27. https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=111709
  28.  
  29. MOUNTING NETWORK DRIVE
  30. =====================
  31. http://geeks.noeit.com/mount-an-smb-network-drive-on-raspberry-pi/
  32. https://www.raspberrypi.org/forums/viewtopic.php?f=27&t=21357
  33. http://raspberrypi.stackexchange.com/questions/27179/automatic-mounting-of-nas-drive-fails#
  34.  
  35. Mounting script on start
  36. http://pastebin.com/6Gf64Zy6
  37.  
  38. *********************************************************
  39. Setting it to automount worked for me
  40. Append _netdev,x-systemd.automount to your options
  41.  
  42. For example:
  43. //192.168.2.11/Videos /home/pi/NASvideos cifs username=NASUSER,password=NASPAS,iocharset=utf8,_netdev,x-systemd.automount 0 0
  44. *********************************************************
  45.  
  46. FIREWALL
  47. ====================
  48. http://joshua14.homelinux.org/blog/?p=1688
  49.  
  50. JDownloader
  51. ====================
  52.  
  53. Adding jdownloader to startup
  54. https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=22981
  55. https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=55824
  56. http://steven-england.info/2014/11/23/setting-raspberry-pi-download-station-help-jdownloader2/
  57.  
  58. As a headless service which im using
  59. https://board.jdownloader.org/showthread.php?t=57446&page=4 +++++++++++++++++++
  60. https://blog.jolos.fr/2015/06/serveur-telechargement-jdownloader-2/
  61.  
  62.  
  63. Torrent
  64. ===================
  65. http://geeks.noeit.com/use-your-raspberry-pi-as-an-always-on-bittorrent-box/
  66.  
  67. http://www.makeuseof.com/tag/how-to-turn-your-raspberry-pi-into-an-always-on-downloading-megalith/
  68.  
  69. XRDP
  70. =====================
  71. Restart
  72.  
  73. /etc/init.d/xrdp restart
  74. http://www.tweaking4all.com/software/linux-software/use-xrdp-remote-access-ubuntu-14-04/
  75.  
  76. OPEN VPN
  77. =================
  78. http://readwrite.com/2014/04/10/raspberry-pi-vpn-tutorial-server-secure-web-browsing
  79. http://blog.kenyap.com.au/2012/07/txtdb-error-number-2-when-generating.html
  80. https://www.digitalocean.com/community/questions/no-easy-rsa-to-install-on-my-debian
  81. http://jacobsalmela.com/setting-up-an-openvpn-server-on-the-raspberry-pi/
  82. http://www.linux-faqs.info/vpn/how-to-setup-an-openvpn-server
  83. https://www.raspberrypi.org/forums/viewtopic.php?t=81657
  84.  
  85. https://n0where.net/openvpn-raspberry-pi/ +++++++++++
  86.  
  87. Conf files
  88. https://github.com/rmurray2/RPI-TLS-VPN/blob/master/server.conf
  89. https://github.com/rmurray2/RPI-TLS-VPN/blob/master/client.conf
  90.  
  91. Verification
  92.  
  93. [root@plxweb01 keys]# openssl verify ca.crt
  94. [root@plxweb01 keys]# openssl verify -CAfile ca.crt ca.crt
  95. [root@plxweb01 keys]# openssl verify -CAfile server.crt server.crt
  96.  
  97. =============================
  98.  
  99. Auto start Apps
  100.  
  101. http://www.raspberrypi-spy.co.uk/2014/05/how-to-autostart-apps-in-rasbian-lxde-desktop/#prettyPhoto
  102. http://www.stuffaboutcode.com/2012/06/raspberry-pi-run-program-at-start-up.html
  103.  
  104. ==============================
  105.  
  106. Other Sites
  107.  
  108. http://pimylifeup.com/
  109. https://www.maketecheasier.com/finding-raspberry-pi-system-information/
  110. http://www.makeuseof.com/tag/15-useful-commands-every-raspberry-pi-user-should-know/
  111.  
  112. ==============================
Add Comment
Please, Sign In to add comment