728x90 Linux21 [ubuntu] 설치되어 있는 JAVA 버전 변경 ZULU JDK 설치 방법은 아래글 참조 https://freedeveloper.tistory.com/200?category=877244 [Linux] Ubuntu, CentOS Zulu JDK14 설치하는 방법 CentOS 저장소 등록 rpm --import http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems curl -o /etc/yum.repos.d/zulu.repo http://repos.azulsystems.com/rhel/zulu.repo cask 패키지 관리 brew cu https://f.. freedeveloper.tistory.com 기존 JAVA 버전은 11 $ java -version openjdk version "11.0.9.1" 2020.. Linux 2021. 1. 3. [Nginx] Amazon Linux 2에 nginx 설치 Amazon Linux 2에서는 yum을 통한 nginx 설치가 지원되지 않음 $ sudo yum install nginx Loaded plugins: extras_suggestions, langpacks, priorities, update-motd amzn2-core | 3.7 kB 00:00:00 amzn2extra-docker | 3.0 kB 00:00:00 No package nginx available. Error: Nothing to do nginx is available in Amazon Linux Extra topic "nginx1" To use, run # sudo amazon-linux-extras install nginx1 Learn more at https://aws.amazon.c.. Linux 2021. 1. 1. [Ubuntu 18.04] Root 계정 비밀번호 설정/변경 비밀번호 설정/변경 sudo passwd root Linux 2020. 8. 20. [Ubuntu 18.04] ssh 설치 ssh 설치 openssh 설치 sudo apt-get install openssh-serverroot 접근 허용 sudo vi /etc/ssh/sshd_config#PermitmitRootLogin prohibit_password 위의 내용을 찾아 주석을 해제하고 아래와 같이 yes 로 변경 PermitmitRootLogin yesssh 서비스 재시작 sudo service ssh restart Linux 2020. 8. 20. [Ubuntu 18.04] Python 3.9.X 설치 방법 Python 3.9.X 설치 방법 1. Python 최신버전 확인하기 파이썬 홈페이지 (https://www.python.org/downloads/) Download Python The official home of the Python Programming Language www.python.org www.python.org 여기에서 최신 버전을 확인한다. 현재 2021년 1월 4일 기준 최신 파이썬 버전은 3.9.1 이다. 2. 개발 라이브러리 다운 소스설치에 필요한 라이브러리들을 다운받는다 $ sudo apt-get install build-essential checkinstall $ sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libss.. Linux 2020. 8. 16. [Linux] Disk Mount 커맨드 4. 추가 Disk Mount (Toast) 사용 커맨드 # 마운트할 폴더 생성 sudo mkdir /mountdisk # 마운트 가능한 추가 디스크 정보 확인 sudo fdisk -l # fdisk 연결 작업 커맨드 sudo fdisk /dev/vdb # 위에 커맨드 입력 후 순서대로 입력 진행 n p 1 enter enter p w # ext4로 추가 디스크 포맷 sudo mkfs.ext4 /dev/vdb # 포멧된 디스크 UUID 확인 sudo blkid # 마운트 정보 입력 sudo vim /etc/fstab UUID=${UUID} /mountdisk ext4 defaults 0 0 # 입력된 마운트 정보로 마운트 sudo mount -a # 권한 유저에게 주기 ## centos 일때 ubuntu.. Linux 2020. 8. 16. [Shell Script] 쉘스크립트 directory, file 유무 확인 #!/bin/bash # 디렉토리 존재 유무 확인 if [ ! -d 디렉토리명 ];then mkdir 디렉토리명 fi # 파일 존재 유무 확인 if [ ! -e 디렉토리명 ];then touch 파일명 fi Linux 2020. 6. 11. [Linux] Ubuntu 20.04, CentOS Zulu JDK14 설치하는 방법 CentOS 저장소 등록 rpm --import http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems curl -o /etc/yum.repos.d/zulu.repo http://repos.azulsystems.com/rhel/zulu.repo cask 패키지 관리 brew cu https://freedeveloper.tistory.com/199 RPM 패키지 설치 yum -y install zulu-14 설치된 zulu jdk 확인 java --version openjdk 14 2020-03-17 OpenJDK Runtime Environment Zulu14.27+1-CA (build 14+36) OpenJDK 64-Bit Server VM Zulu14.27+1-.. Linux 2020. 3. 22. [Ubuntu] zsh, oh my zsh 설치하기 zsh 설치하기 https://the-illusionist.me/47 우분투에 zsh와 oh my zsh 설치하기 꽤 오랫동안 우분투 기본 shell인 bash를 사용하고 있었습니다. 가볍게 쓰고 있었기 때문에 불편함은 딱히 못 느끼고 있었죠. 요 근래 공부와 개인 프로젝트 등으로 인해 shell을 많이 쓰게 되면서 불편함이 하나.. the-illusionist.me # zsh 설치 $ sudo apt-get install zsh # 쉘을 zsh로 변경 chsh -s /usr/bin/zsh # 현재 쉘 확인 echo $SHELL oh my zsh 설치하기 sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/.. Linux 2019. 10. 7. 이전 1 2 다음 💲 추천 글 728x90