IT/Linux

Ubuntu CLI 모드로 부팅하기

Lyk 2021. 2. 5. 20:27
728x90
반응형

1. 관리자 모드로 로그인

su 입력 후 비밀번호 입력!

$ su
password:

2. vi 에디터(또는 본인이 원하는 편집모드)로 /etc/default/grub 파일을 편집한다.

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"    

3. 수정해줘야 할 부분들

① 아래 코드 주석처리

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

앞에 #을 붙여 주석처리 해준다

#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

 

② 아래 부분 큰따옴표에 text 추가

GRUB_CMDLINE_LINUX=""

text를 추가해준다.

GRUB_CMDLINE_LINUX="text"

 

③ 아래 부분 주석 해제

#GRUB_TERMINAL=console

주석(#)을 제거해준다.

GRUB_TERMINAL=console

 

④ 그 후 저장해준다.(esc키 + :wq! 입력)

 


4. 변경사항을 업데이트 해준다.

update-grub

5. 시스템 설정을 변경한다.

systemctl set-default multi-user.target

6. 재시작

reboot

 

728x90
반응형