Correct the timestamp in the org files
[blog.git] / posts / raspberrypi-note.org
1 #+TITLE: The note of raspberry
2 #+AUTHOR: Peng Li
3 #+EMAIL: seudut@gmail.com
4 #+DATE: <2017-02-18>
5
6 * Install Raspbian 
7 ** format the sd card and install the image
8 - earse as MBR  type  and FAT fromat  using Disk Utility on Mac
9 - dd the image
10 ** start the system and config the network
11 ** Support exFat32 format mobile disk
12 Install =exfat-utils= by =aptitude=
13 ** SSHd not started on boot
14 http://www.raspberrypi-spy.co.uk/2012/05/enable-secure-shell-ssh-on-your-raspberry-pi/
15 #+BEGIN_SRC sh :results output replace
16 sudo raspi-config
17 #+END_SRC
18 It can also config  vncserver  started on boot
19 ** change locales to fix
20 #+BEGIN_SRC sh :results output replace
21 sudo dpkg-reconfigure locales
22 #+END_SRC
23 ** set the timezone
24 copy =/usr/share/zoneinfo/**Shanghai= to =/etc/localtime=
25 #+BEGIN_SRC sh :results output replace
26 sudo dpkg-reconfigure tzdata
27 #+END_SRC
28 **