How can I skip early Intel driver loading? Affects boot splash...

When I boot up and watch the boot splash I can see the screens change and the text goes smaller. I'd rather have a consistant look. Is this to do with the Intel driver loading early and if so how I can change this so it loads once the boot splash is over?

Gusar wrote:Look instead into /sys/class/drm. You'll see a bunch of directories there the likes of card0-DVI-1 and such. It's the part after card0- we're interested in, in my example that would be DVI-1. Or you don't specify an output at all, in this case the resolution should apply to all outputs.
Thanks. That worked! LVDS-1 was my device. I also had a VGA but I think that was for the output connector.
I added the following into my kernal line in /boot/grub/menu.lst:
video=LVDS-1:680x400
* edit  *
I found the right resolution by going into the command line at grub, and then counting the vertical lines. Then i played around until the vertical resolution was correct and then adjusted the horizontal resolution.
Last edited by carebearboy (2011-07-27 00:43:06)

Similar Messages

  • How can I format my intell based imac without the original Tiger discs? I have a user account on it that I dont want. I have upgraded to Snow Leopard but I want to to star affresh. Thank you.

    How can I format my intell based imac without the original Tiger discs? I have a user account on it that I dont want. I have upgraded to Snow Leopard but I want to to start affresh. Thank you. I have tried loading the Snow Leopard disc whilst holding down th C key but it goes straight into install mode. I am new to Macs and I have inherited this machine.

    Hello, many options...
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
       2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
          *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
       3. Click the Erase tab.
       4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
       5. Select your Mac OS X volume.
       6. Highlight the drive, select Partition Tab, then Format type... MacOS Extended Journalled, select the Security Options button, choose Zero Out Data, Erase... after completion do a new install.
    Or...
    Open System Preferences>Accounts, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    In the same pref pane highlight your old account, click the little minus icon, then use Disk Utility to Secure Erase Free Space.

  • How can i no which SATA driver do I need for Satellite L300-03C

    How can i no which SATA driver do I need for Satellite L300-03C so i can do nlite

    Hi
    Your notebook seems to be a Satellite L300-03C PSLB8C-03C01X.
    As already suggested in your first thread visit the Toshiba Canada page and choose this notebook model on the driver page.
    http://209.167.114.38/support/Download/ln_bymodel.asp
    Then download the Intel Matrix Storage Manager (SATA) - Floppy drive image. Its for Vista but the files in this package should work with Win XP too.
    Include these files using nLite in order to create new Win XP disk containing the SATA drivers.
    Finally use this disk for booting.

  • How can I erase My hard drive. Disk utility only gives me the option of erase free space. I have 27in iMac with Lion and 12 gb ram.

    How can I erase my hard drive? Disk utility only gives me the option to erase free space.
    Thanks for any assistance.

    Drive Preparation for Lion
    1. Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button. Select Disk Utility from the main menu and click on the Continue button.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Quit DU to return to the main menu.
    5. Select Reinstall Lion then click on the Continue button. You need an active network connection in order to download the Lion software.

  • I have installed Adobe packages and cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?

    I have installed Adobe Creative Cloud for teams CC Packages which says that Acrobat XI Pro is installed. Your support page says it does not install Acrobat and I have to look in the Extensions folder for an MSI file.  I have run a number of searches and  cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?
    Also I now administer the teams and have accepted the invitation to I received to be a team member and download the apps.  The admin page shows that I have been sent an invitation but does not show my account as "ACtive" unlike my other team members.  I tried to use the link in the invite to accept it become active but the link displayed an error saying I had already accepted the invite... why is no account not active?
    Finally what other product downloads in Creative Cloud do not actually download as part of the Creative cloud Packager for downloading the apps? e.g. acrobat and what else?

    My apologies Eadeszoo I believe our support agents are unavailable on January 1.
    Are you able to copy the contents of the DVD to your computer?  Are you receiving any particular error messages when you are trying to install?  Finally which operating system are you using?

  • HOW can I make a .SWF default load after its first load?

    When you have the SAME parent API on every page of an (X)HTML website, can a .SWF tell itself to load from a default position when a website user navigates to different HTML pages?
    Here's my parent API as it stands:
    http://www.playingthepoet.com/
    HOW can you tell the .SWF to load from a default position once the .SWF has loaded a first time? AND from any page of the website, not just the Home page? This is an advanced .SWF networking issue. And I'm not sure if the best solution is a Javascript of if there's a direct AS3 programming solution.
    The blurs and fade-ins are a bunch of timer variables and timer event methods timer event listeners. I want that intro ONLY ONCE. And NOT every time a user changes HTML pages. Please help, and MANY thanks for your time!!
    NT

    Hi ,
    You can set a variable say "count" on stage composition ready -
    sym.setVariable("count" , 0);
    On stage click , you keep checking the value of this variable -
    if(sym.getVariable("count") == 5)
      sym.$("Symbol_2").show();
    //Here "Symbol_2" is the next button that you want to appear on screen(which is initially invisible) when the symbol_1 is clicked say 5 times.
    Now, on click of a button , you keep updating the variable count -
    var countnew = sym.getVariable("count");
    countnew = countnew+1;
    sym.setVariable("count" , countnew);
    Attaching the sample for reference.
    Thanks and Regards,
    Sudeshna Sarkar

  • How can I delete a duplicate drive in the folders area?

    Not sure how I ended up with a shared network drive duplicated under the folders area of Lightroom 3.6.  Maybe it was a user error but now my network drive where I have 15,000 pictures appears twice in the folder area and it is constantly updating (since there are quite a few pictures).
    How can I delete the duplicated drive?  I have "removed" all the folders under the duplicated drive (and made it disappear) but the drive keeps coming back as the synchronization process will add all the folders that exist on that drive.
    The two drives with "Volume_1" in the name are actually one shared network drive (I only have one).
    I actually removed my network drive mapping (N:) to fix the problem but that did not even work; LR still found a duplicate name for the same network drive and started to synchronize (again). Help!!

    I found pretty good super users and a solution here:
    http://www.lightroomforums.net/showthread.php?14294-Remove-external-drive-from-Folders-vie w

  • How can I remove the hard drive from an iMac g4 before recycling it?

    How can I remove the hard drive from an iMac g4 before recycling it?

    There are take-apart guides online.  For example
    http://www.xlr8yourmac.com/systems/imac_g4/imacg4_takeapart.html
    However, you can also consider securely erasing the hard drive instead.  You can do this using a Mac OS X installation disc with a version that your iMac G4 can boot from the optical drive.  If this is a viable option, please post back (include Mac OS X version on installation disc).

  • How can I hide early morning hours in iCal?

    how can I hide early morning hours in ical??? i'm sleeping at those hours and i really don't need to see them. it would give me a lot more space to see what really matters if i could define myself what hours i would like ical to show. i saw an old post that is locked and doesn't help. also searched the web and didn't find anything. i would be great to solve this very annoying problem. thanks!

    yes, it seems so. i guess we can't modify that.  =/  maybe some crazy script or programming thing... or something like that would do it, though.

  • How can I Replace a Hard Drive on a 160gb iPod Classic?

    How can I Replace a Hard Drive on a 160gb iPod Classic? I am considering buying an iPod Classic off of eBay which is described as 'broken' and having the 'Red X' showing up on the screen. The seller is starting the bid at a very low price, which raises some concerns for me. For this thread, let us assume that the iPod has a broken hard drive that needs to be replaced in order to function properly. I am assuming that merely 'restoring' it would not suffice. How would I be able to replace the hard drive myself, without bringing it in to a store? I have never fixed an iPod's hardware before, nor a computer or any electrical device. I am a novice at such things. Would I be able to fix it myself without wasting money on a broken iPod and new hard drive? Please provide instructions on how to do so =)

    Hello there,
    Yes, the red X icon is usually a sign of a bad or damaged hard drive. Sometimes, restoring the iPod will resolve the issue, but rarely. Other users were able to smack the ipod against the side of their leg and gain back full functionality of the iPod.
    However, if no such luck with either, your next option would be to replace the drive. For this task, you can either opt to repair and replace the hard drive yourself, or opt to send it into a third party repair business to do the job for you.
    I use the guides at [www.ifixit.com|http://www.ifixit.com> to help me replace broken parts on an iPod. These guides provide excellent step-by-step instructions as well as photos on how to repair any part from an iPod.
    Some other good sites for purchasing repair parts include the following:
    [iDemiGods|http://www.idemigods.com>
    [RapidRepair|http://www.rapidrepair.com>
    [iResq|http://www.iresq.com>
    Lastly, I would also like to remind you that ebay also has several great deals on excellent iPod replacement parts. It's where I purchase a majority of mine.
    Hope this helps.
    B-rock

  • How can I put a hard drive icon on desktop?

    how can I put a hard drive icon on desktop?

    Click on the Desktop. Select Preferences from the Finder's menu. Click on the General icon in the toolbar. Check the appropriate boxes.

  • How can I get a better driver for my 1394b Hostcontroller in my Macbook pro 2010 to solve the problem, that it is too slow under Windows 7 installed with bootcamp ?

    How can I get a better driver for my 1394b Hostcontroller in my Macbook pro 2010 to solve the problem, that it is too slow under Windows 7 installed with bootcamp ?
    WIndows can't find a better one than the installed LSI Conformed 1394 Hostcontroller

    Read and follow the Bootcamp Installation instructions that you were offered to view when you ran Bootcamp Assistant.
    Run Bootcamp Assistant again and select the option to download the Bootcamp Support software. Follow the instructions. Then boot into Windows and install the Windows Support software you downloaded and saved.

  • Help! When i connect my "iomega" External hard drive to my mac it does not show in devices or on the desktop, how can i access my hard drive?

    Help! When i connect my "iomega" External hard drive to my mac it does not show in devices or on the desktop, how can i access my hard drive?

    what format your iomega HD is it NTFS , if NTFS try download   http://www.apple.com/downloads/macosx/system_disk_utilities/ntfs3g.html

  • How can I clean my hard drive?

    Hello everyone,
    My macbook is now four years old and the last wipe is a while ago. My hard drive is quite ful and I don't really know what I can delete and what not. There's also 26 GB in Movies which don't appear nowhere. I really would like to get rid of them but don' know how. So, is there an application like CleanMyMac that is of any use or how can I wipe the hard drive myself (after I saved all my data)?
    Thank you for your help,
    Julia

    I made my partition and am currently reinstalling mountain lion to put on my flash drive. I'm using Lion disk maker 2 thats compatible with mountain lion. I'm doing it right, correct?

  • How can I add the hard drive icon to the menu bar on a MBPr

    How can I add the hard drive icon to the menu bar on a MBPr?  I have downloaded Google Earth and it wants me to drag it to the hard drive for install. I was able to display the icon but now I would like to put it on the menu bar. Is this possible? Or can I add it to the hardware section under system preferences?
    I'm a new Apple user, coming out of the dark ages of a lifetime in the PC Windows world.
    Thanks

    It's on your Desktop, is it not? You cannot put it on the menubar through OS X although you may find third-party utilities that will. If you want it on the Desktop:
    Select Preferences from the Finder's Finder menu and check the desired boxes:
    Click on the Sidebar icon in the toolbar to set what you want displayed in the Sidebar.

Maybe you are looking for

  • Is there anyway to retrieve deleted text in my notepad?

    Is there anyway to retrieve deleted text in my notepad?

  • Stolen Ipod touch. How to track?

    My son just got his Ipod touch stolen. Is there a way to track it if the location settings is on? He did not download the app to protect from icloud.

  • SAP Standard BAPI Issue ---BAPI_PROCORDCONF_CREATE_TT

    Hi We are using the standard BAPI--  BAPI_PROCORDCONF_CREATE_TT to do Process order confirmations , which is invoked by an MII BLS using data from the MES system. Everything worked like a charm ( Partial confirmations, Final Confirmations, Goods Move

  • How to receive a gif file using a custom ABAP FM

    Hi Experts,           Here is my requirement.           I have to provide an interface which should receive a GIF file.           I have created a FM but what data type should I define in the import parameter or the table parameter to receive the GIF

  • Macbook pro 15 mid 2012 ssd with hdd

    I have macbook pro 15 mid 2012 I want add ssd to my macbook for this I found dvd bay http://www.ebay.com/sch/i.html?_nkw=...rd+Drive+caddy but I don't know, I must leave my HDD in its place or put to dvd bay? ssd use sata 3 hdd use sata 2 dvd bay hav