목차
- 소프트웨어 다운로드 서버 변경
- build-essential 설치
- 드라이버 설치 및 배터리 최적화
- 언어 키보드 설치
- 테마 및 유틸리티 설치
우분투 부팅
노트북 부팅 오류 해결법 (화면이 까맣게 안 켜질 때, MSI노트북, 그래픽카드 有):
- 부팅화면 GRUB - Ubuntu 선택 (엔터는 누르지 말고 하이라이팅된대로 놔두기)
- `e` 눌러서 옵션 설정 창 열기
- linux로 시작하는 줄 찾아서 맨 뒤에 modprobe.blacklist = nouveau 추가
소프트웨어 다운로드 서버 변경
우분투 서버가 잘 멈춘다. 카카오미러로 바꿔주자.
- window+S로 검색, software & updates
- Ubuntu Software탭에서 Download from ... Other 선택
- 다운로드 서버를 Korea, Republic of - Kakao Mirror 선택
앞으로도 `apt update :: failed to fetch http://kr.archive.ubuntu.com` ~ 어쩌고 오류나면 면 다운로드 서버를 변경해주면 해결된다.
build-essential 설치
make, gcc, g++등등을 설치한다.
1
2
3
|
$ sudo apt-get update
$ sudo apt-get install build-essential
|
그래픽카드 드라이버 설치
1
2
3
4
5
6
7
|
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update # You can change this driver to whatever version suits you best :)
sudo apt install nvidia-driver-430
sudo reboot
|
Nvidia graphic card 설치 : https://gist.github.com/mari-linhares/cef4cb3440408e44963d1447a7db5ae0
배터리 오래쓰기 (강력추천!!)
- NVIDIA X Server Settings 앱 실행 (드라이버 깔면 자동으로 깔려있음)
- PRIME Profiles 옵션
- Intel(Power Saving Mode)로 선택
그래픽카드를 인텔 내장그래픽으로 바꿨더니 배터리가 많이 늘었다. 6시간은 쓴다.
게임할때는 NVIDIA로 바꾸면 된다.
테마 및 유틸리티 설치
테마 설치 :
https://codevkr.tistory.com/89
유틸리티 :
- htop :: 작업관리자
1
2
|
$ sudo apt-get install htop
$ htop # run htop
|
- nautilus :: 터미널에서 디렉토리 GUI로 열기
1
2
|
$ sudo apt-get install nautilus
$ nautilus . # open current directory
|
- typora :: 마크다운 에디터
- fusuma :: 터치패드 제스처 설정
https://conservative-vector.tistory.com/107
- cerebro :: 맥 spotlight같은 기능
- git :: 버전 관리 컨트롤
1
|
$ sudo apt-get install git
|
git 초기 설정하기
1 2 | $ git config --global user.email "you@example.com" $ git config --global user.name "Your Name" |
git 사용할때마다 비밀번호를 묻는다면? credential 설정해주자.
https://help.github.com/en/articles/caching-your-github-password-in-git
'Study > linux' 카테고리의 다른 글
Ubuntu 터치패드를 편하게! :: Fusuma (0) | 2019.09.27 |
---|---|
우분투 루트 폴더 용량이 꽉 찼을 때 (0) | 2019.09.26 |
도커로 아파치 웹 서버 구축하기 (2) | 2019.09.23 |
Apache 웹서버 실행하기 (0) | 2019.09.21 |
리눅스 터미널에서 쓸만한 프로그램들 (0) | 2019.09.21 |