본문 바로가기

error

Google Play Music에 곡 upload시 can't establish secure connection error 문제 Google Play music은 10만곡의 개인 노래를 사이트에 업로드 할 수 있고, 이를 Playlist로 만들면, google home에서 유용하게 사용할 수 있습니다. 이를 사용하려면 미국 google 계정을 만들어야 하고, 북미쪽으로 VPN을 사용하는 등, 조금 복잡한 과정을 거쳐야 하지만, 이를 소개하는 blog는 많으므로, 이 방법은 다른 사이트를 참고하면 된다. 근래에, google 쪽에서 google play music에 대한 update를 진행하고 있는지, 잘되던 서비스들이 안되거나 조금씩 변경이 일어나고 있다. 급기야는, chrome을 통해 신규로 music을 upload하려고 하는데, 아래와 같은 error가 나오면서 더이상 music upload가 안되는 현상이 발생하였다. (VP.. 더보기
outlook 에서 마우스 drag 로 텍스트 선택이 안되는 버그 outlook 을 2016으로 업그레이드 한 이후, 갑자기 메일 본문을 drag 해서 선택할 수 없는 버그가 발생했다.본문을 copy 할 수 없어 매우 불편했는데 아래와 같이 해결했다. 1) win+r 키를 눌러서 실행창 open2) 다음 명령어 입력outlook.exe /restartfolders Close your Outlook.Launch the Run command (e.g. by pressing the Windows logo key + R).Type the following command: outlook.exe /resetfolders (Fig. 2.), and click OK to execute it. This should repair the default Outlook folder.. 더보기
signal 7 (SIGBUS), code 1 (BUS_ADRALN), fault addr 참고 URL : http://stackoverflow.com/questions/3246441/what-does-bus-adraln-invalid-address-alignment-error-meanshttp://www.badayak.com/3302 일반적으로 point 변수에 잘못된 값이 들어가 있을 경우는 null point exception 이나 다른 error 가 발생할 것이지만, 변수 자체가 invalid address alignment error 가 발생했다는 것은, 다른 수행에 의해서 변수 값 영역이 침범당했음을 의미한다. 아래 아티클의 작성자는 원인을 찾지 못했지만,http://www.badayak.com/3302아마 원인은 아래 (1) 을 수행할때 f_value3 영역이 침범당했기 때문일 것.. 더보기
android adb 에서 sh : shell script file 이 실행 안될때 실행법 # sh ./sigquit.system_server.sh & or # /system/bin/sh ./sigquit.system_server.sh & 아래와 같이 error 가 날때는 root@gracelte:/data/local/tmp # sh ./sigquit.system_server.sh & [1] 13625'oot@gracelte:/data/local/tmp # ./sigquit.system_server.sh[3]: sleep: syntax error: Invalid argument '10.0./sigquit.system_server.sh[6]: syntax error: 'while' unmatched [1] + Done (1) sh ./sigquit.system_server.sh Ubunt.. 더보기
ubuntu firefox 실행시 warning 해결 firefox 실행시 아래와 같은 warning 이 발생하면서 실행이 매우 느린 현상이 발생하였다. An error occurred while loading or saving configuration information for firefox. Some of your configuration settings may not work properly. 이 문제는 .debus 의 실행권한이 없어서 발생하는 이슈로써 다음과 같이 해결이 가능하다. https://bbs.archlinux.org/viewtopic.php?id=90671 I think I may have found a solution, can you print the output of ls -la ~/ | grep .dbusapparently thi.. 더보기
cool edit - output error 해결하기 윈도우 7에서 cool edit 소리 재생시 output error 가 발생할때 해결방법 더보기
e2fsprogs arm cross-compile for android e2fsprogs 의 filefrag Tool 을 arm 에서 사용하기 위해 build 시도. 0. 소스코드 다운로드 http://sourceforge.net/projects/e2fsprogs/?source=dlp 1. arm build toolchain 경로를 path 에 추가.이건 .configure 에서 CC 로 지정한 build tool 을 direct 로 호출해 버리기 때문임.export PATH=/home/onegun/2_hdisk/storage/utils_ubuntu/build_toolchains/MOST-build-toolchain/arm-2009q1/bin/:$PATH 2. ./configure 로 make 파일 생성./configure --target=arm-linux --host=ar.. 더보기
apt-get 이 꼬여서 동작하지 않을때 처리 방법 The following packages have unmet dependencies: sqlitebrowser:i386 apt-get 으로 패키지를 설치하거나 지우려고 할때 위와같은 오류만 계속 뜨며패키지 설치나 삭제가 안될때가 있다. apt-get -f dist-upgrade 이 명령어를 사용하면 깨끗하게 해결된다. 참조 : http://askubuntu.com/questions/261230/unmet-dependencies-linux-generic/261256 더보기
gdb 로 Android nexus5 debugging 하기 - GDB server 를 사용해야 하는 이유.: Android local 에서 gdb 를 직접 실행하면 필요한 symbol 정보 매칭이 안되어서 attach 한 process 가 SIGV error 를 내면서 종료가 됩니다. - cross compile 로 arm 용 gdb / gdb server 구하기 http://searchme.tistory.com/37 ※ 이 디버깅 방법에서 gdb 는 사용하지 않습니다. - adb push 로 PC에서 Android device 에 gdbserver 다운로드 하기 # adb push ./gdbserver /data/local/tmp/ - arm-gnu-eabi toolchain 받기git clone https://android.googlesource.com/pl.. 더보기
"dereferencing pointer to incomplete type" build error - root cause of build error "dereferencing pointer to incomplete type" This error occur that can't find struct. 1. didn't describe struct.2. struct use upper line before describe struct.ex) line 10 : use struct line 30 : describe struct3. miss #include file "dereferencing pointer to incomplete type"빌드애러가 났을때 원인 1. struct 를 정의하지 않았다.2. struct 를 정의하는 라인보다 위에서 사용했다.ex) line 10 : struct 사용line 30 : .. 더보기
[gdb] handle gdb error "single stepping until exit ... from function which has no line number information" I meet gdb error.GDB print this error instead of print current line of source code.GDB 를 사용하는 중 소스코드가 안보이고 아래와 같은 애러가 발생하였습니다. single stepping until exit ... from function which has no line number information so I introduce a cool solution to you.이것에 대한 해법을 적어보도록 하겠습니다. I already add '-g' option on my Makefile. and I add '-ggdb -O0' option regarding googleing result. but main cause is GDB versio.. 더보기
kernel 초기화시 지켜야 할 Ram memory size align 단위 kernel 2.6.32 kernel 초기화시 각 영역별로 ram memory 를 잡게 됩니다. 이러한 메모리들은 bank 에 저장되어서 start_kernel 에서 bootmem_init 을 호출하여 초기화 하게 되지요. 조금 더 정확하게 적자면 다음과 같이 boot param 을 bootloader에서 kernel로 전달되게 되면 "meminfo=mem=80M mem=253M@0x40000000 mem=128M@0x50000000" parse_cmdline 에서 early_mem 함수를 호출하여서 해당 구문을 해석하고 arm_add_memory 를 호출합니다. arm_add_memory 는 bank 구조체에 해당 정보를 채우게 되지요. meminfo = ( nr_banks = 0x3, bank = (.. 더보기