board_android-IoT/raspberry_pi3 2017. 4. 13. 17:41

http://www.geeks3d.com/hacklab/20160108/how-to-disable-the-blank-screen-on-raspberry-pi-raspbian/


$ sudo nano /etc/lightdm/lightdm.conf
[SeatDefaults]
xserver-command=X -s 0 -dpms


posted by cskimair
:
board_android-IoT/raspberry_pi3 2017. 4. 11. 09:43

http://raspberrypi.stackexchange.com/questions/54365/how-to-download-and-install-python-3-5-in-raspbian



First of all you need to get your dependencies right. That mostly depend on what you have already installed previously. So for a vanilla fresh Raspbian (jessie), you will (approximately) need to make sure you have these:

sudo apt-get install build-essential libc6-dev
sudo apt-get install libncurses5-dev libncursesw5-dev libreadline6-dev
sudo apt-get install libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev
sudo apt-get install libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev

The rest is simple. First download and extract...

cd $HOME
wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
tar -zxvf Python-3.5.2.tgz

...and then compile with:

cd Python-3.5.2
./configure       # 3 min 13 s
# We have 4 processors, so let's use 4 threads
make -j4          # 8 min 29 s
sudo make install # ~ 4 min

Save your SD card space:

cd ..
sudo rm -fr ./Python-3.5.2*


posted by cskimair
:
https://kocoafab.cc/tutorial/view/322

라즈베리 파이 응용하기_디지털 날씨 관측소 만들기


#raspberry #weather_monitor



posted by cskimair
:



raspberry pi3  korean language support(라즈베리파이 한글지원)



1. install hangul component 

sudo apt-get install   ibus ibus-hangul   ttf-unfonts-core


2. install language and support in linux control panel 

goto language support --> 'install / remove language' -->

then select korean in 'installed languages' dialog 

then press 'apply' 






posted by cskimair
:

1. 개요


2. sd card format

- SD카드를 PC(노트북)에 넣고

아래와 같이 드라이브를 찾아서 포맷을 해줍니다.

(FAT32, 빠른 포맷)



2.1

아래 링크에 가서 파일을 다운 로드 합니다.

https://www.raspberrypi.org/downloads/ 


아래 이미지를 클릭하면 설치에 필요한 파일을 다운로드합니다.





적당한 경로(Downloads 폴더?)에 압축파일을 풀어줍니다.



위 모든 파일을 선택해서 SD card에서 복사해줍니다.


이제 SD카드를 라즈베리파이의 SD카드 슬롯에 넣어 줍니다.

전원 및 HDMI cable, 키보드, 마우스 등을 연결합니다.

이때, 인터넷 연결도 필요합니다.


그리고 전원 연결해서 부팅해줍니다.

 

... Raspberian 선택후 다운로드...  꽤 오래 걸림(1시간? -.-)

 

raspberry pi GUI boot select

-> sudo raspi-config

-> boot_behaviour  선택후 GUI부팅 선택하고 저장하고 재부팅함.


 


posted by cskimair
:

os tunning using apt-get and other commands



2017-03-08

    7  sudo apt-get install vim
   29  sudo apt-cache search xcalibrate
   30  sudo apt-cache search calibrate
   31  sudo apt-get install  x11-touchscreen-calibrator
   32  sudo apt-get install  x11-input-calibrator
   33  sudo apt-get install  xinput-calibrator
   36  sudo apt-cashe show   xinput-calibrator
   37  sudo apt-cache show   xinput-calibrator
   39  sudo apt-cache show   xinput-calibrator
   42  sudo apt-get purge libreoffice*
   43  sudo apt-get update
   46  sudo apt-get dist-upgrade
   48  sudo apt-get install  ibus ibus-hangul ttf-unfonts-core
   49  sudo apt-get dist-upgrade
   50  sudo apt-get update
   51  sudo apt-get dist-upgrade
   55  sudo apt-cache search xclock
   56  sudo apt-get install  xarclock
   60  sudo apt-get install xinput-calibrator
   78  sudo apt-get update   &&  sudo apt-get dist-upgrade
   79  sudo apt-get autoremove
   86  sudo apt-cache search xpaint
   88  sudo apt-get install gpaint
  127  sudo apt-get install vim
  149  sudo apt-get  install xinput evtest
  192  sudo apt-get install libts-bin

posted by cskimair
: