본문 바로가기

전체 글59

[linux] 서버간 공유폴더 설정하기 펌글입니다. 원본글은 아래에 기재했습니다. 리눅스 서버(Linux Server)를 운영하다보면 서버간에 폴더를 공유(Shared folder)해야 할 때가 있다. 공유폴더를 설정한다거나, 백업폴더를 설정한다거나 여러 이유가 있을 수 있다. 그 때 사용할 수 있는 서버간에 공유폴더를 설정할 수 있는 방법을 설명하고자 한다. 이 방법은 Ubuntu, Debian 및 CentOS, Redhat, Amazon Linux 에서 사용할 수 있다. 1. Ubuntu , Debian 설치 방법 # apt-get install sshfs 아주 간단하다. 2. CentOS, Redhat 리눅스 확장 저장소 추가. yum install epel-release -y 설치 # yum install fuse sshfs 3. Am.. 2016. 8. 22.
[GPU] add library cuDNN ** if you install tensorflow, i recommand you to install cuda v4.0.** tensorflow is incomplete system in cuda v5.0 1. download cuDNN library files [1] you need login for download files.click the picture or url is "https://developer.nvidia.com/rdp/cudnn-download" downloads install guide and cuDNN v5 Library for Linux(or your OS env) and move two directory in downlading cuDNN v5 Libarary to .In my.. 2016. 4. 6.
[Tensorflow] install and uninstall tensorflow Tensorflow install (click)Install pip (or pip3 for python3) if it is not already installed: # Ubuntu/Linux 64-bit $ sudo apt-get install python-pip python-dev Install TensorFlow:# Ubuntu/Linux 64-bit, CPU only:$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl # Ubuntu/Linux 64-bit, GPU enabled: $ sudo pip install --upgrad.. 2016. 4. 6.
[GPU] installing cuda 7.5 ** If you install cuda 7.5 version due to tensorflow, you will install cuda 7.0 version and 4.0 version cuDNN. 7.5 version cuda and 5.0 version cuDNN cause to error on excuting tensorflow, especially cnn code. I recommend you to install 7.0 cuda and 4.0 cuDNN. ** 1. install cuda 1.1 deb (network) CUDA Repository [1] Retrieve the CUDA repository package for Ubuntu 14.04 from the CUDA download sit.. 2016. 4. 6.