python을 위한...

Vim/Plug-Ins 2016. 4. 6. 00:38 |

'Vim > Plug-Ins' 카테고리의 다른 글

[EXAMPLE] YouCompleteMe - .ycm_extra_conf.py  (0) 2016.03.03
vim 유용한 플러그인 셋팅  (0) 2016.02.25
Vundle for Linux  (0) 2013.03.21
Vundle for Windows  (0) 2013.02.20
Plug-in 모음  (0) 2013.02.05
Posted by scii
:

[CentOS6] R setup

Linux/CentOS 2016. 4. 5. 23:27 |

'Linux > CentOS' 카테고리의 다른 글

[CentOS7] NVIDIA Driver 설치  (0) 2017.06.06
Centos7 Media 설치  (0) 2017.06.06
[CentOS7] setup ffmpeg && cuda && opencv && qt5  (0) 2016.03.20
[CentOS7] 초기 설정  (0) 2016.03.19
[CentOS7] Nvidia Graphic Driver Install  (0) 2016.03.19
Posted by scii
:

yum install autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel


FFMPEG

ffmpeg 를 설치한다.


CUDA

이것을 설치전, nvidia 드라이버가 설치되어있다면 지운다. 그리고 설치한다.

http://developer.download.nvidia.com/embedded/L4T/r23_Release_v2.0/CUDA/CUDA_Getting_Started_Linux.pdf?autho=1458413119_45b808d6c65e3122f01048167fd63182&file=CUDA_Getting_Started_Linux.pdf

위의 링크로 가서 os에 맞게 설치한다.

모두 설치하였다면, 예제 파일을 컴파일, 실행하여 잘 동작되는지 확인한다.

OpenCV

cd opencv-3.1.0

mkdir build

cd build

#cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D WITH_V4L=ON -D BUILD_EXAMPLES=ON -D WITH_OPENGL=ON ..

cmake -D CMAKE_BUILD_TYPE=RELEASE ..

cmake하면서 not found 애들... 모두 설치해주어야한다. 너무 많이 뭔가를 설치해서 못적겠다..

make -j $(nproc)

make install


QT5


참고:

https://docs.highfidelity.com/docs/centos-7-interface-compile-guide

https://help.ubuntu.com/community/OpenCV#Installation

'Linux > CentOS' 카테고리의 다른 글

Centos7 Media 설치  (0) 2017.06.06
[CentOS6] R setup  (0) 2016.04.05
[CentOS7] 초기 설정  (0) 2016.03.19
[CentOS7] Nvidia Graphic Driver Install  (0) 2016.03.19
[CentOS7] Google Chome Stable Install  (0) 2016.03.19
Posted by scii
:

[CentOS7] 초기 설정

Linux/CentOS 2016. 3. 19. 23:47 |

yum update를 한 상태!!


nux dextop 레포 셋업.

# yum -y install epel-release && rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm


Application 설치

JAVA

# yum install java

MP3 Support

# yum install gstreamer gstreamer1 gstreamer-ffmpeg gstreamer-plugins-good gstreamer-plugins-ugly

VideoLAN (VLC)

# yum install vlc

LibreOffice

# yum install libreoffice

GIMP

# yum install gimp

Transmission

# yum install transmission


# yum install ntfs-3g

yum install lm_sensors

sensors-detect 
yum --enablerepo=nux-dextop install faience-icon-theme


'Linux > CentOS' 카테고리의 다른 글

[CentOS6] R setup  (0) 2016.04.05
[CentOS7] setup ffmpeg && cuda && opencv && qt5  (0) 2016.03.20
[CentOS7] Nvidia Graphic Driver Install  (0) 2016.03.19
[CentOS7] Google Chome Stable Install  (0) 2016.03.19
[CentOS7] jupyter server 생성  (0) 2016.03.03
Posted by scii
:

1. update system & build tools

# yum update

# yum install kernel-devel kernel-headers gcc make

# uname -r 

# rpm -q kernel-devel

# yum -y upgrade kernel kernel-devel


2. Blacklist Nouveau

$ lsmod | grep nouv

이 명령으로 nouveau 관련된 뭔가가 나온다면 현재 시스템은 nouveau가 메모리가 올라가 있는 상태이다.

# vim /etc/default/grub

rdblacklist=nouveau

위의 명령 문장을 rhgb quiet 다음에 넣어준다.

ex) rhgb quiet rdblacklist=nouveau


grub2-mkconfig -o /boot/grub2/grub.cfg

             위의 명령으로 grub2를 새로운 것으로 갱신시켜준다.

# echo "blacklist nouveau" > /etc/modprobe.d/blacklist.conf


3. Install Nvidia driver

# set-default multi-user.target

위의 명령은 centos6의 init3 인것과 같다.

# reboot

# sh nvidia드라이버.sh

모두 설치하였다면, 

systemctl set-default graphical.target

위의 명령은 centos6의 init5 와 같다.

# reboot


이렇게 하면 설치가 완료된다.!!


'Linux > CentOS' 카테고리의 다른 글

[CentOS7] setup ffmpeg && cuda && opencv && qt5  (0) 2016.03.20
[CentOS7] 초기 설정  (0) 2016.03.19
[CentOS7] Google Chome Stable Install  (0) 2016.03.19
[CentOS7] jupyter server 생성  (0) 2016.03.03
[CentOS7] Format USB in Terminal  (0) 2016.03.02
Posted by scii
:


# vim /etc/yum.repos.d/google-chrome.repo

[google-chrome]

name=google-chrome

baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64

enabled=1

gpgcheck=1

gpgkey=https://dl.google.com/linux/linux_signing_key.pub

입력 후 저장


# yum clean all && yum install google-chrome-stable


'Linux > CentOS' 카테고리의 다른 글

[CentOS7] 초기 설정  (0) 2016.03.19
[CentOS7] Nvidia Graphic Driver Install  (0) 2016.03.19
[CentOS7] jupyter server 생성  (0) 2016.03.03
[CentOS7] Format USB in Terminal  (0) 2016.03.02
[CentOS7] Init Settings  (0) 2016.03.02
Posted by scii
:

ㅁㄴㅇㄹ

카테고리 없음 2016. 3. 16. 21:56 |




Posted by scii
:

linux commands

Linux/Common 2016. 3. 15. 00:36 |


'Linux > Common' 카테고리의 다른 글

환경변수 설정 - 중첩되지 않게 하는 방법  (0) 2017.06.11
jupyter  (0) 2016.02.23
Memory Drop  (0) 2016.02.07
cron을 이용한 벡업 스크립트  (0) 2014.09.28
Linux Command - join  (0) 2014.08.23
Posted by scii
: