전체 글68 Vim insatll error 관련 출처 : https://askubuntu.com/questions/78406/cannot-install-vim 문제점 $ sudo apt-get install vim Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved ou.. 2017. 12. 10. 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. 이전 1 ··· 7 8 9 10 11 12 다음