Out of range

6 réponses [Dernière contribution]
flyingmarc
Hors ligne
A rejoint: 11/19/2011

When Trisquel is booting i see no splashscreen i´ĺl get an out of range screen and can´t see if everything is ok during the boot how to resolve this.

I have an NVidia SE6150 430 Graphic Adapter

lembas
Hors ligne
A rejoint: 05/13/2010

I believe you must specify a correct video mode in grub. I could be wrong. :)

First we need to find out what video modes your hardware supports.

sudo apt-get install hwinfo

sudo hwinfo --framebuffer

example line

Mode 0x0314: 800x600 (+1600), 16 bits
Take notice of the mode number, here 314.

Then we feed this to grub

sudo nano /etc/default/grub

and change the linux default command line to include vga=314 (the number from the example)

sudo update-grub

And reboot to see whether it worked.

flyingmarc
Hors ligne
A rejoint: 11/19/2011

Hi i get the following information:

02: None 00.0: 11001 VESA Framebuffer
[Created at bios.464]
Unique ID: rdCR.jdKLir8C32D
Hardware Class: framebuffer
Model: "NVIDIA MCP61 - mcp61-80"
Vendor: "NVIDIA Corporation"
Device: "MCP61 - mcp61-80"
SubVendor: "NVIDIA"
SubDevice:
Revision: "Chip Rev"
Memory Size: 128 MB
Memory Range: 0xe0000000-0xe7ffffff (rw)
Mode 0x0300: 640x400 (+640), 8 bits
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0303: 800x600 (+800), 8 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x030e: 320x200 (+640), 16 bits
Mode 0x030f: 320x200 (+1280), 24 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031b: 1280x1024 (+5120), 24 bits
Mode 0x0330: 320x200 (+320), 8 bits
Mode 0x0331: 320x400 (+320), 8 bits
Mode 0x0332: 320x400 (+640), 16 bits
Mode 0x0333: 320x400 (+1280), 24 bits
Mode 0x0334: 320x240 (+320), 8 bits
Mode 0x0335: 320x240 (+640), 16 bits
Mode 0x0336: 320x240 (+1280), 24 bits
Mode 0x033d: 640x400 (+1280), 16 bits
Mode 0x033e: 640x400 (+2560), 24 bits
Mode 0x0345: 1600x1200 (+1600), 8 bits
Mode 0x0346: 1600x1200 (+3200), 16 bits
Mode 0x0347: 1400x1050 (+1400), 8 bits
Mode 0x0348: 1400x1050 (+2800), 16 bits
Mode 0x0352: 2048x1536 (+8192), 24 bits
Config Status: cfg=new, avail=yes, need=no, active=unknown

This is mine 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=314
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=30
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux-Libre (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"

# Trisquel comes without kernel recovery entries to improve security.
GRUB_DISABLE_RECOVERY=true

So it is not working, i have an LG Flatron W1941S Widescreen Monitor what is going wrong or needs also to be changed and thanks for helping me out.

lembas
Hors ligne
A rejoint: 05/13/2010

What resolution do you use normally?

xrandr |grep \*

Then run

sudo hwinfo --framebuffer|sed 's/Mode 0x0//g'

and see what mode(s) correspond to the desired resolution. These are XXX to be used below. Maybe the list does not contain the same resolution you use normally but that cannot be helped, in that case, just pick at random.

You edited the wrong line, change the first line GRUB_DEFAULT=314 back to GRUB_DEFAULT=0 and change GRUB_CMDLINE_LINUX_DEFAULT="splash quiet" to GRUB_CMDLINE_LINUX_DEFAULT="splash quiet vga=XXX"

e.g. vga=352 would mean 2048x1536. Then

sudo update-grub

and boot.

flyingmarc
Hors ligne
A rejoint: 11/19/2011

Hi this mine resolution: 1360x768 60.0*+

lembas
Hors ligne
A rejoint: 05/13/2010

So start experimenting with vga=31a.

lembas
Hors ligne
A rejoint: 05/13/2010

If the vga= parameters don't seem to work, then try setting this line in your grub settings #GRUB_GFXMODE=640x480 to GRUB_GFXMODE=1360x768 (note the missing # also!)

sudo nano /etc/default/grub

also remove any vga=XXX and then apply it with

sudo update-grub

and boot.