Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
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
Tags
more
Archives
Today
Total
관리 메뉴

ahnjmo

Ubuntu 20.04 초기 세팅 본문

IT/Ubuntu

Ubuntu 20.04 초기 세팅

ahnjmo 2020. 12. 16. 11:42

개요

Ubuntu 설치 후 처음으로 해야할 일 들
 

1. apt update / upgrade 

sudo apt update
sudo apt upgrade

 

 

2. 그래픽카드 드라이버 설치

메뉴 -> Software & Update -> Additional Drivers 탭 -> Nvidia Driver 선택 후 apply changes
ex) Using NVIDIA driver metapackage from nvidia-driver-535 (proprietary)
 

3. apt 로 필요한 프로그램들 설치

1) Terminator (terminal 분할하기 좋음)

sudo apt install terminator

2) Git

sudo apt install git

3) pip3

sudo apt install python3-pip

4) gcc

sudo apt install build-essential
sudo apt install manpages-dev

4. VS Code 설치 

다음 블로그 참고

Visual Studio Code 설치하는 방법( Windows / Ubuntu )

 

Comments