//라즈베리파이의 터미널 모드에서 이미지 파일을 볼 수 있는 fbi라는 뷰어 프로그램을 설치합니다.
INSTALL AN IMAGE VIEWER ON THE PI – Single view and Slideshow
To install the FBI image viewer type the following in a terminal on your Pi:
sudo apt-get install fbi
//라즈베리 파이 자체에서는 다음과 같은 명령으로 이미지 파일을 볼 수 있습니다. (0001.jpg) 는 저장된 파일의 이름입니다.)
To view an image type the following:
fbi 0001.jpg
// SSH를 통해 원격으로 제어도 가능합니다. 원격으로 파일을 열 때는 다음과 같이 명령하면 됩니다. 그러면 원격으로 내린 명령에 의해 라즈베리 파이가 바로 연결된 모니터에서 이미지 파일이 열립니다.
# the -T 2 is needed when controlling the pi via SSH - tells it to use the Terminal for input
sudo fbi -T 2 0001.jpg
// 아래 명령의 -c /dev/fb0 을 프레임버퍼라고 부르는데 이유는 잘 모르겠습니다.
# the -d /dev/fb0 flag calls a 'framebuffer'
sudo fbi -d /dev/fb0 -a -T 2 0001.jpg
To "unview" the image you have to kill the FBI process. To find the FBI process type:
ps -aux | grep fbi
// 구동되고 있는 프로세스를 죽일 때는 다음 명령을 사용합니다.
# ps -aux lists all processes running which is then "piped" (|) to the grep search function which looks for any fbi processes
To kill the FBI process type:
sudo kill [process id number]
// 터미널로 명령을 내려 슬라이드 쇼가 실행되도록 하는 명령입니다. -T 2는 SSH로 원격의 라즈베리 파이에서 프로그램을 실행하라는 뜻이고, -t 5는 5초 후에 다음 파일로 넘어가라는 뜻입니다. 5를 다른 숫자로 바꾸면 다른 시간으로 슬라이드 쇼가 진행됩니다.
To start a slideshow of images in a folder via SSH terminal
sudo fbi -d /dev/fb0 -a -T 2 -t 5 *.jpg
# the - t (lowercase) sets the time interval in seconds between images
To start a slideshow of images in a folder without the photo information on the bottom of the screen type:
sudo fbi -noverbose -a -t 10 -T 2 -d /dev/fb0 *.jpg
* 출처 :
http://claychaplin.com/workshop-lecture-demo/raspberry-pi-image-viewer/