![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
|
|
Hardware & Laptops Problems with hardware & laptops not being detected or supported during or after install. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
5 Cups of Ubuntu
![]() Join Date: Oct 2006
Location: Lodz, Poland
Beans: 21
Ubuntu Karmic Koala (testing)
|
Edit: I recently added the instructions to use an Ubuntu *or* Kubuntu usplash theme. I hope some of you may like it better.
Hello all, Here you can find instructions how to change the usplash theme to support 1440x900 native resolution. At least that worked for me, so maybe you can be lucky as well. First, the hardware:
In Ubuntu Gutsy virtual terminals work only using the low-resolution text mode by default. The reason is that the framebuffer modules are generally disabled (blacklisted) in the modules configuration. I suspect that's because this part of kernel code is not 100% up to date, doesn't work for everybody and is designed to work best on x86/amd64 systems. It is possible, however, to enable at least the vesafb module and try to use a higher resolution for virtual terminals. See bug #129910 for a long list of success and failure reports. So, get your hands dirty and open the terminal first. Remember to type only the green text, also omit all comment lines that start with '#': Code:
sudo dpkg-reconfigure console-setup 2. Enable the vesafb module This is somewhat longer. First enable autoloading of selected modules at boot time: Code:
sudo nano /etc/initramfs-tools/modules Code:
# List of modules that you want to include in your initramfs. # # Syntax: module_name [args ...] # # You must run update-initramfs(8) to effect this change. # # Examples: # # raid1 # sd_mod fbcon vesafb Code:
sudo nano /etc/modprobe.d/blacklist-framebuffer Code:
# Framebuffer drivers are generally buggy and poorly-supported, and cause # suspend failures, kernel panics and general mayhem. For this reason we # never load them automatically. blacklist aty128fb blacklist atyfb blacklist radeonfb blacklist cirrusfb blacklist cyber2000fb blacklist cyblafb blacklist gx1fb blacklist hgafb blacklist i810fb blacklist intelfb blacklist kyrofb blacklist matroxfb_base blacklist neofb blacklist nvidiafb blacklist pm2fb blacklist rivafb blacklist s1d13xxxfb blacklist savagefb blacklist sisfb blacklist sstfb blacklist tdfxfb blacklist tridentfb # blacklist vesafb blacklist vfb blacklist vga16fb Finally generate modules.dep and map files: Code:
sudo depmod -a Because the fbcon and vesafb modules will be loaded automatically only at the boot time, right now load them manually: Code:
sudo modprobe fbcon sudo modprobe vesafb Code:
sudo apt-get install hwinfo sudo hwinfo --framebuffer Code:
02: None 00.0: 11001 VESA Framebuffer [Created at bios.447] Unique ID: rdCR.04O_qA0Mq31 Hardware Class: framebuffer Model: "NVIDIA G86 Board - e416h01 " Vendor: "NVIDIA Corporation" Device: "G86 Board - e416h01 " SubVendor: "NVIDIA" SubDevice: Revision: "Chip Rev" Memory Size: 14 MB Memory Range: 0xfb000000-0xfbdfffff (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 0x0349: 1400x1050 (+5600), 24 bits Mode 0x034a: 1600x1200 (+6400), 24 bits Mode 0x0352: 2048x1536 (+8192), 24 bits Mode 0x0360: 1280x800 (+1280), 8 bits Mode 0x0361: 1280x800 (+5120), 24 bits Mode 0x0362: 768x480 (+768), 8 bits Mode 0x0364: 1440x900 (+1440), 8 bits Mode 0x0365: 1440x900 (+5760), 24 bits Mode 0x0368: 1680x1050 (+1680), 8 bits Mode 0x0369: 1680x1050 (+6720), 24 bits Mode 0x037c: 1920x1200 (+1920), 8 bits Mode 0x037d: 1920x1200 (+7680), 24 bits Config Status: cfg=new, avail=yes, need=no, active=unknown Code:
sudo nano /boot/grub/menu.lst Code:
## additional options to use with the default boot option, but not with the ## alternatives ## e.g. defoptions=vga=791 resume=/dev/hda5 # defoptions=quiet splash locale=pl_PL Add the "vga=0x365" option (the locale setting will probably be different in your case, don't change it!): Code:
## additional options to use with the default boot option, but not with the ## alternatives ## e.g. defoptions=vga=791 resume=/dev/hda5 # defoptions=vga=0x365 quiet splash locale=pl_PL Make sure the changes are applied: Code:
sudo update-grub This one is easy but important: Code:
sudo nano /etc/usplash.conf Code:
xres= yres= Code:
xres=1440 yres=900 Code:
sudo dpkg-reconfigure usplash Now restart the system and check if all went correctly. Don't worry yet about strange usplash picture proportions, we'll take care of that in a moment. Check this:
6. Install some development packages You will soon need to recompile the usplash-theme-ubuntu package, but to do so you need some tools and libraries. Install these packages: Code:
sudo apt-get install build-essential libusplash-dev Code:
mkdir ~/work
Note that I've made the patches against the 0.17 version of usplash-theme-ubuntu and 7.10 version of kubuntu-default-settings packages. The "*.diff" files will work for these versions correctly. Whether they will work against any other version I have no idea (probably not). You have been warned.
Since the source is patched and the tools should be in place you can now compile the code: Code:
make
Code:
sudo dpkg-reconfigure usplash Nothing more to add. Last edited by SirYes; January 1st, 2008 at 08:02 PM.. |
|
|
|
|
#2 |
|
5 Cups of Ubuntu
![]() Join Date: Apr 2006
Location: San Nicola la Strada - IT
Beans: 27
Kubuntu 7.10 Gutsy Gibbon
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
Wonderful!
This guide applied seamlessly to my Asus G1S! Just a typo to be fixed at step #6: "build-essential" and not "build-essentials". Thank you SirYes and give my regards to Poland! |
|
|
|
|
#3 | ||
|
5 Cups of Ubuntu
![]() Join Date: Oct 2006
Location: Lodz, Poland
Beans: 21
Ubuntu Karmic Koala (testing)
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
Great! So the result is repeatable, that's really good news. Although I'd wish it was completely unnecessary and more or less supported upstream.
I'm glad you were able to make all the steps. Quote:
Quote:
Have a nice... hi-res! |
||
|
|
|
|
#4 |
|
First Cup of Ubuntu
![]() Join Date: Dec 2007
Beans: 3
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
Excellent post SirYes! I've been trying to find info on how to get this working on my Asus G1S notebook for a week now and yours is the first to help me get it working!
Running Kubuntu 7.10 and the only differences I had were i had to run 1680x1050 (yeah, damn Thanks again! You rock! |
|
|
|
|
#5 |
|
First Cup of Ubuntu
![]() |
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
I'm on an Asus G1S and I've been booting with a black screen until I saw this post. Everything worked flawlessly!! Perfect instructions. Now I can show off Ubuntu while I'm booting!!
|
|
|
|
|
#6 |
|
Tall Cafè Ubuntu
![]() Join Date: Apr 2007
Location: /dev/random
Beans: 2,506
Ubuntu Development Release
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
I'd love this, but I'm running Kubuntu. Is there any chance I might be able to persuade you into posting instructions for that splash?
__________________
KDE, I heart thee. - Try a Kubuntu live cd before you dismiss it. Come to the dark side, we have kookies. - MS Office "interoperability" - "How to" = guide. "How do I" = question. Name your threads appropriately. |
|
|
|
|
#7 |
|
A Carafe of Ubuntu
![]() Join Date: Nov 2007
Beans: 100
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
hello
After grub i am getiing this messege: starting-up you passed an undefined mode number press [return] to see video modes avaible [space] to continue what did i wrong? thank you |
|
|
|
|
#8 | |
|
Tall Cafè Ubuntu
![]() Join Date: Apr 2007
Location: /dev/random
Beans: 2,506
Ubuntu Development Release
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
Quote:
__________________
KDE, I heart thee. - Try a Kubuntu live cd before you dismiss it. Come to the dark side, we have kookies. - MS Office "interoperability" - "How to" = guide. "How do I" = question. Name your threads appropriately. |
|
|
|
|
|
#9 |
|
A Carafe of Ubuntu
![]() Join Date: Nov 2007
Beans: 100
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
i have 8600gts and when i run
HTML Code:
sudo hwinfo --framebuffer ![]() |
|
|
|
|
#10 | |
|
Tall Cafè Ubuntu
![]() Join Date: Apr 2007
Location: /dev/random
Beans: 2,506
Ubuntu Development Release
|
Re: GeForce 1440x900 resolution, virtual terminals and wide usplash-theme-ubuntu [gut
Hmm.
Quote:
__________________
KDE, I heart thee. - Try a Kubuntu live cd before you dismiss it. Come to the dark side, we have kookies. - MS Office "interoperability" - "How to" = guide. "How do I" = question. Name your threads appropriately. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|