Skip to content

Wanho Choi

CG/VFX Software Engineer

Menu
  • 홈
  • About Me
  • Publication
  • Seminar
  • Maya C++ API
  • MathBook
  • Trip
  • Photo
  • Link

Category: Linux

Posted on2019-08-212019-08-21Linux

su와 sudo su의 차이

by wanoLeave a comment on su와 sudo su의 차이

sudo su 는 root 계정으로 바꾸기는 하지만 1. root 계정의 환경변수를 가져오지 않는다. 2. root의 암호를 물어보지 않는다. (현재 계정의 암호를 물어본다.) 둘 다 현재…

Read More
Posted on2019-08-212019-08-27Linux

우분투(Ubuntu) PyCharm 설치

by wanoLeave a comment on 우분투(Ubuntu) PyCharm 설치

1. Google에서 pycharm을 검색 2. Download 클릭 3. ~/Downloads/pycharm-community-2019.2.tar.gz 파일 확인 (2019.08.21 기준 최신 버전) & 압축 해제 tar xvfz pycharm-community-2019.2.tar.gz 4. bin 디렉토리로 이동…

Read More
Posted on2019-02-28Linux

How to check my CPU supports AVX/AVX2 on Linux

by wanoLeave a comment on How to check my CPU supports AVX/AVX2 on Linux

grep avx /proc/cpuinfo grep avx2 /proc/cpuinfo

Read More
Posted on2019-02-272019-02-28Linux

How to install Dlib on Ubuntu

by wanoLeave a comment on How to install Dlib on Ubuntu

Download “dlib-19.16.tar.bz2” at “http://dlib.net”. tar xvf dlib-19.16.tar.bz2 cd dlib-19.16 python setup.py installpython3 setup.py install —————– Shared Library —————– mkdir shared_buildcd shared_buildcmake -DBUILD_SHARED_LIBS=1 -DUSE_AVX_INSTRUCTIONS=ON ..cmake –build…

Read More
Posted on2019-02-14Linux

Protected: GOMP Problem

by wano

There is no excerpt because this is a protected post.

Read More
Posted on2018-12-122018-12-12Linux

Offline Installation Ubuntu Packages

by wanoLeave a comment on Offline Installation Ubuntu Packages

apt-get install [package name];cd /var/cache/apt/archives;dpkg -i [package name].deb; pip(3) download [package name];pip(3) install [package name].whl;

Read More
Posted on2018-12-04Linux

How to mount exFAT USB on Ubuntu

by wanoLeave a comment on How to mount exFAT USB on Ubuntu

apt install exfat-fuse exfat-utils

Read More
Posted on2018-11-282018-11-28Deep Learning

How to build TensorFlow GPU from Source Code

by wanoLeave a comment on How to build TensorFlow GPU from Source Code

Environment Date: 2018.11.28 OS: Ubuntu 18.04 Graphic Card: NVIDIA Geforce 2080ti Python: 3.6.7 NVIDIA Drive & Cuda 10.0 rm /etc/apt/sources.list.d/cuda*; apt remove nvidia-cuda-toolkit; apt remove…

Read More
Posted on2018-06-152018-11-27Deep Learning

우분투(Ununtu)에서 텐서플로우(TensorFlow) GPU 설치(install) 방법

by wanoLeave a comment on 우분투(Ununtu)에서 텐서플로우(TensorFlow) GPU 설치(install) 방법

Environment Date: 2018.06.15 OS: Ubuntu 18.04 Graphic Card: NVIDIA Geforce 1070 TensorFlow version: 1.80 Graphics Driver # add-apt-repository ppa:graphics-drivers/ppa # apt update # apt install…

Read More
Posted on2018-06-122018-06-12Linux

우분투(Ubuntu)에서 pip & pip3 설치(install) 방법

by wanoLeave a comment on 우분투(Ubuntu)에서 pip & pip3 설치(install) 방법

pip이란 python으로 작성된 패키지의 설치 및 관리를 해주는 프로그램이다. pip을 이용하면 의존성 문제를 자동적으로 해결해주기 때문에 편리하다. 만약 pip이 설치되어 있다면 pip list 명령을 통해…

Read More
Posted on2018-06-122018-11-28Linux

