ubuntu dual booting 환경
제 글을 참고하여 따라하실 분들은 아래의 블로그들을 보고 따라해주세요!
1. Disk Image 확보 in windows
cmd에 / diskmgmt.msc 입력
MRC / 볼륨축소 (우분투 설치 공간확보)
2. 우분투 이미지 다운로드 (18.04)
- ubuntu-18.04.4-desktop-amd64.iso
ref. https://releases.ubuntu.com/18.04/
3. 우분투 설치용 USB disk 생성
rufus 다운로드
ref. https://rufus.ie/
윈10부트 모드에 따라 설정 방법 차이
Secure boot mode 일땐, MBR
UEFI boot mode 일땐, GPT
참고 - rufus를 사용하여 설치용 usb만들기 https://webnautes.tistory.com/1146
참고2 - 윈도우10 부팅방식 확인하기 https://zkim0115.tistory.com/1441
4. 우분투 설치
grub / install ubuntu
Language : English
Keyboard Layout: English
Updates & other software: Normal install, all options check
Installation type: something else
Partition 설정
a. Swap area: 4096 MB, Primary, Beginning of this space
b. Ext4 Journaling file system: 4096000 MB 이상, Primary, Beginning of this space, Mount point /
Device for boot loader installation: /dev/**
Where are you? Seoul
Who are you? Custom name, company
ref. https://dora-guide.com/ubuntu-download/
5. 우분투 개발 환경 설정
- vim 설치: $ sudo apt install vim
- 패키지 서버 변경: $ sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
$ sudo vi /etc/apt/sourece.list
:%s/kr.archive.ubuntu.com/ftp.daumkakao.com ## kr.archive.ubuntu.com를 ftp.daumkakao.com로 바꾼다.
- 한글 패키지 설치
a. Show Application / Language Support / install /
b. use the same language choices (install / ‘Korean’ check)
c. Keyboard input method system: Ibus
d. in terminal: ibus-setup / add / Korean (Hangul)
e. Show Application / setting / Region & Language / Language (한국어) / input sources (Hangul)/ restart
ref. https://gabii.tistory.com/entry/Ubuntu-1804-LTS-%ED%95%9C%EA%B8%80-%EC%84%A4%EC%B9%98-%EB%B0%8F-%EC%84%A4%EC%A0%95
6. 크롬 설치 (option)
$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
$ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
$ sudo apt-get update
$ sudo apt-get install google-chrome-stable
$ sudo rm -rf /etc/apt/sources.list.d/google.list
$ sudo apt-get clean
$ sudo apt-get update
ref. https://joggle.tistory.com/6
##우분투를 설치하고 환경설정까지 완료했지만 윈도우로 돌아잘 수 없어서 문제해결을 함.
1. f2 또는 del 키를 눌러 BIOS에 들어가서 부팅USB를 선택해서 부팅하기
2. Try Ubuntu without installing을 선택
3. boot repair를 설치하기
$ sudo add-apt-repository ppa:yannubuntu/boot-repair
$ sudo apt-get update
$ sudo apt-get install boot-repair -y
4. boot repair 실행
$ boot-repair
5. Recommended repair 선택
- 여기서 바로 회복되지않고 명령문을 4개정도 입력하라는 팝업이 나왔습니다. 입력후 완료
6. Upload the report to a pastebin화면이 뜨면 no를 선택
7. 복구가 성공적으로 마쳤다면 Boot successfully repaired라는 대화상자가 뜹니다.
8. 재부팅해서 제대로 grub이 뜨는지 확인
'Linux' 카테고리의 다른 글
우분투 다중 터미널 / 분할 터미널 Terminator (0) | 2021.08.18 |
---|---|
Linux 명령어 정리 (0) | 2021.03.30 |