Create TOC

2012년 4월 22일

AppleTV/XBMC를 바로 시작하기

원문

AppleTV에서 XBMC를 바로 시작하기 위해서는 ssh으로 접속한 후 root권한으로 아래 명령을 실행해서 org.tomcool.xbmc-booter패키지를 설치한다..

apt-get install org.tomcool.xbmc-booter

기능을 끄기 위해서는 org.tomcool.xbmc-booter을 삭제하면 된다.

apt-get remove org.tomcool.xbmc-booter

2012년 4월 21일

AppleTV/sudo 설치

AppleTV에서 sudo를 사용하기 위한 방법을 기술한다.

우선 root계정으로 AppleTV에 접속한다.

$ ssh root@<apple tv ip>

접속 후 필요한 패키지를 설치한다.

$ apt-get install sudo nano

nano를 이용해서 /etc/sudoers파일을 열고 아래 설정을 추가한다.

mobile	ALL=(ALL)	ALL

이후 부터는 mobile계정으로 접속한 후 sudo를 이용해서 root권한의 작업을 할 수 있게 된다.

2012년 4월 5일

OSX - AppleScript를 이용해서 Finder 열기

아래와 같은 스크립트를 이용해서 새 Finder 창을 열 수 있다.

activate application "Finder" --gives Finder focus
tell application "Finder"
	set new_finder to make new Finder window to alias ":"
	set the current view of new_finder to column view
	set the target of new_finder to the home
end tell