ubuntu

·IT 공부/Linux
takao 폰트 설치 sudo apt install fonts-takao 폰트 확인 ls -al /usr/share/fonts/truetype ubuntu의 공용 font 경로를 확인해보면 takao 폰트가 설치된 것을 확인할 수 있습니다. 폰트 캐시 삭제 fc-cache -fv 폰트 배포 matplotlib 설정 디렉토리 위치를 파악해야합니다. python3 >>> import matplotlib >>> matplotlib.__file__ #결과 /usr/local/lib/python3.8/dist-packages/matplotlib/__init__.py 폰트 배포는 matplotlib 디렉토리 경로 + mpl-data/fonts/ttf에 위치하게 됩니다. cp /usr/share/fonts/truet..
·IT 공부/Linux
docker 컨테이너를 이용해서 ubuntu 환경을 구축하여, python의 selenium을 사용해볼려고 합니다. Docker 컨테이너로 ubuntu 컨테이너 생성 docker run -it --name ubuntu-sel ubuntu /bin/bash package manage 업데이트 및 필요 package 설치 apt update apt -y install sudo wget unzip vim linux 용 chrome 설치 cd tmp wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt install ./google-chrome-stable_current_amd64.deb sudo mv /us..
·IT 공부/Docker
ubuntu환경에서 git 설치 및 사용 우선 docker container에서 만들어놓은 ubuntu 환경 container를 실행시키고 attach로 들어간다. 컨테이너 활성화 $ docker start ubx docker ps를 통해 실행중인 컨테이너를 확인해보면 ubx 이름의 컨테이너가 실행중인 것을 확인 할 수 있다. 컨테이너 attach $ docker attach ubx ubuntu 환경에 접속이 되고, whoami를 통해서 현제 root상태인 것을 확인할 수 있다. USERADD를 통해 추가한 유저 확인 유저 전환 $ su - dooo 유저 이름이 dooo인 아이디로 전환한다. dooo로 이름이 변한 것을 학인할 수 있다. whoami로도 확인 가능하다. GIT 설치 $ sudo apt-g..
JONGI-N CHOI
'ubuntu' 태그의 글 목록