DIGITory/Ubuntu2014. 12. 9. 11:49

when I tried to install ubuntu 12.04, I got this error.

"/usr/lib/ubiquity/plugins/ubi-timezone.py" follows the message "ubiquity crashed with ValueError in raw_decode(): No JSON object could be decoded"


this is the discussion of ubuntu forum : "http://ubuntuforums.org/archive/index.php/t-1965802.html"

and I fixed this that unplugged network cable.

Posted by Joe.C
DIGITory/Ubuntu2014. 12. 2. 08:03

https://code.google.com/p/chromium/issues/detail?id=313427


크롬의 문제, 혹은 우분투의 문제인 줄 알았으나... 결국 synergy의 업데이트로 수정됨.

Posted by Joe.C
DIGITory/Ubuntu2014. 11. 17. 11:18

sudo gnome-desktop-item-edit /usr/share/applications/ --create-new


If gnome-desktop-item-edit is not available (e.g., on Ubuntu), you can install it as follows.

$ sudo apt-get install --no-install-recommends gnome-panel


after creation .desktop file, If you can't see the icon on your dock, excute it once on terminal, and lock to launcher.

Posted by Joe.C
DIGITory/.......2014. 10. 31. 08:15

http://www.voidtools.com/


Everything Search Engine

Locate files and folders by name instantly.

Posted by Joe.C
DIGITory/Ubuntu2014. 10. 30. 13:49


1. alz 


unalz

: ubuntu용 실행파일


unalz-0.65.tgz

: 소스파일


alz 포맷을 알집 없이 압축, 해제 할 수 있는 툴.


윈도우에 알집이 깔려있다면 상관없으나 개인적으로 알약과 알집은 찝찝해서 못깔겠;;; 


alz....대체 뭐가 좋은지도 모르겠고 왜 만들었는지도 모르겠고.... 그냥 그런 포맷이라면 그냥 통일하면 좋을텐데;; 


아무튼 소스 받아서 간단히 빌드해서 쓸 수 있음.


Ubuntu 쓰시는 분들은 linux-utf8 옵션으로 빌드하면 됨.

posix-utf8로 하면 iconv 깔아야 됨


http://www.kippler.com/win/unalz/



2. egg


unark!



unark_0.tgz


Posted by Joe.C
DIGITory/.......2014. 10. 28. 21:41

http://tumblone.wordpress.com/


요기 가면 한꺼번에 다운 받을 수 있는 툴이 있음.

'DIGITory > .......' 카테고리의 다른 글

Sublime Text - installing browser package  (0) 2015.05.10
window용 파일 검색  (0) 2014.10.31
starting development with git  (0) 2014.09.01
1920 x 1080 image ( Red, Green, Blue, White, Black )  (0) 2013.11.01
code highlighter on HTML  (0) 2013.10.16
Posted by Joe.C
DIGITory/Ubuntu2014. 10. 20. 13:44

Tried

"hg clone https://code.google.com/p/webglsamples/"

then I got 

"abort: error: _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed"


solution....

hg clone --insecure https://code.google.com/p/webglsamples/



'DIGITory > Ubuntu' 카테고리의 다른 글

Ubuntu - Add Excutable Icon to Dock  (0) 2014.11.17
Linux 에서 alz , egg 파일 압축 및 압축해제하기  (0) 2014.10.30
우분투 용 egg extractor  (0) 2014.04.23
Font Infinality  (0) 2014.04.08
rpm : find package name with .so file.  (0) 2013.07.23
Posted by Joe.C
DIGITory/.......2014. 9. 1. 10:50

EXAMPLES

       Start development from a known tag


               $ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6

               $ cd my2.6

               $ git branch my2.6.14 v2.6.14   (1)

               $ git checkout my2.6.14


           1. This step and the next one could be combined into a single step with "checkout -b my2.6.14 v2.6.14".


       Delete an unneeded branch


               $ git clone git://git.kernel.org/.../git.git my.git

               $ cd my.git

               $ git branch -d -r origin/todo origin/html origin/man   (1)

               $ git branch -D test                                    (2)


           1. Delete the remote-tracking branches "todo", "html" and "man". The next fetch or pull will create them again unless you configure them not to. See git-fetch(1).

           2. Delete the "test" branch even if the "master" branch (or whichever branch is currently checked out) does not have all commits from the test branch.



Posted by Joe.C
DIGITory/Codes2014. 7. 25. 14:15

#include <time.h>

.....

clock_t start, end;

double duration;

start = clock();

  // DO SOMETHING

end = clock();

duration = ( (double)(end - start) / CLOCKS_PER_SEC );

........

'DIGITory > Codes' 카테고리의 다른 글

Test Random apk  (3) 2016.04.13
GNU Make 강좌  (0) 2014.12.16
Posted by Joe.C
DIGITory/MS Windows2014. 7. 25. 13:44

IE 9 : 

1. excute 'cmd' with admin's permission

2. run :

FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*9.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /norestart"


Posted by Joe.C