Categorías
- adsense
- blogging
- consumo
- desarrollo y programación
- .htaccess
- .net
- ajax
- ajax.net
- ant
- apache
- ascii
- bases de datos
- bbpress
- css
- delphi
- dom
- dreamweaver
- eclipse
- emule
- expr. regulares
- firefox
- formularios web
- ftp
- gmail
- google-gwt
- hibernate
- html
- iis
- internet explorer
- java
- javascript
- librerias
- linux
- microformats
- ofimática
- php
- servicios web
- ssl
- ubuntu
- vbscript
- wiki
- wordpress
- xampp
- xml
- hardware
- hogar
- matemáticas
- motos
- ofertas
- opinión
- salud
- sin categoría (todavía)
- sistemas operativos
- tecnologia
- tramites y legislación
Ajustes del arranque Grub2 para Ubuntu
Modificar líneas de menú
Cambiar la resolución
Grub2 uses a collection of files to set the various settings it uses. You can specify your desired resolution in the /etc/default/grub file. Edit it with this command:
gksudo gedit /etc/default/grubLook for the line #GRUB_GFXMODE=640X480. Remove the # and set your desired resolution. Here's what I did:
GRUB_GFXMODE=1280x1024For whatever reason, one that I don't totally understand, this is not all you have to do to change the resolution grub uses. As I discovered in this blog, there is one more change you need to make.
Edit this file: /etc/grub.d/00_header with the command:
gksudo gedit /etc/grub.d/00_headerYou are looking for the line that consists of:
set gfxmode=${GRUB_GFXMODE}After that line, add:
set gfxpayload=keepyour block of code will look like:
Cambiar los colores
Grub defaults to black text with magenta highlighting. To change this scroll down to the bottom of the file and look for the code:
if background_image `make_system_path_relative_to_its_root ${bg}` ; then set color_normal=black/black set color_highlight=magenta/black elseYou'll want to keep the color after the slash, for both instances, set to black. It seems this makes the foreground transparent allowing your to see your handsome new background. You can see a list of available colors in the grub manual. This is what I used for my brown-heavy image.
if background_image `make_system_path_relative_to_its_root ${bg}` ; then set color_normal=white/black set color_highlight=brown/black elseOtros artículos de esta serie: