[base:system] Grub 0.97 with graphical patch

Introduction
This is a mod to the current grub package found on Arch base repository which adds support for a splash image (a background).
While the patch is not officially supported by grub developers due to their policy of only bugfixes on their grub 0.9x series, it is used by many distributions like Fedora/Red Hat, SuSE, Gentoo, Mephis, and others. The patch I use is based on the one included by Fedora Core 3 grub srpm and rediffed to the latest vanilla grub version.
After the installation is done, you will have a grub screen with the following background.
Due to demand, the old splash image is optionally available for those who like it more.
New: In addition to the standard package, a new alternate one is available for those who follow the Reiser4FShowto steps and want a grub package with both reiserfs4 and splashimage.
Pre Install Notes
1. Make a copy of your menu.lst for backup. It is not replaced by the installation steps below, unless you remove your current grub package.
2.  We are dealing with your boot system info, so there is a small chance that things can be screw up.  But I haven't got any issue.
3. If want to compile the package with the old splash image, or your custom splash image instead of the current one, you need to edit the PKGBUILD and change the md5sum assigned to splash.xpm.gz.
4. The alternate package with reiser4 requires libaal, reiser4progs, and a reiser4 patched kernel.  Those are not on Arch repos, you can get them and read about all the process involved on  Reiser4FShowto,  or grab my updated PKGBUILDs: libaal, and reiser4progs
Installation
Note: Reiser package not updated since reiser patch need to be rediffed.
Files changed for 0.97-1:  PKGBUILD, menu.lst
1. Grab the following files and save them on a folder on your /var/abs/local path:
a. PKGBUILD.  For reiser4 support, please get this PKGBUILD instead.
b. menu.lst
c. install-grub or copy it from /var/abs/base/grub/install-grub.
d. grub-0.96-graphics.patch
e. splash.xpm.gz, or if you prefer the previous one, then get splash.xpm.gz
g. Only for reiser4 support grab the reiser4 patch from here
2. Build the package
# makepkg
3. Install the package
# pacman -U grub-0.97-1.pkg.tar.gz
4. Edit your menu.lst and add the following splash instruction anywhere before your OS's menu entries.    splashimage /boot/grub/splash.xpm.gzFor example:
# general configuration:
timeout 5
default 0
splashimage /boot/grub/splash.xpm.gz
Important: Since grub 0.96-4 the splash path is /boot/grub/splash.xpm.gz and not /grub/splash.xpm.gz.  Previous users need to correct the path.
5. Install the new grub boot images to your /boot dir.  Change x with your boot drive letter (ie. hda)
# install-grub /dev/hdx (or sdx)
6. ONLY if your system dual boot, AND your primary boot loader is NTLDR, remember to update your boot binary file (dd if=/dev/hdx of=/linux.bin bs=512 count=1) and copy the file to your NTFS boot partition. If you don't know what I´m talking, don't worry and just skip this step.:lol:
Troubleshooting:
Black display menu visible:  Stages probably not updated, try again install-grub (your partition where /boot belongs, or MBR).  To check if your stage2 supports splash image, use this checksplash.sh script.
Black display, no menu, or corrupted display:  Check the splashimage instruction.    If you have a separate /boot partition try splashimage /grub/splash.xpm.gz.  Also check that you have a splash.xpm.gz in grub's dir.
FAQ
1. Can I use my custom image in grub?
Yes, but it need to fullfill these requisites:  640x480 resolution, 14 color xpm picture gziped compressed. 
2. Do I need to recompile or reinstall grub when changing a splash?
Any splash can be used at any time, and no compilation is required after this package is installed, just replace splash.xpm.gz with another one, or edit menu.lst and change the path of splashimage instruction to match the desired picture to show.
3. I currently use lilo, can I replace it with grub?
Yes you can, but AFAIK the menu.lst get your drive partition info on Arch installation and not grub installation (and same applies to lilo.conf).  So you need to edit the menu.lst after package installation and add your boot device and kernel image configuration.  That kind of problem is beyond the scope of this guide.  If that's your case, first get working the the standard grub package on the current repository, and then update to this package.  For more info or sample grub configs check  ArchWiki - Grub or Gentoo Handbook - Configure the bootloader
4. Where can I get more information about splash images on grub?
GNU Grub Splashimage Howto General Grub bootsplash info and sample images.
checksplash.sh Script that check if your stage2 support splashimage.
5. I would like to test your package, but do not know how to build one?
Simply, download the pre-compiled package from here. and install it using step 3, 4 and 5 of the Installation guide.
Current Issues
Note at the moment.
TODO
I will investigate the patch used by SuSE/Novell. It is a new modified one that allows for a greater resolution (not just 640x480) and more fancy stuff like menus.  But that will means a heavy modifed grub install, and thus completely sure it will not be accepted on Arch repos, and please don't ask when it will be done.
Change Log
2005-05-16 Updated to 0.97
2005-03-02 Added alternate PKGBUILD with reiser4 support and related grub patch.
2005-02-27 PKGBUILD 0.96-4, Fix splashimage path issue by adding a boot symlink on boot.
2005-02-26 Fix some document steps.
2005-02-04 Provide old splash image for those who like it more.
2005-02-03  PKGBUILD 0.96-3, removed dependency on gzip. Splash is taken from $startdir instead of the uncompressed one on $statdir/src. Pre-compiled package provided. (FAQ question #4).
2005-02-02  Updated to grub 0.96, rediffed patch, new splash based on tpowa's kde 3.4 wallpaper.
2005-01-09  Add autoreconf entry to fix compilation of new files added by patch.  Update to FAQ.
2005-01-06  First public release of PKGBUILD based on grub 0.95.
Hope you enjoy it.

I found the problem some people may have that the splash image didn't show with the steps I described. 
The splash image path is different when /boot is on a separate partition, and when /boot is a folder of the / partition. As a stand alone partition, the /boot part of the path is not needed (directly points to it at mount maybe), and where /boot is on the same partition as /, then the user must specify /boot as part of the path for it to work. That's maybe the reason most distributions that use this splash patch include a symlink called boot on /boot directory itself (a kind of hack, or workaround).
In short, the correct path of the splashimage commant to work is:
A. /boot as separate partition: splashimage /grub/splash.xpm.gz
B. /boot on same partition as root: splashimage /boot/grub/splash.xpm.gz
I'm working on a new revision of the PKGBUILD that will fix this problem bringing uniformity to the path.  For the time being, this info is also added to the Install steps on the guide.

Similar Messages

  • Upgrading Hyperion System 9.3.1 with Patches

    Hi All,
    Can anyone tell me the latest patches and the things to keep in mind while upgrading System 9.3.1 with the latest patches. We are running the base version of the system 9.3.1 and would like to upgrade to the latest patches for all the components given below.
    1. Planning
    2. Essbase
    3. BIPlus
    4. EAS
    5. Shared Services
    6. APS
    Please suggest. Thanks...

    Hi,
    Just one thing though...If you apply the Planning 9.3.1.11 patch, dont forget to patch the AAS console on each client machine too or you will have problems executing HBRs from client machines.
    In the AAS console if you go to help - about, the AAS and HBR version on client machine must be the same as on the server.
    The documentation is not very clear.
    Likewise if you apply BI+ 9.3.1.2 (Financial Reporting), after you ve applied the patch on the server, you will need to copy the BIPlus/lib/HReports.jar file from the server and paste in the same folder on every machine where the FR Studio is installed.
    Hope this helps.
    Seb
    www.capiotech.com

  • Can i do client export import between systems with different patch levels

    we want to do a client export import between two systems. As I understand the patch levels should be the same in both for this to happen..
    But right now I am in a situation where time is a big constrant. The basis patch level is on par. But the rest are not. Can I do  client import successfully at this stage.

    The only thing that may stop it working could be additional functionality between the systems.
    I work on XI and there is a huge difference between SP12 and SP15.  We were able to do the transports between systems, but as Dev was patched before QA, and the transport was reliant on standard settings not being available, it still went though, but we had to transport it again after applying SP15 to QA.
    Again, it probably depends on what System you have running on Netweaver...

  • Blinking question mark folder with only OS X base system left

    Yesterday I turned my laptop on to see a blinking question mark folder. I searched through a lot of people questions with the same problem however mine is not the same because I only have the OS X base system left. I can't redownload the OS X lion because there is nothing to download it after I chose the option to redownload it. I see that most people have the Macintosh HD but I don't have anything like that.
    disk1
         Mac OS X Base System
    that's all I see when I try the repair option?

    Have you tried booting to your Recovery HD (if you are running Lion or Mountain Lion?) If not and if you were running Lion or Mountain Lion, then:
    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by:
    Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    Boot drive's directory has been corrupted - Repair with Disk Utility.
    Critical system files are damaged or deleted - Reinstall OS X.
    The disk drive is physically non-functional - Replace the hard drive.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD:
    Boot From The Recovery HD:
    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.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: 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.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • How do I install base system on external drive to boot MacBook Pro?

    I have a MacBook Pro 2.2 core 2 duo. I use an external HD for storage. Want to make external drive bootable (i.e. to run apps like DiskWarrior on MacBookPro).
    How do I install the base system?
    Thank you.

    First, be sure the external drive is partitioned using the GUID partition scheme. If it isn't then you will have to re-partition the drive which will erase anything you have on the drive.
    Second, the external drive must be formatted Mac OS Extended (Journaled.)
    Last, boot from the OS X Installer Disc One that came with the computer and install OS X onto the external drive. Do not do an Erase and Install if you don't want to erase the external drive. You can customize the installation to omit any additional components you don't need such as language localizations, Asian Fonts, unneeded printer drivers, etc.

  • Missing driver for "Base system device" x2 after Windows 7 install on laptop

    Upon upgrading to SSD drive and fresh installation of Windows Professional 64 bit, I have two conflicts in device manager referring to "base system device". Both devices are PCI Slot 2 (PCI bus 67 device 0 function 1)
    Both devices report the following code in system information: 
    PCI/VEN_1180&DEV_E852&SUBSYS_146D103C&REV_01/4&7ECE869&0&02E2
    I have read through 16 pages of other people with simlar problems but not the same code. I have installed the Ricoh 5-in-1 reader for 64 bit software with no success.  Any help will be greatly appreciated
    This question was solved.
    View Solution.

    Here is the link.
    http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=4173846&swItemId=ob_79991_1&swEnvOid=4059

  • Black screen after login while on battery with graphics switching enabled

    Getting a black screen after entering my password while logging into my account while on battery with graphics switching enabled. Everything is up and running, I just can't see it.
    I can log into the guest account on battery
    I can log into my account while plugged into power
    I can log into my account on battery if graphics switching is disabled
    I believe something that is starting up in my account is causing the system to switch from integrated to discrete graphics on login, and that switch isn't working correctly on battery power.
    As a work around for now, I can run with graphics switching disabled, but I'd like to solve this so I get longer battery life.
    MacBook Pro Retina 15"
    Mountain Lion
    All updates applied

    I had the same issue and managed to reslove it.
    Shut down your machine.
    Power it back on while holding the 'shift' key (left or right, doesn't matter)
    You will see a greay progress bar go across the screen while you boot in to 'safe boot'
    Once booted, login, and go to Energy Saver and turn on 'Automatic Graphics Switching'.
    Reboot back in to normal mode, and you should be able to log back in and see again.
    I did this without being plugged into AC power.
    Hope it helps!
    Cheers!

  • What's the difference between choosing "reinstall mountain Lion" and erasing hard drive and booting from base system?

    I would like to know what the difference would be with the following two scenarios, both starting from the command + R menu at startup:
    1. Chose the picture of the mountain lion "reinstall osx mountain lion
    2. Erase the main hard drive, and then boot from "OSX base system"
    If someone upgraded my macbook to mountain lion, did that upgrade also include a recovery partition and is that what one of these options is?

    I would like to know what the difference would be with the following two scenarios, both starting from the command + R menu at startup:
    1. Chose the picture of the mountain lion "reinstall osx mountain lion
    2. Erase the main hard drive, and then boot from "OSX base system"
    If someone upgraded my macbook to mountain lion, did that upgrade also include a recovery partition and is that what one of these options is?

  • ERROR:Could not read archive file - during Processing Base System Part 2

    Hi there,
    What I have:
    * I have problem with installation of the Mac OS X Panther v10.3 on iMac.
    * I have 3 original CDs (black with silver X).
    What I did:
    * I made new 1 partition and formated disk as Mac OS Extended (Journaled) over the Disk Utility in the first CD as normal without additional options (if I tried to format disk with zero all data and 8 way random write format after 3 days computer freeze)
    * I verified disk over this utility - that was ok - HFS volume verifed.
    * Then I restarted the computer and ran installation from this first CD
    What happened:
    * installation did not finish, because there were some problems during installation process.
    * i tried to customize installation just for essential work (without other languages support, printers etc), but it was still the same problem
    Installation log:
    After I choosed installation type, there was first error, but it did not look like important.. - root: bootstraplookup(): unknown error code
    Checking your installation disk - OK
    Preparing disk - OK
    Preparing base 1 and 2 - OK
    Other preparing.. - OK
    Processing Base System Part 1 - OK
    Processing Base System Part 2
    ==
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    last message repeated 2 times
    ERROR:Could not write file. - pax: WARNING! These patterns were not matched:
    Some files for Essentials may not have been writen correctly.
    root: Installer[108] Exception raised during posting of notification. Ignored. exception: Some files for Essentials may not have been written correctly. (code 1)
    Install Failed
    Error detected
    Name: NSGenericException
    Reason: Some files for Essentials may not nave been written correctly. (code 1)
    ==
    It seems like a problem with reading some data from the CD, but during the installation checking of disk was ok.. maybe it can be problem with the cd-rom..? Or problem with data on cd-rom - I mean bad archive file..? But it is original CD.. What do you think??
    Thank you!

    Tomas,
    On THIS Page, locate your iMac model.
    From the Documents column, click on the appropriate number link.
    Using the info in the document that opens, locate the serial number of your iMac.
    On THIS Page, in the text field for Search Tech Specs, enter that serial number.
    Click on the model of iMac that appears.
    Post a link to the page that opens, or post the info requested below.
    Exactly which model iMac is it?
    What is the Processor speed?
    What size is the Hard Drive?
    How much Memory is installed?
    What type of internal Optical Drive does it have?
    Which version of OS, was the original Installed Software?
    ali b

  • Indesign CS5 crash during startup - problem with Graphics.rpln

    I work in an architectural company and already several of our computers have experienced this very rare and unusual behaviour. During start up of Indesign (not clicking on any file but just launching Indesign) it crashes with the following error:
    "Adobe Indesign CS5 has stopped working"
    We use Windows 7 64bit, so the first step I did - I went into Application Log which says, so appears to be a problem with Graphics.rpln.
    -=-=-=-=-=-=-=-=-=-=-===-=-
    Fault bucket 1848500921, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: InDesign.exe
    P2: 7.0.0.355
    P3: 4bad00be
    P4: GRAPHICS.RPLN
    P5: 7.0.0.355
    P6: 4bad03d3
    P7: c0000005
    P8: 0004e1e2
    P9:
    P10:
    Attached files:
    C:\Users\User\AppData\Local\Temp\WER162E.tmp.WERInternalMetadata.xml
    These files may be available here:
    C:\Users\User\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_InDesign.exe_b042 ec9a818cb8fb57eefe0aacb41c22fdcbb8_10c12aa8
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 9e59fc2c-5b68-11e3-908c-f46d0497fc9b
    Report Status: 0
    -=-=-=-=-=-=-=-=-=-=-===-=-
    I have tried everything I could think of - removed and reinstalled Adobe CS5, manually removed Adobe folders under %Appdata%\Local and %Appdata%\Remote folders (why can't Adobe delete those things during uninstallation is always a total mystery), changed video adapter drivers, cleaned Temp folders, everything I knew...
    None of the other apps like Photoshop or Illustrator CS5 malfunction - only Indesign. What is going on?
    Can it conflict with other software we use? We have Bentley Microstation, 3D Max, Office 2010, Kaspersky Antivirus and LOGMEIN installed on this computer...Any clues, guys?

    Looks to me like you've never installed any of the patches. Last patch for CS5 was 7.0.4, so I'd start with that and see if ti helps.

  • Reading the EDI X12 file not working with the patch 8233048

    Hi
    I have installed the latest path 8233048 on my windowsXP system, now I am not able to see the File being polled and processed.
    In b2b.log I can see the last message as "oracle.tip.adapter.b2b.data.MsgListener:run start listening on message" after that no log.
    In b2b_dc_transport.log, I can see only
    2009.02.07 at 20:35:45:236: B2BStarter thread: (DEBUG) TransportProperties.TransportProperties():http.receiver.registry_port=5110;smtp.receiver.protocol=imap;PROTOCOL_ENDPOINT=null;file.receiver.polling_interval=30;polling_interval=30;http.receiver.instance_name=IP;
    2009.02.07 at 20:35:45:266: B2BStarter thread: (DEBUG) initialize TransportReceiver: [IRIS_Transport_Server < file > < IRIS >]
    2009.02.07 at 20:35:45:266: B2BStarter thread: (DEBUG) FileReceiver.init() started ....
    2009.02.07 at 20:35:45:287: B2BStarter thread: (DEBUG) FileReceiver.init() completed.
    Could you please tell me if I need to do any changes.
    This is working on b2b with only patch: 5907304 which is installed in another windows XP system.
    The same configuration with the latest patch is not working.
    Edited by: Praveena Paruchuru on Mar 7, 2009 7:56 AM

    Hi Dheeraj,
    I have restarted my system many times, not only B2B.
    I have taken the print out of both the tip.properties and compared line by line and wanted to check out which line was making it not to function.
    I added the mismatching lines one by one by one, it was working for all teh updates. Finally I changed it to my new tip.properties.
    Then surprisingly it is working.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • [SOLVED] Mirrorlist's error installing the base system

    Hi!
    I'm trying to install ArchLinux on my Acer Aspire 5750G (I'm following the "Beginners' Guide").
    I managed to establish a Wi-Fi connection (Although "wifi-menu" didn't work: I used the wpa_supplicant function. But this isn't the purpose of the thread) and to mount the various partitions. But now I have some problems installing the base system.
    Infact, when I go for:
    pacstrap -i /mnt base
    I get an error like:
    error: failed retrieving file 'core.db' from archlinux.openlabto.org : Resolving timed out after 10463 milliseconds
    And it continues like this for each mirror of the mirrorlist, so I think that they're not the problem.
    And its not even a problem of my internet connection, because if I try the "ping" command it works.
    I have to say that my iso is the "July" one, because when they released the last one I had already burnt mine to a DVD. Maybe that's way I get this error, but I'm note sure.
    I've searched for some solutions on the forum, and someone said that after some time it should function.
    Anyway, how can I resolve this issue?
    Thanks in advance.
    Last edited by Wantoast (2013-08-07 17:07:28)

    drcouzelis wrote:The month old installation media shouldn't be a problem.
    Definitely. I have just tried with the newest version and the problem occurred again.
    drcouzelis wrote:
    Does the Internet connection really work? Can you load a website in a web browser?
    # Use links (or links2 or lynx, whatever's installed)
    links archlinux.org
    link will not execute and completion _links exsists.
    EDIT: I used elinks and Internet works. I'm quite sure it's not a connection problem ("Quite" because if wifi-menu didn't work there should be a reason).
    Last edited by Wantoast (2013-08-07 14:57:09)

  • T61 LCD display flickering with big patches of black and going to dark (very low light) afterwards

    I have a T61 which has Intel graphic card. It is seven years old and at times has a noisy fan.
    Very recently it started to have problem with its LCD, it starts with slight flickering of light intensity from corners of screen, here and there, eventually covering the whole screen, goes away and comes back, happens for few seconds, the pattern repeats for few times, then big (screen-wide) patches of back starts to cover the lower 1/4th, one-half, 3/4th of screen, flickering between the screen content and black screen, till they cover the whole screen after 30-60 seconds. At that moment, the screen is very dark but with a close look, it is still possible (but very hard) to read it. Connecting it to external monitor (through its VGA), it is working very well. Showing same screen on both LCD and external monitor at the same time, the picture on external is solid, but picture on LCD can have this issue. At the moment of writing this message, the problem seems to not happening!! but it was happening during the past whole week including few minutes ago. I searched online and here in the forum and read few posts, and found about these issues:
    - some T61's have Nvidia GPU and thermal effects over the time and stress on the package or solder balls can make loose connections (this is probably not my case since the interface to graphic card is by Intel)
    - problem with LCD itself (it is working fine just right now)
    - problem with graphic card (it is working very well over the VGA to external monitor)
    - problem with the ribbon from mother-board to LCD (tilted the screen in different angles when the black patches and flickering are happening and didn't change the chaos much in any direction of making it better or worse)
    - problem with bulb inside the screen (maybe the cause, but somehow decided for the last few minutes to working fine)
    - problem with inverter (don't know yet what this part it)
    - problem with some sort of mechanical part(s) being loose, gently tapped on sides and back of the screen while the phenomena was happening and again didn't have much effect on it in any direction.
    I appreciate your time and good gesture of help, many of you would know more scientific/engineering ways of approaching the problem and how to root cause it. My sincere thanks beforehand.

    >  the screen is very dark but with a close look, it is still possible (but very hard) to read it.
    That sounds like a defective CCFL backlight or inverter.
    >- problem with bulb inside the screen (maybe the cause, but somehow decided for the last few minutes to working fine)
    A CCFL is essentially a high intensity fluorescent bulb. One failure mode is flickering.
    >- problem with inverter (don't know yet what this part it)
    The inverter is a power supply that converts the low voltage DC used in the rest of the ThinkPad to high voltage to drive the CCFL. I would expect that to fail catastrophically rather than cause flickering.
    What to do?
    CCFLs backlights are relatively inexpensive ($10 to $15 on eBay) but they can be difficult to replace because they're delicate. You may prefer to replace the entire LCD panel assembly or even the entire top cover assembly (which also includes the inverter card.)
    The Hardware Maintenance Manual for the T61 provides detailed instructions for doing this sort of stuff if you'd like to see what's involved and decide what you feel comfortable doing.
    Cheers... Dorian Hausman
    X1C2, TPT2, T430s, SL500, X61s, T60p, A21p, 770, 760ED... 5160, 5150... S360/30

  • SAP-Basis system: Transaction canceled 15

    Dear Gurus,
    We have ECC 6.0 on DB2 9.1 fp 5 on windows 2003.
    I am getting this error in syslog.
    SAP-Basis system: Transaction canceled 15
    Thanks
    Rao.

    Thanks for reply
    This is the log in SM21.
    Can you tell me how to do this in sap or database level.
    &CAUSE&
    When the update data is reorganized, it deletes inconsistent
    (incomplete) update requests. While one user is carrying out a
    transaction, the the update data is often in a state of incompletion.
    When the transaction is completed and the update begun, the data becomes
    complete. If the data is reorganized in productive operation, temporary
    inconsistencies may get deleted. A data inconsistency with incomplete
    data can therefore arise.
    &SYSTEM_RESPONSE&
    Reorganize the update tables only where there are no users logged onto
    the system.
    &SYS_ADMIN&
    Regards
    Rao.

Maybe you are looking for

  • S10-2 sees sd card but cannot read,format

    I've already reloaded  the drivers from the website here and tried different SD cards, mostly 2 gig and less. Windows Explorer sees the sd card as drive E: but when I access it, the system tells me the disk is not formatted, ( even though it was on a

  • Why is the 1.3 plugin install giving me 1.3.1_01?

    Just changed today. My object tag is: <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"      id="test"      width="400"      height="400"      codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0">      <

  • How do I get a "second alert" option in calendar  - using gmail w/ exchange

    Hi - I am using gmail calendar and syncing it via "push" of microsoft exchange. I am able to set a single "alert" for a calendar, but not a second alert (as the native iphone calendar will allow, as does gmail calendar"). How do I set a second alert

  • IPhone detecting headphone when not in

    So my sleep button broke on my 2G and I replaced the dongle. Now the sleep button works, but the iPhone thinks the headphones are plugged in when they are not. When I plug the headphones in, the iPhone detects them as being unplugged. Essentially, it

  • Adobe Reader LE Updates

    Are standard OEM equipped device users entitled to product updates? I'm using Adobe Reader LE 2.5.0.0. but there is no facility in the product to check for updates. Have there been any updates?