Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: [resolucion de pantalla y 2d mode]

  1. #11
    Join Date
    May 2012
    Beans
    14

    Re: [resolucion de pantalla y 2d mode]

    no se porque no esta funcionando.
    Ejecuto $ gksudo gedit /etc/default/grub
    me abre una ventana del gedit
    el archivo que se abre dice asi:

    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_HIDDEN_TIMEOUT=0
    GRUB_HIDDEN_TIMEOUT_QUIET=true
    GRUB_TIMEOUT=10
    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,0xe fefefef"

    # 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"


    /*---------------------------------------------------------------------*/

    como ven ahi no dice nada de nomodeset entonces ejecuto
    entonces ejecuto en consola

    /*---------------------------------------------------------------------*/

    $ sudo update-grub

    Searching for GRUB installation directory ... found: /boot/grub
    Searching for default file ... found: /boot/grub/default
    Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
    Searching for splash image ... none found, skipping ...
    Found kernel: /boot/vmlinuz-3.2.0-24-generic-pae
    Found kernel: /boot/vmlinuz-3.2.0-23-generic-pae
    Found kernel: /boot/vmlinuz-2.6.32-31-generic
    Found kernel: /boot/vmlinuz-2.6.32-30-generic
    Found kernel: /boot/vmlinuz-2.6.32-21-generic
    Found GRUB 2: /boot/grub/core.img
    Found kernel: /boot/memtest86+.bin
    Updating /boot/grub/menu.lst ... done


    /*----------------------------------------------------------------------*/



    pero cuando reinicio sigo con el nomodeset puesto, arranca y no puedo cambiar la resolucion de la pantalla.
    Y si aprieto la e cuando empieza, esta la linea con el nomodeset escrito
    Muchas gracias de nuevo

  2. #12
    Join Date
    May 2012
    Beans
    14

    Re: [resolucion de pantalla y 2d mode]

    bueno andando por la web encontre esto http://ubuntuforums.org/showthread.php?t=1840959&page=2
    no me a servido de nada :S o por lo menos no lo e podido implementaar, pero creo que es algo parecido, yo sigo con el mismo problema, gelp, jej

  3. #13
    Join Date
    May 2007
    Location
    Buenos Aires - Argentina
    Beans
    3,661
    Distro
    Xubuntu 12.04 Precise Pangolin

    Re: [resolucion de pantalla y 2d mode]

    Puede ser que tengas instalado Grub y Grub2 y que por eso las modificaciones que introducis en Grub2 no se reflejan porque cuando inicias la maquina utiliza Grub (la version anterior a Grub2) ?

    Digo esto porque revisando en mis maquinas con Grub2 no existe un archivo /boot/grub/menu.lst. Este archivo solo existe cuando se utiliza Grub.

    Podrias verificar esto ?
    Guillermo Lisi
    ----------------
    Minds are like parachutes. They only function when they are open.

  4. #14
    Join Date
    Aug 2009
    Location
    Bogotá, Colombia
    Beans
    230
    Distro
    Kubuntu Development Release

    Re: [resolucion de pantalla y 2d mode]

    Le diste al clavo Guillermo, ese grub.list no es necesario, creo que el OP lo creó para hacer la modificación del nomodeset (siguió tutoriales algo viejos según ví).

    Segun la wiki ese archivo podría borrarse sin problemas.

    Pero verifiquemos la versión de grub que tienes instalada:

    Cuando el equipo inicia y llegas al menu de selección del sistema operativo, en la parte superior nos informa que grub está usando, el mío dice:

    GNU GRUB versión 1.99-21ubuntu3
    Si dice lo mismo, tienes la versión correcta y podemos borrar el archivo menu.list

    sudo rm -f /boot/grub/menu.lst
    Y ejecutar de nuevo

    Code:
    sudo update-grub

  5. #15
    Join Date
    May 2012
    Beans
    14

    Re: [resolucion de pantalla y 2d mode]

    emmm si tengo esa version de grub "GNU GRUB versión 1.99-21ubuntu3"
    pero el /boot/grub/menu.lst me lo creo cuando ejecuto el sudo update-grub
    mira, ejecuto
    sudo rm -f /boot/grub/menu.lst
    sudo update-grub
    y sale
    Searching for GRUB installation directory ... found: /boot/grub
    Searching for default file ... found: /boot/grub/default
    Testing for an existing GRUB menu.lst file ...

    Could not find /boot/grub/menu.lst file. Would you like /boot/grub/menu.lst generated for you? (y/N)
    si digo que no
    no pasa nada...sigue igual, si digo que si crea el archivo ese, pero tambien sigue igual
    la salida, si pongo que si es:
    Searching for splash image ... none found, skipping ...
    Found kernel: /boot/vmlinuz-3.2.0-24-generic-pae
    Found kernel: /boot/vmlinuz-3.2.0-23-generic-pae
    Found kernel: /boot/vmlinuz-2.6.32-31-generic
    Found kernel: /boot/vmlinuz-2.6.32-30-generic
    Found kernel: /boot/vmlinuz-2.6.32-21-generic
    Found GRUB 2: /boot/grub/core.img
    Found kernel: /boot/memtest86+.bin
    Updating /boot/grub/menu.lst ... done

  6. #16
    Join Date
    Aug 2009
    Location
    Bogotá, Colombia
    Beans
    230
    Distro
    Kubuntu Development Release

    Re: [resolucion de pantalla y 2d mode]

    Bueno, bueno... parece que tienes un caos en ese sistema...

    Un último intento o sino reinstalamos el grub:

    Elimina de nuevo el menu.lst y ejecuta:
    sudo grub-mkconfig -o /boot/grub/grub.cfg
    Por confirmar que grub tienes:

    dpkg -l | grep grub
    Last edited by samigina; May 9th, 2012 at 08:50 PM.

  7. #17
    Join Date
    May 2007
    Location
    Buenos Aires - Argentina
    Beans
    3,661
    Distro
    Xubuntu 12.04 Precise Pangolin

    Re: [resolucion de pantalla y 2d mode]

    Quote Originally Posted by samigina View Post
    Bueno, bueno... parece que tienes un caos en ese sistema...

    Un último intento o sino reinstalamos el grub:

    Elimina de nuevo el menu.lst y ejecuta:


    Por confirmar que grub tienes:
    Coincido con la ensalada de Grubs
    Guillermo Lisi
    ----------------
    Minds are like parachutes. They only function when they are open.

  8. #18
    Join Date
    May 2012
    Beans
    14

    Re: [resolucion de pantalla y 2d mode]

    bueno les cuento lo que paso primero hice
    $ sudo grub-mkconfig -o /boot/grub/grub.cfg

    Generating grub.cfg ...
    Found background image: .background_cache.jpeg
    Found linux image: /boot/vmlinuz-3.2.0-24-generic-pae
    Found initrd image: /boot/initrd.img-3.2.0-24-generic-pae
    Found linux image: /boot/vmlinuz-3.2.0-23-generic-pae
    Found initrd image: /boot/initrd.img-3.2.0-23-generic-pae
    Found linux image: /boot/vmlinuz-2.6.32-31-generic
    Found initrd image: /boot/initrd.img-2.6.32-31-generic
    Found linux image: /boot/vmlinuz-2.6.32-30-generic
    Found initrd image: /boot/initrd.img-2.6.32-30-generic
    Found linux image: /boot/vmlinuz-2.6.32-21-generic
    Found initrd image: /boot/initrd.img-2.6.32-21-generic
    Found memtest86+ image: /boot/memtest86+.bin
    Found Windows 7 (loader) on /dev/sda1
    done
    y

    $ dpkg -l | grep grub

    ii grub 0.97-29ubuntu66 GRand Unified Bootloader (Legacy version)
    ii grub-common 1.99-21ubuntu3 GRand Unified Bootloader (common files)
    rc grub-pc 1.99-21ubuntu3 GRand Unified Bootloader, version 2 (PC/BIOS version)
    ii grub-pc-bin 1.99-21ubuntu3 GRand Unified Bootloader, version 2 (PC/BIOS binaries)
    entonces reinicie pero la pantalla estaba en negro y no se arreglava con nada, volvi a reiniciar, entre con nomodeset y entonces ejecute

    gksudo gedit /etc/default/grub
    y la linea que dice
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    la cambie por
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
    hice
    sudo update-grub
    y repeti los dos primeros pasos y ya puedo cambiar la resolución de la pantalla, ya no se ve estirado
    lo que sigo en el modo 2d
    muchas gracias!!!!

  9. #19
    Join Date
    Aug 2009
    Location
    Bogotá, Colombia
    Beans
    230
    Distro
    Kubuntu Development Release

    Re: [resolucion de pantalla y 2d mode]

    OK, tenemos el equipo iniciando correctamente , ahora nos queda el asunto de la aceleración 3d...

    En teoría el driver debería estar cargando, probemos de nuevo el comando

    glxinfo | grep render
    Last edited by samigina; May 10th, 2012 at 02:36 PM.

  10. #20
    Join Date
    May 2012
    Beans
    14

    Re: [resolucion de pantalla y 2d mode]

    ok, muchas gracias devuelta.
    sigo en 2d.
    te dejo la salida
    $ glxinfo | grep render

    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Error: couldn't find RGB GLX visual or fbconfig
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".
    Xlib: extension "GLX" missing on display ":0".

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •