'centos7' 태그의 글 목록
본문 바로가기

centos77

[SOLVED] redhat 8(RHEL) VLC player installation without any error Shut up and type below command su - #CENTOS7,8 case yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm yum install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm yum install vlc yum install python-vlc npapi-vlc #RHEL8 case yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm sudo yum install https://dl... 2022. 6. 14.
CentOS7 sFTP 를 사용하여 폴더 공유, 접속허용, 방화벽(firewall) 포트 여는 방법까지 [호스트 (Linux) 컴에서 해야할 일] yum install openssh-server openssh-clients openssh-askpass FirewallD is not running 발생하는 경우 sudo systemctl start firewalld Failed to start firewalld.service: Unit firewalld.service is masked. 발생하는 경우 systemctl unmask firewalld systemctl restart firewalld sftp포트 4422 추가할 경우 sudo firewall-cmd --permanent --zone=public --add-port=4422/tcp sudo firewall-cmd --reload sudo sema.. 2022. 3. 10.
docker gpu 를 활용한 darknet yolov4 설치 및 구동 (CentOS7) [1] docker hub에서 cuda11.2, cudnn8, centos7환경의 이미지를 받아온다. (=누군가 CentOS7 을 내 컴에 깔고, CUDA11.2와 cuDNN 8 버젼을 깔아준 셈) sudo systemctl start docker docker pull nvidia/cuda:11.2.0-cudnn8-devel-centos7 [2] docker run, 설치가 완료된 컴퓨터를 켜준다. --name : 이름(원하는걸로 설정) -e : 추후 opencv로 imshow 할 경우 디스플레이 화면에 팝업으로 보여야 하기 때문에 설정해줌(그대로 복붙) -v /tmp/.X11-unix:/tmp/.X11-unix --privileged : docker와 내 컴이 서로 display볼륨을 공유하기위해서 설.. 2022. 3. 7.
CentOS7, 우분투 D2Coding, D2Coding ligature font 폰트 한방에 설치, vscode에 적용방법까지 D2Coding Ver 1.3.2 Centos7 경우 sudo yum install unzip wget https://github.com/naver/d2codingfont/releases/download/VER1.3.2/D2Coding-Ver1.3.2-20180524.zip unzip D2Coding-Ver1.3.2-20180524 mkdir /usr/share/fonts/D2Coding cp ./D2Coding/*.ttf /usr/share/fonts/D2Coding/ fc-cache -v 우분투의 경우 apt-get install unzip wget https://github.com/naver/d2codingfont/releases/download/VER1.3.2/D2Coding-Ver1.3.2-20.. 2022. 1. 21.
CentOS 7 Linux Unable to access "SSD" 외장하드 연결 문제 해결 Linux CentOS 7에서 외장하드 연결 시 나오는 에러 해결법. Unable to access "" How to Mount a NTFS Drive on CentOS / RHEL yum install epel-release yum install ntfs-3g sudo rpm -v --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm sudo yum install exfat-utils fuse-exfat 외장하드를 뺐다가 다시 끼면 끝. 2021. 11. 3.