본문 바로가기

건설 정보47

Ubuntu Package 관련 명령어 Ubuntu에서 패키지를 관리하는 명령어들 중, 가장 기본이 되는 것이 apt-get다. $ apt-get update패키지 목록을 갱신 $ apt-get upgrade모든 패키지를 최신 버전으로 업그레이드 $ apt-get install xxxxxx 패키지를 설치 $ apt-get remove xxxxxx 패키지를 삭제 (설정파일은 삭제하지 않음) $ apt-get purge xxxxxx 패키지를 삭제. (remove와 다르게 설정파일도 삭제) 패키지 검색은 apt-cache로 한다. xxx라는 단어를 포함한 패키지를 검색하려면 아래와 같은 명령어를 적용한다.$ apt-cache search xxx apt-get 명령어의 사용법과 옵션은 다음과 같다.$ apt-get -h 2017. 12. 10.
Tensorflow backend로 Keras 설치 출처 : http://tmmse.xyz/2017/03/01/tensorflow-keras-installation-windows-linux-macos/https://keras.io/ Before installing Keras, please install one of its backend engines: TensorFlow, Theano, or CNTK. We recommend the TensorFlow backend.TensorFlow installation instructions.Theano installation instructions.CNTK installation instructions. Tensorflow가 있는 작업환경에서 다음 명령어 실행 $ pip install keras 만약, Memory.. 2017. 12. 10.
Anaconda 활용하여 Tensorflow 설치하기 출처 : http://blog.naver.com/wideeyed/221137846538https://tensorflow.blog/category/tensorflow/ 참고로 Tensorflow 1.4.1 (Latest)는 문제가 많다. 포럼에서도 1.4.0을 깔라고 추천을 해준다.큰 문제는 아니지만, 그래도 껄끄러우니... >>> import tensorflow as tf 를 실행하면 아래와 같은 Warning Message가 뜬다. RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6참조 : https://github.co.. 2017. 12. 9.
Qualcomm QCA6174 Wireless/Bluetooth Driver 문제 해결 이걸로 거의 반나절 날렸다... 구글링해서 모든 방법을 다 써봤지만, 결국 이 방법으로 해결 봤다. 인터넷에 뿌려진 방법들이 대부분 안되는 이유는, 아마 펌웨어 upload link가 오래 되어, 깨졌기 때문으로 추측된다. 아래 방법은 2017.12.09 기준으로 적용가능하니, 활용해보면 좋을 듯 하다. [Qualcomm Atheros QCA6174 Device setting] 출처 : https://www.reddit.com/r/linux4noobs/comments/3uhh83/ubuntu_1510_with_atheros_qualcomm_killer_n1525/ https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1520343?comments=.. 2017. 12. 9.
Ubuntu - root 계정으로 로그인 및 자동로그인 가능하게 하기 출처 : http://studyforus.tistory.com/224 Root 권한 자동 로그인 하기 System설정 > 사용자계정 > 자동 로그인 활성화 Terminal 키고#gedit 프로그램 활용 시 (windows 메모장과 비슷)$ sudo gedit /etc/lightdm/lightdm.conf # vim 활용할 시$ cd /etc/lightdm$ vi lightdm.conf >>> autologin-user="사용자이름">>> autologin-user=root 근데, root 권한으로 login을 하면 한글이 타이핑이 되지 않음.따라서, 아래 방법이 더 좋은 듯. (부팅 시 root 계정으로 로그인 가능하게 하기.) # superuser 권한 획득 해야 read-only mode 해제$ su.. 2017. 12. 9.
Ubuntu 16.04 LTS Troubleshooting 제가 경험한 이런 저런 문제들을 '우분투한국사용자모임'에서 만난 여러분들의 친절한 도움을 받아 해결했는데 그 내용들을 정리해 봅니다. 같은 상황을 겪는 분들에게 도움이 되시면 좋겠습니다. 그리고 제가 우분투나 리눅스에 대해서 잘 알지 못하다 보니 틀린 내용이나 빠뜨린 내용이 있고 설명이 부족해서 잘 안되는 경우도 있을텐데 댓글로 알려주시면 보강하도록 하겠습니다.처음 설치할 때에 주의할 점언어 선택은 한국어로 하고 키보드 선택은 '영어(미국)을 선택하십시오. 입력기 선택이 아니고 물리적인 키보드 배치에 관한 선택이기 때문입니다. 그래야 아래 나오는 것처럼 영어가 입력되지 않는 문제가 안생깁니다. 한글 입력기는 처음 설치하고 리부팅 과정을 거치면서 ibus가 저절로 설치됩니다. 이 때 한글 영어 전환키의 기.. 2017. 12. 9.