Digital Ocean server setup draft

James Peret 8 years ago
parent
commit
b80a019cfb

+ 8 - 0
_drafts/digital-ocean-server-setup.md

@@ -0,0 +1,8 @@
1
+---
2
+layout: post
3
+title:  "Digital Ocean Server Setup"
4
+---
5
+
6
+## Droplet Setup
7
+
8
+This server is going to have a bit of load so I will use the *$10* droplet with **1GB Ram** and **30GB SSD Disk**. Use the **Ubuntu 14.04 x64** image. I choose *Ubuntu* because there is a lot of documentation for it, but probably *Debian* or *CentOS* would be a better choise as a linux distro for a web server.

+ 32 - 6
_posts/2015-06-27-raspberry-pi-getting-started.markdown

@@ -15,9 +15,25 @@ syntaxHighlighter: yes
15 15
 published: false
16 16
 ---
17 17
 
18
-### Creating the Raspbian boot disk
18
+## Install and configure
19 19
 
20
-To create a disk image of the Raspbian OS on a micro SD card from a mac, follow instructions [here](https://www.raspberrypi.org/documentation/installation/installing-images/mac.md).
20
+### Creating the Raspbian boot disk on a Mac
21
+
22
+Insert a MicroSD card to your computer and find out the disk identifier (ex: ```disk4```):
23
+
24
+    diskutil list
25
+
26
+Unmount the SD card using the disk identifier:
27
+
28
+    diskutil unmountDisk /dev/disk4
29
+
30
+Copy the raspbian img to the SD card:
31
+
32
+    sudo dd bs=1m if=Desktop/2015-05-05-raspbian-wheezy.img of=/dev/rdisk4
33
+
34
+This command will take a while. You can check the progress using ```SIGINFO``` by pressing ```CTRL + T```.
35
+
36
+For more information on creating a disk image of the Raspbian OS on a micro SD card from a mac or other operating systems, read the official instructions [here](https://www.raspberrypi.org/documentation/installation/installing-images/mac.md).
21 37
 
22 38
 ### First Boot
23 39
 
@@ -31,9 +47,11 @@ To start the Raspbian GUI, run the command:
31 47
 
32 48
     $ startx
33 49
 
34
-### Setting up Wi-Fi
50
+### Setting up Wi-Fi and Ethernet
51
+
52
+To set up multiple wired and wi-fi connections using WICD-CURSES app, follow this [instructions](http://www.raspyfi.com/wi-fi-on-raspberry-pi-a-simple-guide/).
35 53
 
36
-http://www.howtogeek.com/167425/how-to-setup-wi-fi-on-your-raspberry-pi-via-the-command-line/
54
+To set up a single wi-fi connection, follow this [instructions](http://www.howtogeek.com/167425/how-to-setup-wi-fi-on-your-raspberry-pi-via-the-command-line/)
37 55
 
38 56
 ### Installing Apps
39 57
 
@@ -78,7 +96,9 @@ http://www.howtogeek.com/141157/how-to-configure-your-raspberry-pi-for-remote-sh
78 96
 * [x11vnc](http://www.karlrunge.com/x11vnc/) ([command list](http://www.karlrunge.com/x11vnc/x11vnc_opts.html))
79 97
 * [Stack Overflow](http://raspberrypi.stackexchange.com/questions/9590/tightvncserver-show-the-same-screen-on-hdmi-and-vncclient)
80 98
 
81
-### Playing Videos with VLC media Player
99
+## Video Players
100
+
101
+### VLC media Player
82 102
 
83 103
 To start a video, use the command the following command. The ```vvv``` is for *verbose mode*.
84 104
 
@@ -90,7 +110,13 @@ To [play a video with VLC thru a ssh session](http://stackoverflow.com/questions
90 110
 
91 111
 ```cvlc --quiet --fullscreen --no-osd --loop  playlist.xspf --x11-display :0```
92 112
 
93
-* [How to use VLC with hardware acceleration on a Raspberrypi](http://www.oblivion-software.de/index.php?id=56&type=98)
113
+* [How to use VLC with hardware acceleration on a Raspberry pi](http://www.oblivion-software.de/index.php?id=56&type=98)
114
+
115
+### HPlayer
116
+
117
+[HPlayer](https://github.com/Hemisphere-Project/HPlayer) is a OSC controllable and GPU accelerated video player for Raspberry Pi with OpenGL shaders support.
118
+
119
+## Misc
94 120
 
95 121
 ### Useful commands
96 122