우분투(Ubuntu) fcitx 한글 입력기 설치 및 설정

by wanoLeave a comment on 우분투(Ubuntu) fcitx 한글 입력기 설치 및 설정

apt-get install fcitx-hangul

Read More
Posted on2018-06-122018-06-12Linux

PPA (Personal Package Archive)

by wanoLeave a comment on PPA (Personal Package Archive)

add-apt-repository [repository name] [GIMP 설치 예] add-apt-repository ppa:otto-kesselgulasch/gimp apt-get update apt-get install gimp

Read More
Posted on2018-06-122018-06-12Linux

apt-get update vs apt-get upgrade

by wanoLeave a comment on apt-get update vs apt-get upgrade

[apt-get update] 사용 가능한 패키지의 리스트를 업데이트한다. 즉, 최신 버전의 패키지가 있는지 확인하는 과정. [apt-get upgrade] 패키지 리스트를 참고하여 이미 설치되어 있는 패키지의 최신 버전을…

Read More
Posted on2018-04-022018-04-02Linux

rpmbuild error

by wanoLeave a comment on rpmbuild error

******************************************************************************* * * WARNING: ‘check-rpaths’ detected a broken RPATH and will cause ‘rpmbuild’ * to fail. To ignore these errors, you can set the ‘$QA_RPATHS’…

Read More
Posted on2018-02-19Linux

exFAT on CentOS 7.x

by wanoLeave a comment on exFAT on CentOS 7.x

yum install -y http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm yum install exfat-utils fuse-exfat  

Read More
Posted on2017-05-122017-05-12Linux

The bookmark location of Chrome in Linux

by wanoLeave a comment on The bookmark location of Chrome in Linux

~/.config/google-chrome/Default

Read More
Posted on2017-01-10Linux

CentOS 7.x에서 LaTeX 패키지 설치 방법

by wanoLeave a comment on CentOS 7.x에서 LaTeX 패키지 설치 방법

1. CTAN 사이트에서 해당 패키지명.zip 파일을 다운로드한다. 2. /usr/share/texlive/texmf-dist/tex/latex 위치에 해당 패키지명으로 디렉토리를 생성한다. 3. 다운로드한 .zip 파일 압축을 풀고 .sty 파일들을 새로 생성한 디렉토리에…

Read More
Posted on2016-10-02Linux

How to install Python 3 for CensOS 7.x

by wanoLeave a comment on How to install Python 3 for CensOS 7.x

su yum install yum-utils yum-builddep python curl -O https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz tar xvf Python-3.5.2.tgz cd Python-3.5.3 ./configure make -j32 make install exit

Read More
Posted on2016-10-022016-10-02Linux

How to install Google Chrome for CentOS 7.x

by wanoLeave a comment on How to install Google Chrome for CentOS 7.x

su vi /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-ssl.google.com/linux/linux_signing_key.pub yum install google-chrome-stable exit google-chrome

Read More
Posted on2016-05-102016-06-13Linux

여러 파일의 텍스트 치환하기

by wanoLeave a comment on 여러 파일의 텍스트 치환하기

find ./ -name “*.h” -exec sed -i ‘s/Dexter Digital/Dexter Studios/g’ {} \;

Read More
Posted on2016-04-11Linux

리눅스 vi 에디터에서 깨진 한글 보기

by wanoLeave a comment on 리눅스 vi 에디터에서 깨진 한글 보기

한글 완성형 :se enc=korea 유니코드 :se enc=utf8

Read More
Posted on2015-07-292015-07-29Linux

How to get the site-packages directory path in Python

by wanoLeave a comment on How to get the site-packages directory path in Python

import site site. getsitepackages()[0]

Read More
Posted on2015-04-30Linux

A very simple method to build *.so file from *.o files

by wanoLeave a comment on A very simple method to build *.so file from *.o files

gcc -shared libMySharedLibrary.so `ls *.o` The *.o files must be compiled with -fPIC or -fpic option.

Read More
Posted on2015-03-302015-03-30Linux

How to install BLAS and LAPACK using source codes

by wanoLeave a comment on How to install BLAS and LAPACK using source codes

1. Download lapack-3.5.0.tgz (http://www.netlib.org/lapack/#_lapack_version_3_5_0_2) 2. tar xvf lapack-3.5.0.tgz 3. cd lapack-3.5.0/BLAS/SRC 4. gfortran -c -o3 *.f 5. ar rv libblas.a *.o 6. cp libblas.a /usr/local/lib…

Read More
Posted on2015-03-25Linux

How to enable highlight SConstruct file in VIM

by wanoLeave a comment on How to enable highlight SConstruct file in VIM

Add the following two lines in ~/.vimrc autocmd BufReadPre SConstruct set filetype=python autocmd BufReadPre SConscript set filetype=python

Read More
Posted on2015-02-12Linux

Don’t use glGenLists & glDeleteLists with Viewport 2.0 !

by wanoLeave a comment on Don’t use glGenLists & glDeleteLists with Viewport 2.0 !

default viewport에서 이미 생성되어 있는 display list를 Viewport 2.0에서 call하는 것은 문제가 되지 않지만, Viewport 2.0에서 새로운 display list를 생성하거나, 존재하는 display list를 삭제할 때…

Read More
Posted on2014-12-292015-03-23Linux

Screen Video Capture on CentOS

by wanoLeave a comment on Screen Video Capture on CentOS

[설치] yum install gtk-recordmydesktop mencoder [실행] gtk-recordMyDesktop [사용법] 영역 (또는 윈도우) 지정 Save As로 저장될 파일 지정 (.ogv) Record로 녹화 시작 Alt + Ctrl +…

Read More
Posted on2014-12-182017-01-19Linux

Git 설정 및 사용법

by wanoLeave a comment on Git 설정 및 사용법

1. git 설치 및 계정 생성 (client->server) ssh root@11.22.33.44 #ssh로 원격 서버(여기서는 IP주소가 11.22.33.44라고 가정)에 접속 root@11.22.33.44’s password:  [server의 root 암호 입력] yum install git #git 설치 adduser git #git…

Read More
Posted on2014-10-062016-04-20Linux

Protected: When it takes long time to start Maya on Linux

by wano

There is no excerpt because this is a protected post.

Read More
Posted on2014-10-01Linux

How to install thunderbird with RPMs on CentOS 7.x

by wanoLeave a comment on How to install thunderbird with RPMs on CentOS 7.x

1. Download a rpm file for thunderbird on internet accessible PC. yum install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm yumdownloader thunderbird 2. Install thunderbird. sudo rpm -ivh thunderbird-24.7.0-1.el7.x86_64.rpm 3. You…

Read More
Posted on2014-09-25Linux

Installing Nvidia Driver on CentOS 7.x

by wanoLeave a comment on Installing Nvidia Driver on CentOS 7.x

CentOS 7.x에서 nVidia driver 설치시 Nouveau를 disable 시켜야 한다면서 설치가 안될 때, su yum update yum install kernel-devel kernel-headers gcc make uname -r을 이용하여 출력한…

Read More
Posted on2014-09-16Linux

“LLVM not found” error while installing OSL

by wanoLeave a comment on “LLVM not found” error while installing OSL

OSL (Open Shading Language) 설치시 LLVM을 필요로 한다. LLVM을 설치할 때 ./configure 실행시 –enable-shared 옵션 없이 컴파일하여 설치하게 되면 OSL 설치시 LLVM not found라는 에러…

Read More
Posted on2014-04-28Linux

Linux Maya에서 키보드가 먹통일 때

by wanoLeave a comment on Linux Maya에서 키보드가 먹통일 때

Tray에 있는 iBus input method framework를 마우스 오른쪽 버튼으로 선택한 후 restart를 해주면 된다. 만약 Tray에 iBus가 사라졌다면 홈디렉토리에 있는 .gconf 디렉도리를 삭제하면 초기화된다.

Read More
Posted on2013-10-222013-10-22Linux

SELINUX

by wanoLeave a comment on SELINUX

root 권한을 가지고도 chown, chmod로 소유권과 허가권을 바꿀 수 없도록 해주는 기능. 레드헷 계열의 리눅스인 경우 프롬프트에서 setenforce 0을 입력하면 selinux를 끌 수 있다. 만약…

Read More
Posted on2013-10-222013-10-22Linux

GRUB single mode booting

by wanoLeave a comment on GRUB single mode booting

1. 부팅과정의 grub 메뉴에서 e를 누른다. 2. edit 화면에서 화살표키로 “kernel /boot/vmlinuz….”를 선택한다. 3. e를 누르면 명령어 편집을 할 수 있는데 맨 마지막에 한 칸…

Read More
Posted on2013-10-192014-09-25Linux

Installing Nvidia Driver on CentOS 6.x

by wanoLeave a comment on Installing Nvidia Driver on CentOS 6.x

CentOS 6.x에서는 nouveau라는 graphic card driver가 기본적으로 설치된다. nouveau: accelerated open source driver for nVidia cards (http://nouveau.freedesktop.org) nouveau는 부팅 시에 여러 가지 이펙트를 가능하게 하는…

Read More
Posted on2013-10-192013-10-22Linux

yum install mplayer on CentOS 6.x

by wanoLeave a comment on yum install mplayer on CentOS 6.x

yum을 이용하여 mplayer 설치시 다음과 같은 error가 발생한다면… Error: Package: mpg123-1.14.4-1.el4.rf.x86_64 (rpmforge) Requires: libltdl.so.3()(64bit) You could try using –skip-broken to work around the problem You…

Read More
Posted on2013-02-132013-02-13Linux

getaddrinfo error

by wanoLeave a comment on getaddrinfo error

Maya batch render시에 다음과 같은 error log를 남기면서 rendering이 걸리지 않는 현상이 있었다. getaddrinfo error:: [Name or service not known] 이것은 maya 뿐만 아니라 다른…

Read More
Posted on2013-01-242013-01-24Linux

Linux에서 바탕화면에 나타나는 경로 변경하기

by wanoLeave a comment on Linux에서 바탕화면에 나타나는 경로 변경하기

해결책: ~/.config/user-dirs.dirs 에서 XDG_DESKTOP_DIR=”$HOME/Desktop“ 을 원하는 경로로 바꿔준다.

Read More
Posted on2012-12-22Linux

MwmUtil.h Error

by wanoLeave a comment on MwmUtil.h Error

error: Xm/MwmUtil.h: No such file or directory openmotif-devel을 설치해준다.

Read More

Posts navigation

Page 1 Page 2 Page 3 Next Page

  • 47
  • 2,793
  • 12,704
  • 168,268

Categories

  • Android
  • Computer Graphics
  • CUDA
  • Deep Learning
  • Drone
  • Etc.
  • Houdini
  • Linux
  • Math
  • Maya
  • Nuke
  • OpenGL
  • OS X & IOS
  • Programming
  • Python
  • RenderMan
  • Tips
  • Trip
  • VFX
  • Windows
  • WordPress

Tags

Android Studio API booting C CentOS Chrome context CUDA deep learning derivation DigiPro driver fragment google GPU image install Keynote LaTeX Linux Maya nVIDIA OpenCV OpenGL programming Python RenderMan SIGGRAPH SWIG Tensorflow Ubuntu update vi Visual Studio Windows Windows7 WordPress YUM 설치 수학 안드로이드 스튜디오 우분투 텐서플로우 프래그먼트 한글

  • 47
  • 2,793
  • 12,704
  • 168,268

Categories

  • Android
  • Computer Graphics
  • CUDA
  • Deep Learning
  • Drone
  • Etc.
  • Houdini
  • Linux
  • Math
  • Maya
  • Nuke
  • OpenGL
  • OS X & IOS
  • Programming
  • Python
  • RenderMan
  • Tips
  • Trip
  • VFX
  • Windows
  • WordPress

Tags

Android Studio API booting C CentOS Chrome context CUDA deep learning derivation DigiPro driver fragment google GPU image install Keynote LaTeX Linux Maya nVIDIA OpenCV OpenGL programming Python RenderMan SIGGRAPH SWIG Tensorflow Ubuntu update vi Visual Studio Windows Windows7 WordPress YUM 설치 수학 안드로이드 스튜디오 우분투 텐서플로우 프래그먼트 한글
Amphibious Theme by TemplatePocket ⋅ Powered by WordPress