915resolution on x startup
Hey. I'm new to Ubuntu, just switched over from Slackware. Had problems with widescreen resolution so I used 915resolution to resolve that issue. Works like a champ. However, I'm unable to get it to work at startup. All the solutions I run accross suggest putting it in /etc/rc.local or /etc/init.d/rc.local. I did this and upon booting, the 915resolution does not hold. However, once I get to the logon screen, I can ctrl+alt+bkspce and when it comes back to me, the 915resolution is working just fine. I've been searching for a way to get the 915resolution to work upon first boot into x windows.
Any info would be greatly appreciated!
timothy
info:
toshiba m65-s809 laptop
intel 915gm integrated video card
ubuntu 6.06
I dont think any logs or configs would be helpful, but I shall post any per request.
The part that has gotten me the most success is this snippet from my /etc/init.d/rc.local :
do_start() {
if [ -x /etc/rc.local ]; then
log_begin_msg "Running local boot scripts (/etc/rc.local)"
/etc/rc.local
log_end_msg $?
/usr/sbin/915resolution 4d 1440 900
fi
}
|