GPG error

Development/Linux & Android 2013. 12. 27. 14:04


sudo add-apt-repository ppa:noobslab/themes

또는

/etc/apt/sources.list 파일에 deb http://ppa.launchpad.net/noobslab/themes precise main 추가하고

sudo apt-get update

Ubuntu 12.04 에서 위와 같은 명령을 이용해 repository를 추가 하고 업데이트를 할 때 아래와 같은 메시지를 만날 수 있다.

W: GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY xxxxxxxxxxx

이럴 때는 http://keyserver.ubuntu.com 에서 본인의 pub_key를 찾고 이를 등록해주면 된다.


1. Search String 에 자신의 키 ( 에러메시지의 xxxxxxx부분)를 입력하고 "Search!"

2. 나온 결과의 Public Key를 복사하여 임시 파일을 만든다 (ex: key1)

3. 해당 키를 등록 

sudo adp-key add key1

4. 다시 apt-get update 수행



아래 링크의 두 번째 방법을 참고하였다.

http://opensourceforgeeks.blogspot.in/2013/04/w-gpg-error-httpppalaunchpadnet-precise.html


:

[Updating] Change the icon size of launcher in Unity (Ubuntu 12.04)

Development/Linux & Android 2013. 12. 18. 12:26

As you may know, we can not change the icon size of launcher box in Ubuntu 12.04

When you execute the below command,

/usr/lib/nux/unity_support_test -p

If there is a message as below, it is not available to change the size.

Not software rendered:    no
Not blacklisted:          yes
GLX fbconfig:             yes
GLX texture from pixmap:  yes
GL npot or rect textures: yes
GL vertex program:        yes
GL fragment program:      yes
GL vertex buffer object:  yes
GL framebuffer object:    yes
GL version is 1.4+:       yes


Unity 3D supported:       no

But, we can change the size manually. Follow the below commands.

cd ~/Documents/unity-2d-shell-backup.tar.gz /usr/share/unity-2d/shell/*
tar cvzf ~/Documents/unity-2d-shell-backup.tar.gz /usr/share/unity-2d/shell/*
ls /usr/share/unity-2d/shell/ -la
sudo vi /usr/share/unity-2d/shell/Shell.qml
sudo vi /usr/share/unity-2d/shell/common/IconTile.qml
sudo vi /usr/share/unity-2d/shell/launcher/LauncherList.qml



:

CMA를 처음 접하는 사람들을 위한 짧은 글

Development/Linux & Android 2013. 9. 20. 02:55

CMA를 처음 접하는 사람들을 위한 짧은 ...

From "[PATCHv11 0/8] Contiguous Memory Allocator"

https://groups.google.com/forum/#!topic/linux.kernel/5JSXa3vxNmA


A few words for these who see CMA for the first time:

   The Contiguous Memory Allocator (CMA) makes it possible for device
   drivers to allocate big contiguous chunks of memory after the system
   has booted.

   The main difference from the similar frameworks is the fact that CMA
   allows to transparently reuse memory region reserved for the big
   chunk allocation as a system memory, so no memory is wasted when no
   big chunk is allocated. Once the alloc request is issued, the
   framework will migrate system pages to create a required big chunk of
   physically contiguous memory.

   For more information you can refer to nice LWN article: 
   http://lwn.net/Articles/447405/ and links to previous versions
   of CMA framework.

   The CMA framework has been initially developed by Michal Nazarewicz
   at Samsung Poland R&D Center. Since version 9, I've taken over the
   development, because Michal has left the company.

:

Contiguous Memory Allocator

Development/Linux & Android 2013. 9. 19. 15:59

http://lwn.net/Articles/450633/

CMA developer Marek Szyprowski의 Contiguous Memory Allocator에 대한 초기 계획 링크 글.

CMA를 이해하기 위해서 도움이 되려나?

:

iOS7 베타2 출시?

News & Tips 2013. 6. 21. 08:33

iOS7 을 아이폰4에 올렸더니 역시 베타라는 이름이 무색하지 않게 많은 오류들

그 중에 제일 거슬리는것 gps를 원할히 이용하지 못하는 것인데 정말 답답하다.

major issue라고 생각되는 만큼 베타2에서는 수정되어 나올 것 같은데 

대체 다음 버전은 언제 출시가 되려나.


아래 링크에서 친절이 그동안 애플의 평균 릴리즈 기간을 정리.

예상되는 출시일은 6월24일!

딱 마춰서 나오진 않겠지만 조만간 나오겠군~!!

http://m.cultofmac.com/cultofmac/#!/entry/when-will-the-next-ios-7-beta-arrive-when-will,51c1f92dc5f0cf15b3772bcc

: