Ubuntu 16.04 CUDA 설치하기 Ubuntu 16.04 환경에서 CUDA 설치 사전 준비 nvidia driver https://oboki.net/workspace/system/linux/ubuntu-nvidia-graphic-driver-%EC%84%A4%EC%B9%98/ Download CUDA local installer(.run) https://developer.nvidia.com/cuda-downloads cuda_8.0.61_375.26_linux-run Remove any other installation #sudo apt-get purge nvidia-cuda* #sudo apt-get purge nvidia-cuda* #sudo apt-get purge nvidia-* sudo apt-get –purge remove ‘cuda*’ sudo apt-get autoremove –purge ‘cuda*’ sudo rm -rf /usr/local/cuda-* sudo rm -rf /usr/local/cuda 설치 […]
[Ubuntu] Nvidia Graphic Driver 설치
Ubuntu 16.04 Nvidia 그래픽 드라이버 설치 드라이버 버전 확인 아래 URL 에서 설치하고자 하는 그래픽에 맞는 드라이버 버전 확인을 확인한다. http://www.geforce.com/drivers apt를 이용한 설치 sudo add-apt-repository ppa:graphics-drivers/ppa sudo apt-get update #sudo apt-get install nvidia-${YOUR_DRIVER_VERSION} sudo apt-get install nvidia-375 ${YOUR_DRIVER_VERSION} 에 앞서 검색한 드라이버 버전 입력 설치 확인 cat /proc/driver/nvidia/version
[VMware] 32 bit Linux 설치 Ethernet 설정
edit *.vmx Add following line ethernet0.virtualDev = “e1000” https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1003020
[Linux] stty
stty changes and prints terminal line setting. stty displays or changes the characteristics of the terminal. stty sane same as cread -ignbrk brkint -inlcr -igncr icrnl -iutf8 -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop […]
[Linux] NFS server/client installation
NFS server/client installation Package Install (Server/Client 공통) yum install nfs-utils systemctl enable rpcbind systemctl enable nfs-server systemctl enable nfs-lock systemctl enable nfs-idmap systemctl start rpcbind systemctl start nfs-server systemctl start nfs-lock systemctl start nfs-idmap systemctl stop firewalld Server 작업, 폴더 공유 공유 대상 폴더 생성 mkdir /nfs_dir 공유 허용할 호스트 지정 #vi /etc/exports /nfs_dir 192.168.xxx.xxx(rw,sync,no_root_squash,no_all_squash) […]
[Linux] How to mount NTFS on CentOS
How to mount NTFS on CentOS Make sure that you have the rpmforge repo installed yum install fuse fuse-ntfs-3g yum –enablerepo=rpmforge install fuse fuse-ntfs-3g For CentOS 7 or 6, the EPEL repository is carrying later NTFS packages, EPEL is alose usable for CentOS 5. yum install ntfs-3g yum –enablerepo epel install ntfs-3g
[Linux] crontab
현재 사용자의 cron 작업 목록 확인 crontab -l 현재 사용자의 cron 작업 수정 crontab -e 현재 사용자의 cron 작업 삭제 crontab -r cron 로그 경로 /var/log/cron cron 작업 등록 순서대로 아래 필드를 한 칸씩 띄어 입력하고 그 뒤에 실행할 명령 ex) m h dom mon dow cmd m(분) : 0~59 h(시) : 0~23 dom(일) : […]