1440x900 (24 bit) display resolution for Ubuntu Server


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #use hwinfo to find out the mode number for your choice of resolution
  2. sudo apt-get install hwinfo
  3. sudo hwinfo --framebuffer | grep 1440x900
  4.  
  5.  
  6. #scroll to the end of /boot/grub/menu.lst
  7. #add 'vga=SOME_MODE_NUMBER' to the end of the 'kernel' line
  8. kernel /boot/vmlinuz-2.6.15-26-server root=/dev/hda1 ro quiet splash vga=0x0336
  9.  
  10. #reboot into new config
  11. sudo shutdown -r now

URL: http://crunchbang.org/archives/2007/10/10/changing-bootup-and-console-screen-resolutions/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.