일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- i18n
- 확장자
- php
- TextBox
- SVN
- replace
- RabbitMQ
- JavaScript
- Postfix
- 문자열자르기
- smarty
- MySQL
- Oracle
- Eclipse
- Selectbox
- random
- mariadb
- ubuntu
- yum
- docker
- 부모창
- 천단위
- 한글 깨짐
- centos
- install
- Python
- jQuery
- TPL
- 일괄변경
- Today
- Total
목록ubuntu (8)
wilson's story
ubuntu terminal 에서 tab 했을때 에러 날때 에러 : _get_comp_words_by_ref: command not found 1차로 아래와 같이 해본다 apt-get install bash-completion exec bash type _init_completion 에러 : bash: type: _init_completion: not found bash-completion 를 설치 적용 했는데도 에러가 난다면 # 파일 확인 /usr/share/bash-completion/bash_completion vi ~/.bashrc # 맨마지막 줄에 추가 source /usr/share/bash-completion/bash_completion exec bash type _init_completion
현재 설정된 시간 확인 timedatectl -> 결과 Time zone: Etc/UTC (UTC, +0000) 초기 기본값 시간 세팅 sudo dpkg-reconfigure tzdata 키보드로 입력하여 이동이 가능하다 엔터로 설정 완료후 나오고 다시 확인 timedatectl -> 결과 Time zone: Asia/Seoul (KST, +0900) 으로 변경 된걸 확인할수 있다
GPU가 필요한 Docker 를 실행 하면 에러가 나는경우 docker: Error response from daemon: could not select device driver "" with capabilities: [[gpu]]. 해결 방법 : distribution=$(. /etc/os-release;echo $ID$VERSION_ID) curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-do..
Ubuntu 18.04에서 Mairadb 를 이것저거서 설정하다 망가졌다 싶을때는 삭제 후 다시 설치 하는게 맘이 편하다 삭제하는 방법 sudo apt-get purge mariadb-server sudo apt-get purge mariadb-common sudo rm -rf /var/log/mysql sudo rm -rf /var/log/mysql.* sudo rm -rf /var/lib/mysql sudo rm -rf /etc/mysql sudo apt-get remove --purge mariadb sudo apt-get purge mariadb* sudo apt-get purge mysql* sudo apt-get autoremove sudo apt-get autoclean
Ubuntu 18.04에 Mariadb를 기본으로 설치 하면 최신 버전이 설치가 되지 않는다 최신 버전을 설치하고 싶으다면 sudo apt-get install software-properties-common sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.yongbok.net/mariadb/repo/10.5/ubuntu bionic main' sudo apt update sudo apt install mariadb-server 설치 완료 후 외부에서도 접속 가능 하도록 하기 위..
Ubuntu 18.04 버전에 OpenJDK14 JDK 를 설치 하는법 # 설치가능 버전 확인 apt-cache search openjdk # 설치가능 버전 추가 sudo add-apt-repository ppa:openjdk-r/ppa sudo apt-get update -y # 설치 sudo apt-get install -y openjdk-14-jdk
ubuntu18.04 버전 기준입니다 ubuntu18.04의 기본 python버전은 3.6으로 세팅되어있습니다 sudo apt-get install apache2 sudo apt-get install libapache2-mod-wsgi-py3 sudo a2enmod wsgi cd /etc/apache2/sites-available vi 000-default.conf ErrorLog /workspace/service/WebServer/log/error.log CustomLog /workspace/service/WebServer/log/access.log combined WSGIDaemonProcess WebServerApp threads=10 python-path=/workspace/service/WebS..
Ubuntu에서 conda를 설치하고 나면 사용자 앞에 (base) 라고 붙는 경우가 있다 이것은 기본적으로 conda 의 base env를 사용하겟다고 하는것인데 이것을 원치 않을 경우 conda config --set auto_activate_base False 이라고 적용후 사용자를 빠져나왔다가 다시 들어가면 (base) 가 사라져 있다 다시 (base)를 적용하고 싶다면 conda config --set auto_activate_base True 상태를 볼려면 conda config --show | grep auto_activate_base