일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- 파이썬
- 3.0
- Atlassian
- 데이터베이스
- 자바
- postgres
- PostgreSQL
- Windows
- 우분투
- install
- ubuntu
- 노드
- 설치
- 윈도우
- 설정
- DATABASE
- 자바스크립트
- JS
- 아틀라시안
- 리눅스
- script
- 스크립트
- Linux
- javascript
- DB
- node
- python
- 하모니카
- hamonikr
- Today
- Total
목록ubuntu (36)
LukeHan 의 잡다한 기술 블로그
환경 구성 Hyper-V OSubuntu 22.04.2OSWindows 11 Pro ubuntu 에서 broker 설치sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppalanguage-text위와 같이 입력하여 저장소를 추가한다. sudo apt-get updatelanguage-text위와 같이 입력하여 등록한 저장소를 업데이트 적용한다. sudo apt-get install mosquittolanguage-text업데이트가 완료되면 위와 같이 입력하여 mosquitto broker server 를 설치한다. mosquittolanguage-text위와 같이 입력하여 mosquitto 를 실행한다. tail -f /var/lo..
서버 환경 구성 중 bash script 에서 tab 을 활용한 자동 완성이 되지 않는 문제가 발생하였다. sudo apt-get install bash-completion 위와 같이 입력하여 bash-completion package 를 설치한다. vi ~/.bashrc 위와 같이 입력하여 .bashrc 파일을 수정한다. ...# enable bash completion in interactive shellsif ! shopt -oq posix; then if [ -f /usr/share/bash-completion/bash_completion ]; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_compl..
ubuntu@lukeHan:~$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state information... DoneE: Unable to locate package vim ubuntu 서버 환경 구성을 위해 vim 설치 시 위와 같이 에러가 발생하였다. sudo apt-get update 위와 같이 입력하여 프로그램 업데이트를 진행한다. ubuntu@lukeHan:/etc/apt$ sudo apt-get install vimReading package lists... DoneBuilding dependency tree... DoneReading state inform..
OS : Ubuntu 22.04 LTS sudo vi /etc/systemd/logind.conf 설정을 위해 logind.conf 파일을 연다 [Login] #NAutoVTs=6 #ReserveVT=6 #KillUserProcesses=no #KillOnlyUsers= #KillExcludeUsers=root #InhibitDelayMaxSec=5 #UserStopDelaySec=10 #HandlePowerKey=poweroff #HandleSuspendKey=suspend #HandleHibernateKey=hibernate #HandleLidSwitch=suspend HandleLidSwitch=ignore #HandleLidSwitchExternalPower=suspend #HandleLidSwi..
# V18.x sudo curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash - # V16.x sudo curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - 위의 코드를 참고하여 설치할 버전을 선택하여 명령어를 입력한다 sudo apt-get install nodejs 위와 같이 입력하여 설치한다 node -v 설치한 node 버전을 확인한다 npm -v 설치한 npm 버전을 확인한다
버전 확인 python --version python -V 디렉토리 확인 ls -al /usr/bin/python 설치된 버전 확인 ls /usr/bin/ | grep python 버전 변경하기 sudo update-alternatives --config python update-alternatives: error: no alternatives for python 만약 위와 같이 에러가 발생하는 경우 설정된 alternatives 정보가 없다는 것이다. sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 update-alternatives: using /usr/bin/python3.9 to provide /usr/b..