원본글 : http://ppomppu.co.kr/zboard/view.php?id=phone&no=613690




일단 옵큐로 한겁니다 다른건 가능한지 모르겠습니다.

보통 옵큐유저들은 잘알고 있겠지만 다른분들은 모를수도있고 폰에서 지원 안될수도 있는거지만 일단 적어봅니다.

옵큐에서 서비스 메뉴 들어가시면(147789눌러서)위에 작은 삼각형 누르면 추가 메뉴가 나오고 거기서 hdr메뉴에 들어가시고 아래로 내려가시면

hdr 채널 이라고 나옵니다 그걸 550,600정도로 수정하시면 속도가 빨라진다고 합니다. 헬지망이 450 500 550 이렇게 세가지로 운영된다는데 

550 이나 600으로 하면 채널을 여러개잡았다가 유리한 채널로 잡는다고합니다-------------(잘모름)




그리고 두번째로 이건 제가 사용하니까 엄청 속도가 늘어났는데요

서비스 메뉴에 딱 들어가면 제일위에 서비스 설정이있습니다.. 거기서 내려가면 primary ch 과 secondary ch 두가지를 750, 775로 수정하니 대폭 속도상승! 장난아님ㅋㅋ

primary ch은 첫번째 기지국 간섭 시간
secondary ch은 두번째 기지구 간섭 시간 이라고 합니다.

간섭시간 조절하면 3g가 빨리진다고 합니다.



위에 사진은 빨간박스안에 제일 아래가 hdr채널을 550으로 했을때 중간이 650으로 했을때 제일위에가 650에 primary ch, secondary ch을 750 775로 바꾼겁니다.


다른분들 한번 해보시는게?
SystemUI.apk 등의 시스템 파일을 수정하려고 apk tool로 decomplie 해보면 거의 무조건 에러가 발생하는데

이때 에러 메시지중에 1.apk 관련 내용이 있으면 framework-res.apk를 말하는 겁니다.

즉 해당 위치에 framework-res.apk로 바꿔치기하고 다시 decomplie하면 정상적으로 처리됩니다.

1.apk - framework-res.apk
2.apk - moto-res.apk
3.apk - blur-res.apk

 

아트릭스 KT,SKT 국내판 루팅 방법

스마트폰,전자 2011. 4. 23. 05:28 Posted by 동글래미


원본글 : http://www.startpda.kr/zbxe/?document_srl=1212683

드디어 드디어 국내 KT와 SKT용으로 정식발매된 모토로라의 아트릭스 기종에서도

가능한 루팅 방법이 나왔습니다.


출처 : http://forum.xda-developers.com/showthread.php?t=1046626


역시 xda의 능력은 최고입니다.


방법은 매우 간단합니다.


흐 새벽에는 너무 기뻐서 내장SD 카드 초기화 된다는 얘기를 빼먹었네요.


0) 내장 SD카드(/sdcard)가 초기화되니 미리 PC나 외장SD 카드로 복사해두세요.

1) USB Debugging Mode 켜두기 

2) 용량과 관계 없이 MicroSD 카드 장착해두기

3) 첨부된 GingerBreak-v1.20.apk를 설치   (  다운로드 : GingerBreak-v1.20.apk    )

4) 실행후에 Root 눌러주면 루팅 완료후에 자동으로 리부팅됩니다.


으흐흐.. 루팅이 되었으니 슬슬 롬질 시작해봐야겠죠???


v1.20 부터는 언루팅 기능도 추가되었습니다.


0. 필요한 준비와 파일들
   1) adb 연결 가능하도록 설정
   2) perm root를 위한 파일들    



1. Temp Root 일단 임시로 Root 권한을 얻는다.

ON YOUR PC: 
Unzip the G2TempRoot files to a folder. From a cmd window or terminal, navigate to that folder and execute these commands:

Code:
$ adb push su /sdcard/su
$ adb push Superuser.apk /sdcard/Superuser.apk
$ adb push rage /data/local/tmp/rage
$ adb push busybox /data/local/tmp/busybox
$ adb push root /data/local/tmp/root
$ adb shell chmod 0755 /data/local/tmp/*
ON YOUR PHONE:
  1. Launch Terminal Emulator
  2. /data/local/tmp/rage
  3. Wait for the message: "Forked #### childs."
  4. Menu > Reset Term - Terminal Emulator will exit.
  5. Launch Terminal Emulator, it Force Closes. Launch a second time, and you'll have a root shell
  6. **NOTE**: in the original directions from the XDA thread, you are instructed to run the /data/local/tmp/root script here. DON'T do this
    just yet. Leave the terminal window open.


2. Perm Root 영구적으로 Root 권한을 지정한다.
    OTA 관련 작업은 필수 아님..

ON YOUR PC:
unzip the vision-perm-root.zip and navigate to that folder. There will be four files. You will need to push two of these to your phone- hboot-eng.img, and one of the wpthis-[..].ko files.

If you HAVE applied the OTA update, push wpthis-OTA.ko.
If you HAVE NOT applied the OTA update, push wpthis-pre-OTA.ko.

Code:
$ adb push hboot-eng.img /data/local
$ adb push wpthis-OTA.ko /data/local

ON YOUR PHONE:
You should still have terminal emulator up, at a root prompt. Now run:
Code:
    
# insmod /data/local/wpthis-OTA.ko
You should see:
Code:
   
init_module 'wpthis-OTA.ko' failed (Function not implemented)
That means it worked. This next step is CRUCIAL. You must make sure that you are writing to the proper partition here or you could brick your phone. To be absolutely clear- the partition is mmcblk(zero)p(one)(eight)

Code:
dd if=/data/local/hboot-eng.img of=/dev/block/mmcblk0p18
You should see some messages indicating that it was written. Next, run:

Code:
# /data/local/tmp/root
This will lock in root, and give you 'su' access in the future. Next, run: 
Code:
    
# sync

  모든 작업이 완료되고 바로 끄지 말고 안전을 위해서 몇분 기다렸다가 껐다가 켜본다.
  터미널 띄워서 #으로 Root 권한 제대로 뜨면 성공



3. Perm Root 2번으로 잘 안되면 gfree 

ON YOUR PC:

Unzip gfree_02.zip to a place on your computer. Navigate to where the files are on your computer, and type:

 $ adb push gfree /data/local

Gfree should now be in your phone at /data/local

ON YOUR PHONE:

You should still have terminal emulator up, at a root prompt from earlier.

Now run:

# cd /data/local
# chmod 777 gfree
# ./gfree -f
# sync

You now have read-write access to your /system, hboot, and recovery partitions. But you still need to "lock in" root, and give you 'su' access in the future. So just do:

 # /data/local/tmp/root
 # sync

You may see an error message along the lines of "mkdir: /system/xbin already exists", but if so you can ignore that, the rest of the script should still run ok.

Wait a few seconds for the changes to "take".

Now reboot your phone.

DATA2SD, DATA2EXT 관련 글 링크 모음.

스마트폰,전자 2011. 2. 13. 23:48 Posted by 동글래미

>> 내부메모리 부족해결<<

A2SD+ 설정방법 - 이동 

DATA2SD I/O BOOST 설정 - 애기야짱님 설명글

DATA2EXT I/O BOOST - XDA 페이지(영문)

DATA2SD-EXT I/O BOOST - XDA 페이지(영문)

SD카드파일 컴퓨터에서 안보일때 - 페이지로 이동


>> 배터리 효율 증가 <<

배터리 사용량 늘리기 - 캘리브레이션 팁!! 

배터리 표시기 초기화 방법 - Wipe Battery Statt 방법