ubuntu

Virtual Box에 Linux설치

VirtualBox 전체 환경 설정

네트워크

VirtualBox Host-Only Ethernet Adapter

가상머신 생성

  1. VirtualBox - 새로만들기

    • 가성머신이름과 파일이 저장될 경로 지정
    • 종류 Linux , 버전 : Other Linux(64-bit) or RedHat(64-bit)
    • Ram: 2GB : 설치 후 변경 가능
    • HDD: 20GB
  2. VirtualBox - 생성한 가상머신 - Network 설정

    • 어댑터 1 : NAT
    • 어댑터 2 : 호스트전용 어댑터, 고급 - 무작위 모드- 모두 허용
  3. 마우스 설정

  1. 오류 시
오류시
Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND).
제어판\네트워크 및 인터넷\네트워크 연결 
VirtualBox Host-Only Ethernet Adapter : 사용안함 > 사용함 

Linux 설치

  1. 다운로드
  1. 생성한 가상머신 - 설정 - 저장소 - 광학드라이버 - ISO 선택
  2. 생성한 가상머신 - 시작
  3. 영문으로 Linux 설치

기본 환경 설정


apt 명령어

패키지 최신으로 update

sudo apt update

hostname 변경하기

 sudo hostnamectl set-hostname thecoding

서버 시간 설정하기

date
sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
date

Ubuntu - Python

파이썬 설치 확인

python -V 
python3 -V 

파이썬 설치

sudo apt install python3 

미니콘다 설치

bash Miniconda3-2020.11-Linux-x86_64.sh

sudo vi ~/.bashrc
export PATH=~/miniconda3/bin:~/anaconda3/condabin:$PATH # 마지막 줄에 추가

source ~/.bashrc

conda -V

가상 환경 설정하기

conda create --name [가상환경이름] python=3.9
onda activate [가상환경이름] 

생성후 activate 오류 나면 아래 명령어 실행

source 미니콘다설치위치/etc/profile.d/conda.sh