1. 程式人生 > >ubuntu 黑屏和解析度不能改變的問題

ubuntu 黑屏和解析度不能改變的問題

ctrl+alt+f1:
vim /etc/default/grub
將 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” 修改為
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash nomodeset”
更新GRUB:
sudo update-grub
sudo reboot

# 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' # vim /etc/default/grub GRUB_DEFAULT=0 #->設定預設啟動項(0:第一個選單),按menuentry順序。比如要預設從第2個選單項啟動,數字改為1。 GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=10 #10s GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX="" #GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" #預設的
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset" #黑屏 #GRUB_CMDLINE_LINUX_DEFAULT="quiet splash text" #無GUI介面,文字行顯示 # 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 GRUB_GFXMODE=1920x1080 #修改顯示解析度 # 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" ~ ~

ubuntu14.04 用了不就終端黑屏了,全黑色,輸入文字啥也看不到,其他的程式邊框黑色。 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash nomodeset” #黑屏
GRUB_GFXMODE=1920x1080 #修改顯示解析度

These are instructions passed to the kernel during the boot time. In Ubuntu, they are managed by the GNU GRUB (GRand Unified Bootloader).

. quiet - this option tells the kernel to NOT produce any output (a.k.a. Non verbose mode). If you boot without this option, you’ll see lots of kernel messages such as drivers/modules activations, filesystem checks and errors. Not having the quiet parameter may be useful when you need to find an error.
. splash - this option is used to start an eye-candy “loading” screen while all the core parts of the system are loaded in the background. If you disable it and have quiet enable you’ll get a blank screen.
. nomodeset - tells the kernel to not start video drivers until the system is up and running.