GRUB2 Graphics Mode doesn't work

I removed old grub and installed grub2 and everything went smoothly, I even got the 1024x768 resolution on grub menu. Then I slightly changed /etc/default/grub and when I again generated grub.cfg, I always get plain console resolution (80x24).
Here is my /etc/default/grub file. I tried both gfxmode and vbemode options, but no success.
GRUB_DEFAULT="0"
GRUB_TIMEOUT="5"
GRUB_DISTRIBUTOR="Arch Linux"
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT="5"
#GRUB_HIDDEN_TIMEOUT_QUIET="true"
# Uncomment to use basic console
GRUB_TERMINAL_INPUT="console"
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT="console"
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE="800x600,640x480,1024x768"
vbemode="0x117"
# Uncomment to allow the kernel use the same resolution used by grub
#GRUB_GFXPAYLOAD_LINUX="keep"
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID="true"
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY="true"
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
export GRUB_COLOR_NORMAL="white/black"
export GRUB_COLOR_HIGHLIGHT="white/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/boot/grub/archlinux.png"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
#GRUB_SAVEDEFAULT="false"
and here is /boot/grub/grub.cfg:
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
set menu_color_normal=white/black
set menu_color_highlight=white/blue
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 b445da59-e82b-4918-8b90-4859dda5a85d
else
search --no-floppy --fs-uuid --set=root b445da59-e82b-4918-8b90-4859dda5a85d
fi
if loadfont /grub/unicode.pf2 ; then
set gfxmode=auto
load_video
insmod gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 b445da59-e82b-4918-8b90-4859dda5a85d
else
search --no-floppy --fs-uuid --set=root b445da59-e82b-4918-8b90-4859dda5a85d
fi
set locale_dir=($root)/grub/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/06_grub-customizer_menu_color_helper ###
### END /etc/grub.d/06_grub-customizer_menu_color_helper ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux, with Linux linux' --class archlinux --class gnu-linux --class gnu --class os {
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 b445da59-e82b-4918-8b90-4859dda5a85d
else
search --no-floppy --fs-uuid --set=root b445da59-e82b-4918-8b90-4859dda5a85d
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=/dev/disk/by-uuid/0dd3efdb-9c0e-4e2f-af60-670e6a7abd3e ro quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
menuentry 'Arch Linux, with Linux linux Fallback' --class archlinux --class gnu-linux --class gnu --class os {
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 b445da59-e82b-4918-8b90-4859dda5a85d
else
search --no-floppy --fs-uuid --set=root b445da59-e82b-4918-8b90-4859dda5a85d
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=/dev/disk/by-uuid/0dd3efdb-9c0e-4e2f-af60-670e6a7abd3e ro quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
Is there a way to get the 1024x768 back? Maybe I'm missing something.

cfr wrote:Did you edit mkinitcpio.conf and regenerate the kernel image?
No. Here is content of my mkinitcpio.conf:
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES=""
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run first, so it may be used to
# override the actual binaries used in a given hook.
# (Existing files are NOT overwritten if already added)
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
# Some users may wish to include modprobe.conf for custom module options
# like so:
# FILES="/etc/modprobe.d/modprobe.conf"
FILES=""
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect pata scsi sata filesystems"
## This is identical to the above, except the old ide subsystem is
## used for IDE devices instead of the new pata subsystem.
# HOOKS="base udev autodetect ide scsi sata filesystems"
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev pata scsi sata usb filesystems"
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev pata mdadm encrypt filesystems"
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev usb lvm2 filesystems"
HOOKS="base udev autodetect pata scsi sata filesystems usbinput"
# COMPRESSION
# Use this to compress the initramfs image. With kernels earlier than
# 2.6.30, only gzip is supported, which is also the default. Newer kernels
# support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
# compression.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""

Similar Messages

  • Xperia Z2: Stamina mode doesn't work aparently

    Hi,
    Stamina mode doesn't work aparently on my phone. I try all the configurations but the sotware doesn't turn off the wifi and neither the mobile data coming from the operator when i block and turn off the screen of the device. I continue receiving information from all the apps and i haven't done any exception on the stamina configuration. Any idea to solve this?
    Solved!
    Go to Solution.

    Looks like you are talking about Low-Battery mode...
    First make sure that you have turned it ON. After that just see "Activation" section under Low Battery mode to find at what level it has been set to activate.. By default, Low battery mode gets activated at 20% battery level.

  • IOS 5 Safari Reader mode doesn't work on an iPad 1º generation

    iOS 5 Safari Reader mode doesn't work on an iPad 1º generation. How can I fix that?

    Hi.  I am having the same problem on an original iPad. The tabbed browsing works fine, but no "reader" button is showing up in the URL window at the top...
    Anyone else seeing this and is a reinstall of ios5 really needed?
    Thanks

  • Boot up from target disk mode doesn't work. (Why?)

    I have a 2010 Macbook Pro, and a 2013 iMac. I connected the Macbook pro with the firewire cable to the iMac, and enabled target disk mode on the laptop. (It is successful because I see the hard drive appear on the iMac desktop.
    I restart the iMac and hold 'option' to show the hard drive list, and sure enough the Mac Book Pro hard drive appears. I select it, and this lovely icon greets me.
    From this point, I have no idea what to do.
    Would you happen to know why it doesn't work and/or how to fix it?

    I am able to do that... this is not the problem.
    I have seen people boot up from the hard drive using target disk mode. When I try to do it, it doesn't work. Does this feature still exist?

  • Flashing in Windows Modes doesn't work

    I'm running Windows Vista Business, and when I try to update my BIOS in windows mode, it fails.
    I'm using MSI Live Monitor 3. After finding the bios (1.5), I use "windows mode" to flash.
    A command-line window comes up, and I can see everything getting flashed. However, after it's done it reboots automatically. After both the initial splash-scrren and the SATA-screen showing my drives, I get an CMOS checksum failed error, and I can either start fiddleing with the setting themselves, or just use defaults.
    I've tried both.
    And after both times, after I get back to windows again, Live Monitor 3 says it has an update for me - bios 1.5. So I can only conclude it wasn't installed, somehow.
    Before doing the install, I closed ALL programs, except windows itself. (I'm saying this, because Live Monitor 3 wishes me to close it..........)
    I cannot flash via a floppy-drive because I don't have one.
    Another problem is that DigiCell keeps telling med: "Failed to load driver". I have no idea what it even IS, but I'd just like to see what free software I get. :P
    Thirdly, has anyone heard of problems with external USB drives and MSI mobo's? I have a 500gb My Book drive that throws I/O errors in Vista, but not in XP on another PC...
    My PC is:
    MSI P965 Platinum,
    2.13ghz Core 2 Duo,
    2048mb DDR2 RAM, 533 Mhz
    Regards,
    Søren Andersen

    Thank you Jack!
    It is indeed updated to 1.5 - I just didn't notice, since I had the full-logo thing on.
    I also updated the drivers, but unfortunately that didn't help. :-(
    I've been trying since friday to fix this both on the WD forum (http://websupport.wdc.com/forum/topic.asp?TOPIC_ID=5948) and on Microsoft's tech forum (http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.vista.hardware_devices&tid=dc8d09ab-0d98-452c-b2d3-a0948f756dda&cat=en_us_9F280F8D-E6BF-F78C-234A-416CF09D5DC5&lang=en&cr=US&sloc=en-us&m=1&p=1)
    but we've still been unable to fix it...
    To be honest, I don't think it has anything to do with hardware. The drive doesn't work properly on this PC (MSI / Vista) but does on my laptop (Dell / XP), but it has to be checked...
    Basically, it keeps throwing 0x8007045D I/O errors, but I can see noone in here has had similar problems.
    So, thank you for your extremely swift replies and very great help!
    Regards,
    Søren

  • When Searching for attachments to mail, preview mode doesn't work

    When I am in mail and am composing a new email and I click "Attach" to attach a file, the current folder comes up and shows the preview mode of every file type (i.e. pictures and pdf previews). No problems. However, if I then do a search for something (my name for example) to narrow down my choices of files or images to select, the next search level does not show a preview of the files or images, just a .pdf icon or the .jpeg icon - NO PREVIEW. This is extremely frustrating! I tried on different folders and the same results occurred. Any ideas or is this a bug?

    Hi Pranava,
    I couldn't reproduce this issue, when I create root folder FS0 in "Shared Documents" and start a full crawl, I click the FS0 link from search results page, it will open the FS0 folder as well as folder under FS0.
    Please right-click the FS0 name hyperlink (e.g. mine is http://sp/Shared%20Documents/FS0) and paste in IE browser see if it could be accessed successfully.
    Also test if other Shared Documents have this issue in other site collection or web applications, if not, run a full crawl may do a trick (please reset search index if only full crawl still doesn't work).
    Thanks
    Daniel Yang
    TechNet Community Support

  • Antares autotune 4 graphic mode does not work in Logic

    Has anyone found a workaround for the following issue:
    Using Antares autotune 4 or 5 in Logic pro 8, I cannot use the graphical mode how it was intended. Using Cubase, I was able to launch the plugin, switch to graphic mode, and track the pitch vs time. This was useful to manually correct the pitch for each syllable. For some reason, this function does not work in Logic Pro 8. Any thoughts as to why? Am I doing something wrong? Please advise.

    I haven't used AT in years, but I do still have AT 4.
    Graphic mode works just fine here in Logic 8, and I'm still on Tiger as well, albeit 10.4.11
    Not that you asked, but seriously, look into Melodyne. AT is so archaic as far as it's graphic mode is concerned. 30 seconds back with it and I can't seriously see why anyone would use that plug-in, other than maybe manual mode, for a quick "run a comb through it" fix.
    Sorry I couldn't give you an answer as to why this is happening. have you contacted Antares?

  • OS 10.8 just installed. "Hot Corner" to put new iMac 2.7 GHz Intel Core i5  to sleep mode doesn't work. Have tried cordless and corded mouse with same result. Momentary sleep, immediate wake. Any idea how to fix?

    Set "hot corner" to put iMac to sleep.  Doesn't work.  Selecting the corner will momentarily put to sleep, but immediately rewakes.  Have tried all four corners with same result.  Have tried with wireless mouse and with corded mouse with same result.  Any ideas as to how to fix?

    You've been so great, I want to thank you for all the help over a very frustrating day.  Last evening, I redownloaded and installed the fresh copy of Mountain Lion.  The problem remained.  After installing the new OS 10.8, any clicks on a web page (Firefox browser) didn't open the page, but instead made a copy of the page on the desktop. Felt it must be hardware  degrading, so I set up a case with Apple support for today.  Early in the diagnostics, I had swapped out for a corded mouse and the problem remained.   As a last try, I changed out my wireless mouse for a different wireless mouse. That seems to have done the trick. My Logitech mouse is incompatible with OS 10.8.
    Thank you again, so much!
    .../awards rkaufmann87 500 points!

  • How do i add a bluetooth device to my mac? there is no " " button in my bluetooth preferences and turning the devices to discover mode doesn't work

    How do i add a bluetooth device to my mac?  There is no " +" button in my bluetooth preferences and turning the devices to discover mode doesn't work

    The Bluetooth setup assistant should "find" a device in range when that device is turned on. What are you trying to add?
    Wireless input devices: Bluetooth frequently asked questions ( How do I add or remove a wireless device to or from my Mac (pairing or unpairing)?)
    Barry

  • Pressing D on boot to get into Diagnostic mode doesn't work. Macbook Pro with OSX 10.6.8

    My charger has stopped working all of a sudden for my MacBook Pro. I tried my friends charger and it works. I've seen a few people mentioning that their charger started working again after running a Diagnostic test at boot up by pressing "D" after powering up the computer.
    I see this instruction all over the web, but it doesn't work for me! I have the OSX DVD in the drive. Holding down "C" while booting makes it boot on the DVD, and holding the Option key will give me a boot menu. But it just boots normally while holding down "D".
    Am I missing something?

    Press D during startup
    Start up in Apple Hardware Test (AHT).
    Apple Hardware Test is included on the DVDs that are shipped with some Macintosh computers. If the copy on your hard drive becomes unavailable, use the DVDs to run Apple Hardware Test.
    For Intel-based Apple computers that shipped with Mac OS X v10.5.4 or earlier, Apple Hardware Test is located on the Mac OS X Install Disc 1 and should be included with your computer.
    For Apple computers that shipped with Mac OS X v10.5.5 to 10.6.7, Apple Hardware Test is located on the Applications Install Disc 2 and should be included with your computer.
    For some Apple computers that shipped with OS X Lion, if Apple Hardware Test cannot be found on the hard drive, an Internet-based version starts up instead.

  • S3 mode doesn't work fine on K8N Neo-fsr since overclocking, please help!

    I have a K8N Neo-FSR (MS-7030) BIOS version 1.6 (I tried 1.4, 1.5), running AMD64 2800+ SK 754, 2x 256MB DDR400 Kingston valueram pluging in slot 1&2. It runs well except S3 mode    .
    Since I overclock HTT (everythings else have their own default values), S3 mode seems to work so crazy . After wake up from this usefull stop-grant standby mode, HTT is given back to its original speed, 200MHz, without notice (?!)  .
    You know that I don;t like this much, do you? 
    Who responsible for this function? Mainboard or CPU? If it's mainboard, which department will be sentenced, BIOS or chipsets/ICs? 
    Could anybody give me a solution to achive higher speed by overclocking without giving up using S3? 
    Thanks so much!

    It's a bad new! I had bad feeling about DFI with the same problem, S3 mode resuming bring FSB back to df and even sometimes led the system to the ruin. But upgrading bios solved this issue. My old Abit did S3 mode fine. Now I have a new MSI and once again I must use teknophyle's way or slow hibernation instead.
    On the same occasion, I wana ask about some shortcoming in 1.6 bios: power on by keyboard/mouse and power led options. I only found S3 wake up by keyboard/mouse but not keyboard/mouse power-on options! There is power led option in version 1.56 but it disapeared in 1.6. Now my mobo has no signal to differentiate between sleep and power-off. would you give back the useful power led option and add power on by combination keys in the near future bios version, syar? Look forward to hearing some good new from you :D.

  • CISCO VPN CLIENT RUNNING KERNEL 64 MODE (DOESN'T WORK!?)

    Hi,
    I switched my Mac to Kernel 64 and some days after, trying to run my Cisco VPN Client (vpnclient-darwin-4.9.01.0180-universal-k9), give me back the classic "*ERROR 51: Unable to communicate with the VPN subsystem*"
    I'm not sure that the kernel 64 is the cause, but I believe it.
    I've just tried the reinstall (also all fix and work around findable on the web and forums), but nothing to do.
    The "+sudo SystemStarter restart CiscoVPN+" by terminal doesn't work, and it give back this message:
    "+(kernel) Kext com.cisco.nke.ipsec not found for unload request.+
    +Failed to unload com.cisco.nke.ipsec - (libkern/kext) not found.+
    +Starting Cisco Systems VPN Driver+
    +/System/Library/Extensions/CiscoVPN.kext failed to load - (libkern/kext) requested architecture/executable not found; check the system/kernel logs for errors or try kextutil(8).+"
    Someone has the same problem?
    (p.s.: sorry for my GOOD English...)

    Do you really need to run a 64 bit kernel? One of the reasons Apple boots into a 32 bit kernel is because not all 3rd party drivers are 64 bit capable.
    Unless you have a 64 bit only driver that you must run, or you have something like 32GB or more of RAM, the 32 bit Mac OS X kernel will work just as well as the 64 bit kernel. Both kernels will equally run 64 bit applications, so there is no downside to a 32 bit kernel for most users.
    There are some other posts in this forum where someone ran Mac benchmarks with a 32 bit and 64 bit kernel, and the results were essentially identical. The best performance improvement came from having a 64 bit application, but having a 64 bit kernel didn't affect performance at all.
    I too have to use the Cisco VPN Client, and as I do not see any advantage to running a 64 bit kernel, I will be happy running the 32 bit kernel starting Thursday, when my 27" iMac arrives

  • Find Mode doesn't work

    Hi,
    Maybe this is correct behaviour, but for me it's quite strange. I create new project (ADF+UIX), create Business Components From Tables (only one small table). Then I create new DataPage on struts diagram and edit this page (I choose uix as type of page). I drag on page View Object that I have just created (choosing 'Search form' from 'Drag and drop as' drop-down list). I select just created UIModel in Structure pane and change value of 'Find Mode' from false to true in Property Inspector.
    With those operations performed my page works perfectly - it opens without execution of query, and shows fields to fill criteria in.
    Then I put at the bottom of page link pointing to the same page (assuming that page is named 'dataPage1.uix', the link points to 'dataPage1.do'). When I run page, it's works only till I click that link for the first time. From that moment the page cease to work. It is impossible to change the value of Find Mode using the button which normally do it. It is only possible to create and delete search criteria rows.
    Can anyone confirm tha it is a bug and I should register tar on that issue or maybe this is normal that after using link between pages Find Mode will not work anymore? Maybe there is a work-around for this?
    Leszek

    yes we found this problem and oracle filed bug 4358538

  • Test Mode doesn't work

    Has anyone run across a time when you put a host into testmode and testmode doesn't work like it is suppose to? I had to uninstall CSA from the host to get what I was trying to do to work. Just wondering....

    Try the BUG - CSCfx00032

  • ONLY screen blending mode doesn't work...?

    I have Windows 8, and Photoshop CS6. All of my blending modes work, except for Screen. I don't know why it doesn't, but I do use it somewhat frequently, and it's really holding me back at this point.
    Is this related to all the other problems people have been having with Photoshop running on Windows 8? Or is this an issue that I'm going to have to fix myself, somehow?
    Thanks!

    Do you see the problem if you disable the [  ] Use Graphics Processor setting entirely (remembering to restart Photoshop before testing)?
    What video card (aka graphics adapter) do you have in your system?
    What driver version are you running?
    Have you looked for alternative versions e.g., on nVidia.com or AMD.com?
    -Noel

Maybe you are looking for

  • How to create a pdf file can not save as

    i created pdf file, an make security option with no access print and save, when we open that file in reader, print is blocked, but save as button still appear and user could be save in other place or namefile, how to make save as not permitted

  • Preset for maintaining video in 640x1336 size for App Store Video

    I am trying to create a video for the App Store and it requires that the video is 640x1336. I have raw footage in this format but there is no preset available to keep it as such once I import it into Premiere Elements 13 on Windows (as well as for ex

  • Security Update 2010-005 for Facetime

    Hi, I have downloaded Face-time Beta to be installed on my iMac OS 10.5.8. During Installation i get a message that I need to install first "Security Update 2010-005 using software update" My software update shows no update required. Nevertheless, I

  • DOMParser.parse question

    Hi all, I have parsed an XML document resulting in a DOM. Then I am going through and returning a nodeList by: dSLDocument.getElementsByTagName("PurchaseOrder");This returns the tag that I am after but what I need to do is then create a new DOM from

  • After reinstallation and upgrade to 10.5.6, itunes doesn't show any music

    Hi all I did a clean install of my boot drive to 10.5.2. Then I updated with the combo updated to 10.5.6. I also updated iTunes to 8.0.2. The problem is that iTunes does not find my music library, which lives on a separate hard drive that I did not t