Posted
Filed under 리눅스

쿨링팬 소리가 너무 커서 찾아봤는데 있다.
하드커널에서는 공식적으로 지원하지 않는다.

https://github.com/nthx/odroid-xu3-fan-control


온도를 확인하는 방법이다. (나누기 1000을 하면 실제 온도다)
cat /sys/devices/virtual/thermal/thermal_zone0/temp


2016/05/25 01:25 2016/05/25 01:25
Posted
Filed under 리눅스
ext4는 마운트에 퍼미션을 지정해줄수 없다.

일단 마운트 한상태에서
그룹을 변경해준다.

그 다음 실행...
setfacl -R -d -m u::rwx,g::rwx,o::rwx 마운트디렉토리

fstab 옵션에 acl을 추가해준다.
/dev/sda        /mnt/hdd        ext4            defaults,noexec,acl          0       0

디렉토리는 777로 생성이 된다.
근데 파일은 777로 생성이 안되네...쩝





2016/05/24 12:14 2016/05/24 12:14
Posted
Filed under 리눅스
라즈베리파이2것을 그대로 사용하면 된다.

https://about.gitlab.com/downloads/#raspberrypi2

초기 아이디/비밀번호는
root/5iveL!fe 이거다

XU4에 설치해봤는데 잘된다.
아마 32BIT 오드로이드는 대부분 잘 설치될것 같다.

2016/05/24 11:06 2016/05/24 11:06
Posted
Filed under 리눅스
기본이 UTC로 되어있기때문에 타임존을 변경하려면 아래와 같이 한다.

shell> dpkg-reconfigure tzdata 

asia와 seoul을 선택하면 된다.

끝.

2016/05/19 12:23 2016/05/19 12:23
Posted
Filed under 리눅스
32비트용을 64비트에 설치하는 방식이다.

apt-get update && apt-get install apt-transport-https
wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | apt-key add -
echo "deb [arch=armhf] https://dev2day.de/pms/ jessie main" | tee /etc/apt/sources.list.d/pms.list
dpkg --add-architecture armhf
apt-get update
apt-get install plexmediaserver-installer:armhf


http://localhost:32400/web 으로 접속하면 관리자화면이다.

굿~!


2016/05/17 12:11 2016/05/17 12:11
Posted
Filed under 리눅스
ERROR: The certificate of ‘dev2day.de’ is not trusted.
ERROR: The certificate of ‘dev2day.de’ hasn't got a known issuer.

오류가 난다면

apt-get install ca-certificates

설치.

해결~끝.

2016/05/17 12:04 2016/05/17 12:04
Posted
Filed under 리눅스
하드를 윈도우에 꼽았다가 다시 리눅스에 마운트할라니
The disk contains an unclean file system 이런 오류가 나면서 마운트가 안된다.

이럴때는
ntfsfix /dev/sda (ntfs파티션)
하고 다시 마운트하면 된다.


2016/05/15 23:53 2016/05/15 23:53
Posted
Filed under 리눅스
sudo dpkg --add-architecture armhf
sudo apt-get update
sudo apt-get install libc6:armhf
sudo ln -s /lib/ld-linux-armhf.so.3 /lib/ld-linux.so.3
sudo sh -c 'echo "deb [arch=armhf] http://linux-packages.getsync.com/btsync/deb btsync non-free" > /etc/apt/sources.list.d/btsync.list
wget -qO - http://linux-packages.getsync.com/btsync/key.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install btsync


2016/05/12 23:44 2016/05/12 23:44
Posted
Filed under 리눅스
블로그랑 기타 나스 프로그램들이 돌던 라즈베리파이2 를 Remix Mini로 변경했다.
안드로이드에서 기존처럼 쓸려니 뭔가 불편하긴 하다.

* Bittorrent Sync -> Syncthing
 안드로이드용 btsync은 파일을 자꾸 빼먹는다. 포기
 ownCloud는 로케일 설정 어쩌구 하면서 설치가 안된다.
 Pydio는 대용량을 넣었더니 목록 자체가 사라져 버렸다.
 Syncthing 연동했더니 굿~~~~ 잘됀다~
  --- 5/11 : 처음 400G 씽크는 잘된다 다시 스캔들어가면 먹통이 된다.
      결국 이건 프로그램적인 문제가 아니라 안드로이드에서 대용량에 대한 처리가 불가능한것 같다.
      다른 대안을 찾아봐야할것같은데....이것 참...

* Web Server -> KSWEB
 nginx를 써야해서 KSWEB 유료결제 했다.

* transmisson -> tTorrent
 원격제어도 되고 transmission 의 기능들을 대부분 사용가능하다.

Remix mini는 루팅이 안된다.
그래서 80,21 포트를 사용하지 못한다.
공유기에서 포트포워딩으로 처리하긴 했지만...
본체를 뜯고 쇼트시켜서 하는방법이 유튜브에 있지만 그렇게 까지 하고 싶진 않고...

여러가지 고민이긴한데...블로그는 잘 돌아간다.
라즈베리파이2보단 조금더 빠르다.

------> 5월13일 오드로이드로 다시 변경...안드로이드로 이 모든걸 하기에는 무리인듯싶다..


사용자 삽입 이미지
2016/05/09 01:06 2016/05/09 01:06