[SOLVED] Almost succesfully EFI install. Error: unable det.... root..

Hello
I almost did a EFI install of Arch.
I've followed the wiki. But as you boot with bios, efibootmgr didn't work. So, as solution, and it's not in the wiki I put the grubx64.efi as bootx64.efi in /boot/efi/EFI/BOOT/. This is where EFI search  the file bootx64.efi to launch, if a bootloader wasn't fixed before.
It works. I achieve at grub's menu, and launch Arch. But from there I get the next:
ERROR: unable to determine major/minor number of root device "UUID=......."
ERROR: UUID=..... no such file o directory
ERROR unable to determine the file system type of
I've tryed do a mkinitcipio without autodetect HOOK. But the same.
I think it is GRUB2, but for me, five days with EFI (at least), three install tryes, too much for me. I can't do more search.
(it's a usb and use HOOK usb too)
Thankyou by your time.
Last edited by Alber (2012-07-17 11:59:32)

Hello.
I read several post. The solution was either delete the "autodetect" HOOK, or Grub2 config. But I tried to understand this file, and it looks like fine to me. But I have no experience in that so it could be wrong.
Fallback entry no works.
My fstab:
# <file system> <dir> <type> <options> <dump> <pass>
tmpfs /tmp tmpfs nodev,nosuid 0 0
UUID=dc65138c-aa2c-45aa-ba83-71be6b9a51d6 / ext4 defaults 0 1
UUID=087141f8-e460-448f-91fe-45ad290454c9 /var ext4 defaults 0 2
UUID=7D8C-C20F /boot/efi vfat defaults 0 2
UUID=7e6bdfb0-9bc2-426b-99cf-3942510c3273 /home ext4 defaults 0 2
UUID=8350f0a8-3374-4c18-86b8-0b23b69b8654 /boot ext4 defaults 0 2
gdisk output:
GPT fdisk (gdisk) version 0.8.5
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Command (? for help): Disk /dev/sdb: 31275008 sectors, 14.9 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 72D56917-9541-4E03-B6E6-CFFCC5449557
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 31274974
Partitions will be aligned on 2048-sector boundaries
Total free space is 169917 sectors (83.0 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 616447 300.0 MiB EF00 Dummy_efi
2 616448 1026047 200.0 MiB 8300 Dummy_boot
3 1026048 17803263 8.0 GiB 8300 Dummy_root
4 17803264 26191871 4.0 GiB 8300 Dummy_var
5 26191872 31107071 2.3 GiB 8300 Dummy_home
/boot/grub/grub.cfg
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
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 {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3 dc65138c-aa2c-45aa-ba83-71be6b9a51d6
else
search --no-floppy --fs-uuid --set=root dc65138c-aa2c-45aa-ba83-71be6b9a51d6
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/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/10_linux ###
menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-dc65138c-aa2c-45aa-ba83-71be6b9a51d6' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 8350f0a8-3374-4c18-86b8-0b23b69b8654
else
search --no-floppy --fs-uuid --set=root 8350f0a8-3374-4c18-86b8-0b23b69b8654
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=UUID=dc65138c-aa2c-45aa-ba83-71be6b9a51d6 ro quiet add_efi_memmap
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-dc65138c-aa2c-45aa-ba83-71be6b9a51d6' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2 8350f0a8-3374-4c18-86b8-0b23b69b8654
else
search --no-floppy --fs-uuid --set=root 8350f0a8-3374-4c18-86b8-0b23b69b8654
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=UUID=dc65138c-aa2c-45aa-ba83-71be6b9a51d6 ro quiet add_efi_memmap
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 ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
I'll go to try to change grub.conf:
It could be that firmware was getting another disk. So I'll change hd1 to hd2 or hd0.
I have to read grub2 wiki to asure where root must be pointing.
Added: Maybe ext2 must be ext4?.
NO, it wasn't
Last edited by Alber (2012-07-13 11:36:46)

Similar Messages

  • CSA MC Install error: Unable to load patch information

    When we try to install CSA MC 5.2.0.263 (and 5.2.0.203) on Windows Server 2003 Ent Ed (or R2) we receive error:
    "Unable to load patch information into the database"
    How to solve the given error?

    Just a couple things to check. If running the CSA agent on the MC make sure its disabled during the upgrade
    You have enough free space in the installation directory

  • Install error "unable to locate folder for token UserDocuments"

    I'm trying to install a trial of CS5.5 Design Premium and I keep getting this error. I've been working on it for the past two days and I can't find anything useful on the kb or forums.
    Installer said on exit: (full install log below)
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 62 error(s), 53 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: Unable to locate folder for token UserDocuments.
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe WinSoft Linguistics Plugin CS5: Install failed
    ERROR:  - Adobe CSXS Infrastructure CS5: Install failed
    ERROR:  - SiteCatalyst NetAverages: Install failed
    ERROR:  - Adobe Photoshop CS5 Support: Install failed
    ERROR:  - Adobe Bridge CS5: Install failed
    ERROR:  - HIL Help Search: Install failed
    ERROR:  - AdobeHelp: Install failed
    ERROR:  - Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack: Install failed
    ERROR:  - Suite Shared Configuration CS5: Install failed
    ERROR:  - Photoshop Camera Raw: Install failed
    ERROR:  - AdobeColorCommonSetCMYK: Install failed
    ERROR:  - DeviceCentral_DeviceCentral3LP-en_US: Install failed
    ERROR:  - Camera Profiles Installer: Install failed
    ERROR:  - Adobe Mini Bridge CS5: Install failed
    ERROR:  - Adobe Player for Embedding: Install failed
    ERROR:  - Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack: Install failed
    ERROR:  - Adobe SING CS5: Install failed
    ERROR:  - Adobe SwitchBoard 2.0: Install failed
    ERROR:  - AdobeColorJA CS5: Install failed
    ERROR:  - Adobe ExtendScript Toolkit CS5: Install failed
    ERROR:  - Adobe BrowserLab CS Live: Install failed
    ERROR:  - CSXS Story Extension: Install failed
    ERROR:  - Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US: Install failed
    ERROR:  - Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US: Install failed
    ERROR:  - Adobe XMP Panels CS5: Install failed
    ERROR:  - Adobe Illustrator CS5: Failed due to Language Pack installation failure
    ERROR:  - DeviceCentral: Failed due to Language Pack installation failure
    ERROR:  - AdobeColorEU CS5: Install failed
    ERROR:  - AdobeTypeSupport CS5: Install failed
    ERROR:  - AdobeColorVideoProfilesCS CS5: Install failed
    ERROR:  - Adobe Fireworks CS5: Failed due to Language Pack installation failure
    ERROR:  - AdobeColorCommonSetRGB: Install failed
    ERROR:  - Adobe Utilities CS5: Install failed
    ERROR:  - Adobe Photoshop CS5 Core: Failed due to Language Pack installation failure
    ERROR:  - Adobe CSXS Extensions CS5: Install failed
    ERROR:  - Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US: Install failed
    ERROR:  - Adobe Toolhints CS5: Install failed
    ERROR:  - AdobeOutputModule: Install failed
    ERROR:  - Adobe InDesign CS5 Application Feature Set Files: Install failed
    ERROR:  - Adobe InDesign CS5 Application Base Files2: Install failed
    ERROR:  - Adobe InDesign CS5 Application Base Files: Failed due to Language Pack installation failure
    ERROR:  - PDF Settings CS5: Install failed
    ERROR:  - Adobe Linguistics CS5: Install failed
    ERROR:  - Adobe InDesign CS5 Common Base Files: Install failed
    ERROR:  - DynamiclinkSupport: Install failed
    ERROR:  - Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack: Install failed
    ERROR:  - AdobePDFL CS5: Install failed
    ERROR:  - AdobeCMaps CS5: Install failed
    ERROR:  - Required Common Fonts Installation: Install failed
    ERROR:  - Creative Suite 5 Design Premium: Install failed
    ERROR:  - AdobeColorNA CS5: Install failed
    ERROR:  - AdobeColorPhotoshop CS5: Install failed
    ERROR:  - Adobe Buzzword CS5: Install failed
    ERROR:  - Adobe Dreamweaver CS5: Failed due to Language Pack installation failure
    ERROR:  - Recommended Common Fonts Installation: Install failed
    ERROR:  - Adobe Extension Manager CS5: Install failed
    ERROR:  - Adobe ReviewPanel CS5: Install failed
    Full installation log:
    [       0] Mon Sep 19 00:06:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    OSX version: 10.7.1 
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming install mode
    ::START TIMER:: [Bootstrap]
    Perform Bootstrapping ...
    :: END TIMER :: [Bootstrap] took 12421 milliseconds (12.421 seconds) DTR = 6347.96 KBPS (6.19918 MBPS)
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 1401 milliseconds (1.401 seconds) DTR = 23763 KBPS (23.2061 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium
    Updating media info for: {007A2A28-D6A8-4D91-9A2B-568FF8052215}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeWinSoftLinguisticsPluginAll/AdobeWinSoftLinguisticsPluginAll.dmg
    Updating media info for: {02731921-5711-4E7A-A898-D6BCF0F2A1CD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCSXSInfrastructure2-mul/AdobeCSXSInfrastructure2-mul.dmg
    Updating media info for: {03EEF3DA-71F9-4FE5-92AD-D10142E26459}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/SiteCatalystNetAverages1-mul/SiteCatalystNetAverages1-mul.dmg
    Updating media info for: {042F50EC-2C9E-43D8-B3D7-2BB204A20E44}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15en_GBLanguagePack/AdobeIllustrator15en_GBLanguagePack. dmg
    Updating media info for: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-Support/AdobePhotoshop12-Support.dmg
    Updating media info for: {0D067D13-C3D7-4EA6-B346-740CD91FD547}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeBridge4-mul/AdobeBridge4-mul.dmg
    Updating media info for: {14A2CC02-4638-405D-8190-ECD7BFD32D6E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlash11-en_USLanguagePack/AdobeFlash11-en_USLanguagePack.dmg
    Updating media info for: {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/HIL_Help_Search/HIL_Help_Search.dmg
    Updating media info for: {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMobileExtension_Flash11-en_US/AdobeMobileExtension_Flash11-en_US.dm g
    Updating media info for: {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11en_GBLanguagePack/AdobeFireworks11en_GBLanguagePack.dmg
    Updating media info for: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeHelp/InstallAdobeHelp
    Updating media info for: {2C8C0585-5083-4032-94B8-A9AD04ED0716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAIR1.5.3-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {2D5B4A04-0A9F-4FB9-862A-C49400325A90}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDreamweaver11en_USLanguagePack/AdobeDreamweaver11en_USLanguagePack. dmg
    Updating media info for: {30221E3E-4C47-4560-A296-DD9ABB500C21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AIR2_Flash11-mul/AIR2_Flash11-mul.dmg
    Updating media info for: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeSuiteSharedConfiguration-mul/AdobeSuiteSharedConfiguration-mul.dmg
    Updating media info for: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCameraRaw6.0All/AdobeCameraRaw6.0All.dmg
    Updating media info for: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorCommonSetCMYK3-mul/AdobeColorCommonSetCMYK3-mul.dmg
    Updating media info for: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/DeviceCentral3LP-en_US/DeviceCentral3LP-en_US.dmg
    Updating media info for: {3F023875-4A52-4605-9DB6-A88D4A813E8D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCameraRawProfile6.0All/AdobeCameraRawProfile6.0All.dmg
    Updating media info for: {41372141-B568-4B5A-80DD-649980B825AC}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/DeviceCentral3LP-en_GB/DeviceCentral3LP-en_GB.dmg
    Updating media info for: {4438C826-1FD0-4D04-A70B-24FE1580AB21}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMiniBridge1-mul/AdobeMiniBridge1-mul.dmg
    Updating media info for: {44EAE408-3960-11DF-ACCC-D8A62C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonLang-en_GB/AdobeInDesign7CommonLang-en_GB.dmg
    Updating media info for: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAMP1.8-mul/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Updating media info for: {4687A306-D716-4D7A-B0AA-EAB65D17F149}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeAPE3-mul/AdobeAPE3-mul.dmg
    Updating media info for: {47DF3210-E261-4D06-A073-92F6C426C352}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AMECore5All/AMECore5All.dmg
    Updating media info for: {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11en_USLanguagePack/AdobeFireworks11en_USLanguagePack.dmg
    Updating media info for: {4C08199E-0D93-4227-8325-F024E71CA7A1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeSING3-mul/AdobeSING3-mul.dmg
    Updating media info for: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/SwitchBoard2.0All/SwitchBoard2.0All.dmg
    Updating media info for: {54F4466A-091A-46DA-B697-43D55CEF9DF6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorJA_ExtraSettings3-mul/AdobeColorJA_ExtraSettings3-mul.dmg
    Updating media info for: {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeMobileExtension_Flash11-mul/AdobeMobileExtension_Flash11-mul.dmg
    Updating media info for: {5A60CD44-B38B-47CD-BE38-219C81AE3345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeExtendScriptToolkit3.5.0-mul/AdobeExtendScriptToolkit3.5.0-mul.dmg
    Updating media info for: {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/Players_Flash11-mul/Players_Flash11-mul.dmg
    Updating media info for: {5E08533A-2C1B-469D-AFD5-953C9D00031F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/BrowserLabCSLive-mul/BrowserLabCSLive-mul.dmg
    Updating media info for: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/iPhone_Flash11-mul/iPhone_Flash11-mul.dmg
    Updating media info for: {66173EC7-974E-4652-9468-4A93D2481BF0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeStoryExtension-mul/AdobeStoryExtension-mul.dmg
    Updating media info for: {68489BE8-3960-11DF-8F88-C4A72C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonLang-en_US/AdobeInDesign7CommonLang-en_US.dmg
    Updating media info for: {69582206-7E5D-4476-A8F4-ECF90E9C8A69}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-en_US/AdobePhotoshop12-en_US.dmg
    Updating media info for: {6A2E619B-E4AC-433B-A648-D458CE543A96}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeXMPPanelsAll/AdobeXMPPanelsAll.dmg
    Updating media info for: {6A75E573-6909-4D48-BDFA-D8ED118605A5}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15-mul/AdobeIllustrator15-mul.dmg
    Updating media info for: {6E505C8F-2896-11DF-9B64-0013724DD917}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDeviceCentral3-all/AdobeDeviceCentral3-all.dmg
    Updating media info for: {6E7E143C-395D-11DF-80BB-4B252C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppLang-en_GB/AdobeInDesign7AppLang-en_GB.dmg
    Updating media info for: {6F29BE46-E5F3-4146-8A84-20301E5C985A}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorEU_ExtraSettings3-mul/AdobeColorEU_ExtraSettings3-mul.dmg
    Updating media info for: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeTypeSupport10-mul/AdobeTypeSupport10-mul.dmg
    Updating media info for: {73A4DC5E-226E-42BA-8ECA-2822592AC044}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeVideoProfilesCS3-mul/AdobeVideoProfilesCS3-mul.dmg
    Updating media info for: {755A9707-8A74-4B18-A6FD-F80F5893BDF2}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFireworks11All/AdobeFireworks11All.dmg
    Updating media info for: {7745F18B-FD8A-4011-BE16-588900C503D0}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlashFonts1-mul/AdobeFlashFonts1-mul.dmg
    Updating media info for: {78A53622-CDBA-49D1-A3D0-D563FB398D0C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorCommonSetRGB3-mul/AdobeColorCommonSetRGB3-mul.dmg
    Updating media info for: {796659A8-114A-4E16-9994-14DF6A1B1683}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeUtilities3-mul/AdobeUtilities3-mul.dmg
    Updating media info for: {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-Core/AdobePhotoshop12-Core.dmg
    Updating media info for: {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePhotoshop12-en_GB/AdobePhotoshop12-en_GB.dmg
    Updating media info for: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFSettings10-ja_JP/AdobePDFSettings10-ja_JP.dmg
    Updating media info for: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCSXSExtensions2-mul/AdobeCSXSExtensions2-mul.dmg
    Updating media info for: {8D3FB5B0-395D-11DF-AEA7-642B2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppLang-en_US/AdobeInDesign7AppLang-en_US.dmg
    Updating media info for: {9032BC04-1CB6-11DF-8041-A9C0CF51210B}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeToolhints-mul/AdobeToolhints-mul.dmg
    Updating media info for: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeOutputModuleAll/AdobeOutputModuleAll.dmg
    Updating media info for: {935FF832-3963-11DF-9CE8-97BA2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppFSet-Roman/AdobeInDesign7AppFSet-Roman.dmg
    Updating media info for: {955EB78F-C938-4EA8-8470-C6EA71685834}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AIR2_Flash11-en_US/AIR2_Flash11-en_US.dmg
    Updating media info for: {9BE768D2-3963-11DF-B0A5-B7BA2C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppBase2-mul/AdobeInDesign7AppBase2-mul.dmg
    Updating media info for: {9EEF9016-4356-11DF-9781-28A32C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7AppBase-mul/AdobeInDesign7AppBase-mul.dmg
    Updating media info for: {A2502D10-2D75-4620-8A8B-73F39D5C1243}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFSettings10-mul/AdobePDFSettings10-mul.dmg
    Updating media info for: {A44863BF-8DB8-4D22-88DB-5A02BE319840}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeLinguisticsAll/AdobeLinguisticsAll.dmg
    Updating media info for: {A4747434-3965-11DF-B081-A0842D404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeInDesign7CommonBase-mul/AdobeInDesign7CommonBase-mul.dmg
    Updating media info for: {A4EE8093-4250-4D8B-BDE4-A4675BB44953}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlashCatalyst-mul/AdobeFlashCatalyst-mul.dmg
    Updating media info for: {A8798E04-96FF-4564-9157-0D4C89CB794C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDynamiclinkSupport5All/AdobeDynamiclinkSupport5All.dmg
    Updating media info for: {B4975576-60AD-4181-AED4-253FC150B404}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeIllustrator15en_USLanguagePack/AdobeIllustrator15en_USLanguagePack. dmg
    Updating media info for: {B60B8713-F828-44F9-BEEE-7596F814E540}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorEU_Recommended3-mul/AdobeColorEU_Recommended3-mul.dmg
    Updating media info for: {BAE5212B-6651-4AD8-B26A-1B284D2665C6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobePDFL9.9-mul/AdobePDFL9.9-mul.dmg
    Updating media info for: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeCMaps3-mul/AdobeCMaps3-mul.dmg
    Updating media info for: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorNA_ExtraSettings3-mul/AdobeColorNA_ExtraSettings3-mul.dmg
    Updating media info for: {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/FPPluginMac_STI/FPPluginMac_STI.dmg
    Updating media info for: {CBDD7465-CE11-4A58-9497-C370B65923F1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFontsRequired-mul/AdobeFontsRequired-mul.dmg
    Updating media info for: {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDesignPremium5-mul/AdobeDesignPremium5-mul.dmg
    Updating media info for: {CFC9F871-7C40-40B6-BE4A-B98A5B309716}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFlash11-mul/AdobeFlash11-mul.dmg
    Updating media info for: {D26EEF95-420A-4726-B85D-AFBE752EF526}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorNA_Recommended3-mul/AdobeColorNA_Recommended3-mul.dmg
    Updating media info for: {D31D91FE-F0E8-4DF1-812C-9400BE92A386}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorPhotoshop3-mul/AdobeColorPhotoshop3-mul.dmg
    Updating media info for: {DC541ECE-2FFE-11DF-823C-BF762D404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeBuzzword-mul/AdobeBuzzword-mul.dmg
    Updating media info for: {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeDreamweaver11-mul/AdobeDreamweaver11-mul.dmg
    Updating media info for: {E39A5ABD-516B-46F9-A042-694BBA6A4E08}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeFontsRecommended-mul/AdobeFontsRecommended-mul.dmg
    Updating media info for: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeExtensionManager5.0All/AdobeExtensionManager5.0All.dmg
    Updating media info for: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeColorJA_Recommended3-mul/AdobeColorJA_Recommended3-mul.dmg
    Updating media info for: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/TLF_Flash11-mul/TLF_Flash11-mul.dmg
    Updating media info for: {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/aifsdk-mac/aifsdk-mac.dmg
    Updating media info for: {FFEDE6AE-3052-11DF-89B7-E7102C404F28}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Adobe CS5 Design Premium
      Path: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium/payloads/AdobeReviewPanel2-mul/AdobeReviewPanel2-mul.dmg
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0: 1 (0,11)
      {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0: 2 (0,4)
      {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0: 3 (0,5)
      {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0: 4 (0,9)
      {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0: 5 (0,7)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 5 (0,7)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 5 (0,7)
      {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0: 6 (0,6)
      {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0: 7 (0,5)
      {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0: 8 (0,4)
      {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0: 8 (0,4)
      {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0: 9 (0,9)
      {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0: 10 (0,7)
      {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0: 11 (0,6)
      {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0: 12 (2,6)
      {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0: 13 (1,4)
      {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0: 14 (0,6)
      {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0: 15 (0,4)
      {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0: 15 (0,4)
      {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0: 15 (0,4)
      {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0: 15 (0,4)
      {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0: 15 (0,4)
      {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0: 15 (0,4)
      {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0: 15 (0,4)
      {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0: 15 (0,4)
      {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0: 15 (0,4)
      {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0: 16 (0,1)
      {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0: 16 (0,1)
      {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0: 16 (0,1)
      {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0: 16 (0,1)
      {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0: 17 (1,1)
      {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0: 18 (0,7)
      {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0: 18 (0,7)
      {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0: 19 (0,5)
      {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0: 19 (0,5)
      {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0: 20 (3,5)
      {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0: 21 (0,0)
      {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0: 21 (0,0)
      {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0: 22 (0,4)
      {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0: 22 (0,4)
      {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0: 22 (0,4)
      {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0: 22 (0,4)
      {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0: 22 (0,4)
      {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0: 22 (0,4)
      {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0: 22 (0,4)
      {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0: 23 (12,4)
      {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0: 24 (0,3)
      {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0: 25 (1,3)
      {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15: 26 (0,2)
      {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0: 27 (1,2)
      {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0: 28 (0,1)
      {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0: 29 (0,0)
      {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0: 30 (0,1)
      {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0: 30 (0,1)
      {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0: 30 (0,1)
      {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0: 30 (0,1)
      {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0: 30 (0,1)
      {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0: 30 (0,1)
      {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0: 30 (0,1)
      {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0: 30 (0,1)
      {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0: 30 (0,1)
      {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0: 31 (1,0)
      {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0: 32 (11,0)
      {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0: 33 (15,0)
      {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0: 34 (0,0)
      {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0: 35 (16,0)
      {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0: 36 (0,0)
      {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0: 36 (0,0)
      {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0: 37 (35,0)
      {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0: 38 (0,0)
      {042F50EC-2C9E-43D8-B3D7-2BB204A20E44} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack 15.0.0.0: 38 (0,0)
      {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core 12.0.0.0: 39 (39,0)
      {69582206-7E5D-4476-A8F4-ECF90E9C8A69} Adobe Photoshop CS5 English Language Pack_AdobePhotoshop12-en_US 12.0.0.0: 40 (0,0)
      {87AFDFF2-D852-4B1F-ABFB-0EAFA5A39B7B} Adobe Photoshop CS5 International English Language Pack_AdobePhotoshop12-en_GB 12.0.0.0: 40 (0,0)
      {CFC9F871-7C40-40B6-BE4A-B98A5B309716} Adobe Flash CS5 11.0.0.0: 41 (44,0)
      {579FDC01-BA85-49E7-B16A-2C4CB55F7ACD} Adobe Flash CS5_AdobeMobileExtension_Flash11-mul 4.0.0.0: 42 (0,0)
      {14A2CC02-4638-405D-8190-ECD7BFD32D6E} Adobe Flash CS5_AdobeFlash11-en_USLanguagePack 11.0.0.0: 42 (0,0)
      {26B0DF8D-3A8D-4BA9-B131-3B0D9EE87655} Adobe Flash CS5_AdobeMobileExtension_Flash11-en_US 4.0.0.0: 42 (0,0)
      {9EEF9016-4356-11DF-9781-28A32C404F28} Adobe InDesign CS5 Application Base Files 7.0.0.0: 43 (47,0)
      {8D3FB5B0-395D-11DF-AEA7-642B2C404F28} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_US 7.0.0.0: 44 (0,0)
      {6E7E143C-395D-11DF-80BB-4B252C404F28} Adobe InDesign CS5 Application Language Files_AdobeInDesign7AppLang-en_GB 7.0.0.0: 44 (0,0)
      {68489BE8-3960-11DF-8F88-C4A72C404F28} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_US 7.0.0.0: 44 (0,0)
      {44EAE408-3960-11DF-ACCC-D8A62C404F28} Adobe InDesign CS5 Common Language Files_AdobeInDesign7CommonLang-en_GB 7.0.0.0: 44 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: /Applications
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: /Users/Jonathan/Desktop/cs5 dp/Adobe CS5 Design Premium
    Overwrite property "userASUPath" to: /Users/Jonathan/Applications/Adobe/OOBE/PDApp
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0 is: false
    Action string for {4687A306-D716-4D7A-B0AA-EAB65D17F149} Adobe Player for Embedding 3.1.0.0  is none
    Value returned on lookup of payload: {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0 is: false
    Action string for {796659A8-114A-4E16-9994-14DF6A1B1683} Adobe Utilities CS5 3.0.0.0  is none
    Value returned on lookup of payload: {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 is: false
    Action string for {3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0  is none
    Value returned on lookup of payload: {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0 is: false
    Action string for {3423F36D-004F-4DFC-8BCE-07A20B8DFBDE} Suite Shared Configuration CS5 2.0.0.0  is none
    Value returned on lookup of payload: {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0 is: false
    Action string for {02731921-5711-4E7A-A898-D6BCF0F2A1CD} Adobe CSXS Infrastructure CS5 2.0.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: false
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: false
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0 is: false
    Action string for {BAE5212B-6651-4AD8-B26A-1B284D2665C6} AdobePDFL CS5 9.9.0.0  is none
    Value returned on lookup of payload: {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0 is: false
    Action string for {925ED7E4-E1B6-4544-8141-1C98A18D2E2E} AdobeOutputModule 3.0.0.0  is none
    Value returned on lookup of payload: {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0 is: false
    Action string for {4FFA83C0-007A-4DB3-955C-B5EEE73BEDAF} Adobe SwitchBoard 2.0 2.0.0.0  is none
    Value returned on lookup of payload: {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0 is: false
    Action string for {A8798E04-96FF-4564-9157-0D4C89CB794C} DynamiclinkSupport 5.0.0.0  is none
    Value returned on lookup of payload: {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0 is: false
    Action string for {298CF0B0-8B47-46DF-B726-8E4BFAD5432E} AdobeHelp 0.0.0.0  is none
    Value returned on lookup of payload: {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0 is: false
    Action string for {E4E188D2-27D5-4E4C-92CE-87F9D24AD2F6} Adobe Extension Manager CS5 5.0.0.0  is none
    Value returned on lookup of payload: {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0 is: false
    Action string for {6A2E619B-E4AC-433B-A648-D458CE543A96} Adobe XMP Panels CS5 3.0.0.0  is none
    Value returned on lookup of payload: {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0 is: false
    Action string for {5A60CD44-B38B-47CD-BE38-219C81AE3345} Adobe ExtendScript Toolkit CS5 3.5.0.0  is none
    Value returned on lookup of payload: {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 is: false
    Action string for {37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0  is none
    Value returned on lookup of payload: {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0 is: false
    Action string for {8CCA90E1-F5BA-456F-84BF-AD5FB2CCE13F} Adobe CSXS Extensions CS5 2.0.0.0  is none
    Value returned on lookup of payload: {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0 is: false
    Action string for {007A2A28-D6A8-4D91-9A2B-568FF8052215} Adobe WinSoft Linguistics Plugin CS5 1.2.0.0  is none
    Value returned on lookup of payload: {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0 is: false
    Action string for {39CB2E53-5326-4939-8B5A-0402C6EFBFE3} AdobeColorCommonSetCMYK 3.0.0.0  is none
    Value returned on lookup of payload: {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0 is: false
    Action string for {78A53622-CDBA-49D1-A3D0-D563FB398D0C} AdobeColorCommonSetRGB 3.0.0.0  is none
    Value returned on lookup of payload: {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0 is: false
    Action string for {6F29BE46-E5F3-4146-8A84-20301E5C985A} AdobeColorEU CS5 3.0.0.0  is none
    Value returned on lookup of payload: {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0 is: false
    Action string for {B60B8713-F828-44F9-BEEE-7596F814E540} AdobeColorEU CS5 3.0.0.0  is none
    Value returned on lookup of payload: {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0 is: false
    Action string for {54F4466A-091A-46DA-B697-43D55CEF9DF6} AdobeColorJA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0 is: false
    Action string for {E5087BCA-6496-47A7-B9C4-B85D1CF062AE} AdobeColorJA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0 is: false
    Action string for {BEC5B482-32A1-43E0-B7F7-9BF9592A1069} AdobeColorNA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0 is: false
    Action string for {D26EEF95-420A-4726-B85D-AFBE752EF526} AdobeColorNA CS5 3.0.0.0  is none
    Value returned on lookup of payload: {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0 is: false
    Action string for {9BE768D2-3963-11DF-B0A5-B7BA2C404F28} Adobe InDesign CS5 Application Base Files2 7.0.0.0  is none
    Value returned on lookup of payload: {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0 is: false
    Action string for {935FF832-3963-11DF-9CE8-97BA2C404F28} Adobe InDesign CS5 Application Feature Set Files 7.0.0.0  is none
    Value returned on lookup of payload: {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0 is: false
    Action string for {A4747434-3965-11DF-B081-A0842D404F28} Adobe InDesign CS5 Common Base Files 7.0.0.0  is none
    Value returned on lookup of payload: {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0 is: false
    Action string for {0A6FC585-E761-4776-A4F3-BDA1E4FE1B7A} Adobe Photoshop CS5 Support 12.0.0.0  is none
    Value returned on lookup of payload: {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0 is: false
    Action string for {F8918124-1CFB-4AB9-9BC2-39B961DBBBEE} Pixel Bender Toolkit 2.0.0.0  is none
    Value returned on lookup of payload: {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0 is: false
    Action string for {2C8C0585-5083-4032-94B8-A9AD04ED0716} Adobe AIR 1.5.3.0  is none
    Value returned on lookup of payload: {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0 is: false
    Action string for {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0  is none
    Value returned on lookup of payload: {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0 is: false
    Action string for {A44863BF-8DB8-4D22-88DB-5A02BE319840} Adobe Linguistics CS5 5.0.0.0  is none
    Value returned on lookup of payload: {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0 is: false
    Action string for {FFEDE6AE-3052-11DF-89B7-E7102C404F28} Adobe ReviewPanel CS5 2.0.0.0  is none
    Value returned on lookup of payload: {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0 is: false
    Action string for {6E505C8F-2896-11DF-9B64-0013724DD917} DeviceCentral 3.0.0.0  is none
    Value returned on lookup of payload: {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0 is: false
    Action string for {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0  is none
    Payload {41372141-B568-4B5A-80DD-649980B825AC} DeviceCentral_DeviceCentral3LP-en_GB 3.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0 is: false
    Action string for {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0  is none
    Payload {3E7A8DA8-0298-42F2-B927-4DB00E2F8FEE} DeviceCentral_DeviceCentral3LP-en_US 3.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0 is: false
    Action string for {66173EC7-974E-4652-9468-4A93D2481BF0} CSXS Story Extension 1.0.0.0  is none
    Value returned on lookup of payload: {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0 is: false
    Action string for {1EC2407F-6A7B-4A3C-9F46-C812EE3D44FD} HIL Help Search 1.0.0.0  is none
    Value returned on lookup of payload: {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0 is: false
    Action string for {8B4C951B-F853-4B05-B892-9D5B3CD8AC98} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0 is: false
    Action string for {A2502D10-2D75-4620-8A8B-73F39D5C1243} PDF Settings CS5 10.0.0.0  is none
    Value returned on lookup of payload: {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0 is: false
    Action string for {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0  is none
    Value returned on lookup of payload: {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0 is: false
    Action string for {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0  is none
    Value returned on lookup of payload: {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0 is: false
    Action string for {03EEF3DA-71F9-4FE5-92AD-D10142E26459} SiteCatalyst NetAverages 1.0.0.0  is none
    Value returned on lookup of payload: {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0 is: false
    Action string for {0D067D13-C3D7-4EA6-B346-740CD91FD547} Adobe Bridge CS5 4.0.0.0  is none
    Value returned on lookup of payload: {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0 is: false
    Action string for {5E08533A-2C1B-469D-AFD5-953C9D00031F} Adobe BrowserLab CS Live 1.0.0.0  is none
    Value returned on lookup of payload: {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0 is: false
    Action string for {47DF3210-E261-4D06-A073-92F6C426C352} Adobe Media Encoder CS5 5.0.0.0  is none
    Value returned on lookup of payload: {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15 is: false
    Action string for {C7BDD22E-AD27-4B06-BEB9-F97BC4D89671} Flash Player 10.1.52.15  is none
    Value returned on lookup of payload: {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0 is: false
    Action string for {4438C826-1FD0-4D04-A70B-24FE1580AB21} Adobe Mini Bridge CS5 1.0.0.0  is none
    Value returned on lookup of payload: {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0 is: false
    Action string for {30221E3E-4C47-4560-A296-DD9ABB500C21} AIR2 For Adobe Flash Pro 2.0.0.0  is none
    Value returned on lookup of payload: {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0 is: false
    Action string for {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0  is none
    Payload {955EB78F-C938-4EA8-8470-C6EA71685834} AIR2 For Adobe Flash Pro_AIR2_Flash11-en_US 2.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0 is: false
    Action string for {DC541ECE-2FFE-11DF-823C-BF762D404F28} Adobe Buzzword CS5 1.0.0.0  is none
    Value returned on lookup of payload: {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0 is: false
    Action string for {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0  is none
    Value returned on lookup of payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0 is: false
    Action string for {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0  is none
    Value returned on lookup of payload: {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0 is: false
    Action string for {9032BC04-1CB6-11DF-8041-A9C0CF51210B} Adobe Toolhints CS5 1.0.0.0  is none
    Value returned on lookup of payload: {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0 is: false
    Action string for {D31D91FE-F0E8-4DF1-812C-9400BE92A386} AdobeColorPhotoshop CS5 3.0.0.0  is none
    Value returned on lookup of payload: {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0 is: false
    Action string for {73A4DC5E-226E-42BA-8ECA-2822592AC044} AdobeColorVideoProfilesCS CS5 3.0.0.0  is none
    Value returned on lookup of payload: {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0 is: false
    Action string for {5C5F61E0-E13B-4FD6-9F4B-C034FFD0672A} Players For Adobe Flash Pro 10.0.0.0  is none
    Value returned on lookup of payload: {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0 is: false
    Action string for {F1599C36-2EAB-448F-B8F9-7DBEE9D5B345} TLF For Adobe Flash Pro 1.0.0.0  is none
    Value returned on lookup of payload: {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0 is: false
    Action string for {635DCFA5-3A47-4452-AEC7-D3B23FFE929D} iPhone Publishing 1.0.0.0  is none
    Value returned on lookup of payload: {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0 is: false
    Action string for {CDC977A9-B3BA-4320-BD28-96F2CC91B9E9} Creative Suite 5 Design Premium 5.0.0.0  is install
    Value returned on lookup of payload: {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0 is: false
    Action string for {A4EE8093-4250-4D8B-BDE4-A4675BB44953} Adobe Flash Catalyst CS5 1.0.0.0  is install
    Value returned on lookup of payload: {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0 is: false
    Action string for {DD5B1FAF-47FA-4B6D-A31C-5E313EB0DD07} Adobe Dreamweaver CS5 11.0.0.0  is none
    Value returned on lookup of payload: {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0 is: false
    Action string for {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0  is none
    Payload {2D5B4A04-0A9F-4FB9-862A-C49400325A90} Adobe Dreamweaver CS5_AdobeDreamweaver11en_USLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0 is: false
    Action string for {755A9707-8A74-4B18-A6FD-F80F5893BDF2} Adobe Fireworks CS5 11.0.0.0  is install
    Value returned on lookup of payload: {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0 is: false
    Action string for {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0  is none
    Payload {4822EB30-22F2-48A8-9B15-C6DF34BA9CE4} Adobe Fireworks CS5_AdobeFireworks11en_USLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0 is: false
    Action string for {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0  is none
    Payload {27C5BA7B-6EE7-4DFE-A0F0-8E1D6552C5B0} Adobe Fireworks CS5_AdobeFireworks11en_GBLanguagePack 11.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0 is: false
    Action string for {6A75E573-6909-4D48-BDFA-D8ED118605A5} Adobe Illustrator CS5 15.0.0.0  is install
    Value returned on lookup of payload: {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0 is: false
    Action string for {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0  is none
    Payload {B4975576-60AD-4181-AED4-253FC150B404} Adobe Illustrator CS5_AdobeIllustrator15en_USLanguagePack 15.0.0.0 is extension payload. Aligning its action according to parent.
    Value returned on lookup of payload: {042F50EC-2C9E-43D8-B3D7-2BB204A20E44} Adobe Illustrator CS5_AdobeIllustrator15en_GBLanguagePack 15.0.0.0 is: false
    Acti

    In case your User home directory is mapped to any network location try changing it temporarily to default location on your local machine and then run the installer.
    If it still fails try creating a new user account and then run the installer from new user account.

  • Flash Player Auto Upgrade ver 14, Won't Install: Error- Unable to Register

    The Flash Player Upgrade attempted to install but stopped and gave me an error: Unable to Register. I have been all through the forums and I believe I have tried everything suggested.  These have been my attemptsOS - Windows XP Pro, latest updates loaded.
    1- I read a suggestion to attempt a "clean install" .  I watched the YOUTUBE video that was on the page and followed it exactly.  Attempted to re-install ver 14, and recieved the same error. this is the link to the page I followed: Can not install Adobe Flash Player. Error messages are "Failed to - Microsoft Community
    2- I also downloaded the SubInACL file and the  reset_fp10.zip file, followed the instructions and ran the file.  Attempted to re-install ver 14 and got the same error, unable/failed to register.
    3- I have attempted this numerous ways, rebooting the computer in between each change, re-booting after I did all, and nothing seems to work.
    4- Downloaded Mozilla Firefox  at someones suggestion, attempted to download and install, still the same error.
    5- When I open AOL, it attempts to install Flash Runtime and the same thing happens.  Error, Failed to Register.
    6- Purchased a Registry Editor/Cleaner.  Ran this cleaner and it did speed up my computer.  Did clean uninstall of Flash Player making sure no files were on my computer. Same error.
    7- Finally, contacted Adobe by phone.  The tell me they can help and try to fix the problem, but it will cost me $39.95 per instance. And, I didn't get any warm feeling that there was a gaurantee that they could fix it. In fact, i could hardly understand the indian speaking tech support.
    8- I also was told that after 1pm EDT, the new Adobe help page would be up and there would be a fix on it.  Now, 3:20 EDT, and the page is still not up.
    Anyone have any suggestions to fix this.  I want to avoud the "F" word ,,, Format and re-install from scratch just to get this fixed.

    I'm using WinXP (Home Edition) with Service Pack 3, and IE ver 8.  When I tried the auto upgrade to Ver 14, I got the same results as you -- "failed to register".  What tickes me off the most is that the auto upgrade deleted the previous version of FlashPlayer that worked fine.  Now I get no flash content using IE8,
    Like you, I tried to install a previous version of FlashPlayer and got the idotic response "you need to install the latest version, Ver 14" which caused all the problems.
    Maybe the brainworks at Adobe can develop a fix soon.
    If not, I will never install another Adobe product on my newer Win8 computer.

  • JET install: ERROR: Unable to configure network interface Exiting to shell

    Using SUNWjet v4.4.4 I'm trying to build a server using update 5 x86 which seems
    to work with one notable exception. The JET server and the build server do not
    reside on the same subnet. In order to get around not being able use PXE boot
    to boot the build server I'm booting from DVD after making the following modifications
    to the grub menu entry:
    kernel /I86PC.Solaris_10-1/multiboot kernel/unix - install nowin -B
    install_config=x.x.x.x:/opt/SUNWjet,
    sysid_config=x.x.x.x:/opt/SUNWjet/Clients/testclient,
    install_media=x.x.x.x:/export/install/media/s10u5-x86,
    install_boot=x.x.x.x:/export/install/media/s10u5-x86/boot
    This seems to kick off the installer however it fails to bring up the network interface:
    SunOS release
    Configuring devices
    Solaris Interactive Text ( Console Session )
    ERROR: Unable to configure network interface Exiting to shell
    # ifconfig bge0 x.x.x.x up netmask 255.255.255.0
    # route add default x.x.x.1
    # exit
    Using RPC
    Installation continues without any errors
    It seems that I'm forced to bring up the interface manually each time.
    This is what the template looks like:
    base_config_ClientArch=i86pc
    base_config_ClientEther=XX:XX:XX:XX:XX:XX
    base_config_ClientOS=s10u5-x86
    base_config_client_allocation="grub"
    base_config_products="custom eiscd sds"
    base_config_sysidcfg_nameservice=NONE
    base_config_sysidcfg_network_interface=PRIMARY
    base_config_sysidcfg_ip_address=x.x.x.x
    base_config_sysidcfg_netmask=255.255.255.0
    base_config_sysidcfg_root_password="XXXXXXXXXXXX"
    base_config_sysidcfg_system_locale="en_CA.UTF-8"
    base_config_sysidcfg_timeserver=
    base_config_sysidcfg_timezone="Canada/Eastern"
    base_config_sysidcfg_terminal=vt100
    base_config_sysidcfg_security_policy=NONE
    base_config_sysidcfg_protocol_ipv6=no
    base_config_sysidcfg_default_route=x.x.x.1
    I've also tried setting the following:
    base_config_sysidcfg_network_interface=PRIMARY
    vs
    base_config_sysidcfg_network_interface=bge0
    I don't mind doing this manually but of course I would much rather have it work automatically.

    Try giving more network interface settings in the sysidcfg settings:
    network_interface=value {primary hostname=host_name
                              default_route=ip_address or NONE
                              ip_address=ip_address
                              netmask=netmask
                              protocol_ipv6=yes_or_no}
    See http://docs.sun.com/app/docs/doc/817-5504/6mkv4nh2r?a=view

  • 11gr2 silent install error - Unable to create a new central inventory direc

    I am working on SLES 11 SP2 on zLinux and I am trying to install oracle 11gr2 silently. I was able to install the GI and it is running but when I try to install the oracle binaries I keep getting this error:
    [FATAL] [INS-32035] Unable to create a new central inventory directory : /opt/oraInventory.
    CAUSE: The central inventory location provided is not empty.
    The GI install created /opt/oraInventory and all the files are in there. I even changed the owner from grid:oinstall to oracle:oinstall but that did not help. When I did the install on SLES 11 SP1 I did not get this error.
    I am running this command to install oracle: /runInstaller -silent -ignorePrereq -showProgress -waitForCompletion -responseFile /tmp/db_install.rsp
    drwxrwx--- 6 oracle oinstall 4096 Apr 2 10:42 oraInventory
    drwxrwx--- 2 oracle oinstall 4096 Apr 2 10:39 ContentsXML
    drwxrwx--- 3 oracle oinstall 4096 Apr 2 10:41 backup
    drwxrwx--- 2 oracle oinstall 4096 Apr 2 10:41 logs
    -rw-rw-r-- 1 oracle oinstall 52 Apr 2 10:41 oraInst.loc
    -rwxrwx--- 1 oracle oinstall 1650 Apr 2 10:41 orainstRoot.sh
    drwxrwx--- 2 oracle oinstall 4096 Apr 2 10:38 oui
    cat oraInst.loc
    inventory_loc=/opt/oraInventory
    inst_group=oinstall

    That was my last resort because the support is horrible. I am getting the same error during the GUI install also if that makes a difference. Its like the oracle install does not know about the Grid installed already in oraInventory.

  • PROBLEM SOLVED--CS5 WIN7 X64 INSTALL ERROR DEPENDENCY FAILURE

    PROBLEM SOLVED!!!!!!!!!!!!
    I just spent 9  hours straight on this, but will was stronger than "its". Now I have  both cs4 and cs5, but hopefully it will work if you just have cs5 as  well. I also did not try runnning cs5 installer first after implementing  the fix, maybe that will work too..And when getting the cs5 error, I  went to re-install cs4 but got an error as well so that is why I took  the steps I did. On 7x64 do the followin
    First  run the cs5 cleanup tool and reboot.
    Second,  go into c:\program file(x86)\common files\adobe\installers . Delete  everything in it
    Then go into you registry  (start, run, then type regedit) and expand to this registry key:  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\ Components  ...(if this isnt there, try an install again, then go to the folder  that you deleted the files from a moment ago and extract the log from  the zip file and open it and go to the end. where it says error 1402  will be followed by a unknown\components\(a bunch of numebers right  here)\(more numbers)  ...
    Copy the numbers  directly after the components\ and go back into registry and click edit  then "find" paste those numbers into the box and hit find..when you get  to the key, scroll ALL the way back up to components again. Right click  components and hit permissions.. Go to advanced and then the ownership  tab up top.. click edit, hightlight administrator(s), check the box to  "replace subcontainers" and click apply. respond yes to everything and  close that and hit apply again if asked. then click the add button above  the advanced button you just clicked. when the new box appears, click  advanced and then click find now. Highlight Administrators and SYSTEM  and hit OK. Then give both of them full rights and hit apply. Then click  advanced again and in the first window check the box that says "replace  all child objects...." and hit apply. accept the prompts and hit okay.
    Now  go into c:\windows and on the system32 folder, right click and go to  properties. Go to the security tab. Click advanced and then "owner" and  click edit. highlght administrators and check the box "replace all child  object....." again and hit apply.... 
    Now give  Administrators, SYSTEM, AND TrustedInstaller full rights by clicking  edit above the advanced tab in the first properties box.. Then click  advanced again and in the first window click replace all child  object....." again and hit apply.... 
    Now  do the same for the winsxs folder and (for good measure i did syswow64  but not sure if its necessary)... 
    Now you should  be able to install both versions..(as i said, I installed cs4 first,  maybe it was not necessary)... 
    If you dont  like the idea of just blindly giving administrators full rights to all  system folders, you can spend MANY MANY hours running the installs over  and over and getting the faulty registry value that caused it to fail  and create specific permissions for that and then go on to the next  value that fails......what a pain 
    Message was edited  by: DarkMatter78

    Thank you for this.
    I have been trying to install CS5 MC now for weeks. I first got it to install everything except After Effects and Premiere Pro. Then trying to follow all the suggestions on this forum I wound up not being able to install any part of it at all. Now..
    Well...following your kind suggestions as much to the letter as I could I have now been able to install everything...except Affter Effects and Premiere Pro. Sigh.
    At least I can get back to work on everything that doesn't require AE and PPro.  I still need to get them installed and working.

  • 8.1.7 install error: Unable to Setup Inventory

    I have problem with the installation of 8i 8.1.7.
    After the first Welcome , and the second Source and Destine, the next windows don't appear. The message "Unable to Setup Inventory, You may no have proper permissions" display.
    Oracle 8.1.7, for AIX 4.3.3

    I've run into this when I had 2 Oracle homes (each with a different user -- oracle & ias, but the same group -- oinstall). It was a permission problem.
    I'd check 2 things. First, that the ownership is correct. If not, fix by something along the lines of chown -R oracle.oinstall $ORACLE_HOME/oraInventory. Second, make sure the permissions are right on the directory. For the oraInventory directory, I usually do chmod -R 775 oraInventory (you could get away with a 755 as long as you only have one owner for the system, which sounds like the case -- I use the 775 because of the two owner issue I mentioned before). That should do it.

  • JRE Command Line Install - Error Opening File Java3BillDevices.jpg

    We are installing JRE using a command line script. We keep getting the following error. Is this a bug with the Installer package? Anyone know how to fix it?
    Error opening file C:\Users\USERID\AppData\LocalLow\Sun\Java\jre1.6.0_38\Java3BillDevices.jpg
    Error: 2
    JRE seems to install and work correctly, but the error is perplexing. We are of course installing with Administrative privileges. There are a bunch of posts on the interwebs about this, but nobody really seems to know how to fix it.
    OS: WIN7 64bit
    JRE: 1.6.0_38
    Install Command:
    C:\scripts\Java_JRE_1.6.0_38_32bit_W764\jre-6u38-windows-i586.exe /s INSTALLDIR=\C:\scripts\Java_JRE1.6.0_38_32bit_W764\" IEXPLORER=1 MOZILLA=1 STATIC=1 JAVAUPDATE=0 JU=0 UPDATECHECK=0 AUTOUPDATECHECK=0 /L C:\scripts\LOGS\Java_JRE1.6.0_38_32bit_W764_Install.txt

    On 30.12.2013 10:06, contentdevelopment wrote:
    >
    > Hi Laura,
    >
    > Thanks for your reply, I used to try this installer setupsp.exe, but it
    > prompted the following error:
    >
    > ---------------------------
    > Novell Client Support Pack Install
    > ---------------------------
    > Error: Unable to locate required Support Pack installation files.
    >
    > Attempted control INF: C:\491psp5_IR2\NLS\ENGLISH\SETUP2K.INF
    > Attempted install INF: C:\491psp5_IR2\NLS\ENGLISH\SETUP2K.INF
    > ---------------------------
    > OK
    > ---------------------------
    >
    > And there is no install.ini file in the 491psp5_IR2.zip.
    Please try the full client install:
    https://download.novell.com/Download...d=XBMCanfiNDY~
    CU,
    Massimo Rosen
    Novell Knowledge Partner
    No emails please!
    http://www.cfc-it.de

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • [SOLVED] Rad 7790+Catalyst = Error: unable to open display (null)

    Radeon HD 7790 + Catalyst = Error: unable to open display (null)
    Greetings,
    I've installed Arch 2 days ago(migrated from Fedora), but I'm still a newbie to linux, so please have patience.
    I've bought AMD Radeon HD 7790 recently and decided that it's time to upgrade system, but since then I had only problems with it. No LiveCD I tried (Fedora 20, Mint)  worked properly in graphics mode, so I suspected problem in built-in drivers and moved to linux with text-only installation (Arch), so I could install drivers later.
    I've followed wiki manual and installed catalyst, removed open source driver, added nomodeset parametr to GRUB etc. but I'm still stucked, because Xorg won't start(black screen and errors presented in Logs). Tried googling, but learned nothing except Radeon proprietary drivers are comparable to suicide.
    Versions:
    Kernel: 3-10.40-1-lts (catalyst_build_module sucessful)
    Catalyst: 14.4-10
    Xorg: 1.14.5-11
    Logs&Configs:
    lsmod
    fglrx 8672295 0
    amd_iommu_v2 7174 1 fglrx
    button 4765 1 fglrx
    fglrxinfo
    Error: unable to open display (null)
    Xorg.0.conf
    [ 2632.576]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 2632.594] X Protocol Version 11, Revision 0
    [ 2632.600] Build Operating System: Linux 3.12.6-1-ARCH x86_64
    [ 2632.606] Current Operating System: Linux localhost 3.10.40-1-lts #1 SMP Tue May 13 12:50:03 UTC 2014 x86_64
    [ 2632.606] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=4f60e723-44e9-4264-8d6c-ca62c43cf69c rw quiet nomodeset
    [ 2632.619] Build Date: 08 January 2014 01:35:51PM
    [ 2632.629]
    [ 2632.635] Current version of pixman: 0.32.4
    [ 2632.646] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2632.646] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2632.671] (==) Log file: "/var/log/Xorg.0.log", Time: Sun May 25 00:53:45 2014
    [ 2632.677] (==) Using config file: "/etc/X11/xorg.conf"
    [ 2632.684] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 2632.690] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2632.690] (==) ServerLayout "aticonfig Layout"
    [ 2632.690] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 2632.690] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 2632.690] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 2632.690] (==) Automatically adding devices
    [ 2632.690] (==) Automatically enabling devices
    [ 2632.690] (==) Automatically adding GPU devices
    [ 2632.690] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2632.690] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2632.690] Entry deleted from font path.
    [ 2632.690] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2632.690] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 2632.690] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2632.690] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2632.690] (II) Loader magic: 0x7fac20
    [ 2632.690] (II) Module ABI versions:
    [ 2632.690] X.Org ANSI C Emulation: 0.4
    [ 2632.690] X.Org Video Driver: 14.1
    [ 2632.690] X.Org XInput driver : 19.1
    [ 2632.691] X.Org Server Extension : 7.0
    [ 2632.692] (--) PCI:*(0:2:0:0) 1002:665c:1458:226a rev 0, Mem @ 0xc0000000/268435456, 0xde800000/8388608, 0xdffc0000/262144, I/O @ 0x0000e800/256, BIOS @ 0x????????/131072
    [ 2632.698] Initializing built-in extension Generic Event Extension
    [ 2632.704] Initializing built-in extension SHAPE
    [ 2632.710] Initializing built-in extension MIT-SHM
    [ 2632.717] Initializing built-in extension XInputExtension
    [ 2632.723] Initializing built-in extension XTEST
    [ 2632.728] Initializing built-in extension BIG-REQUESTS
    [ 2632.734] Initializing built-in extension SYNC
    [ 2632.740] Initializing built-in extension XKEYBOARD
    [ 2632.745] Initializing built-in extension XC-MISC
    [ 2632.751] Initializing built-in extension SECURITY
    [ 2632.756] Initializing built-in extension XINERAMA
    [ 2632.761] Initializing built-in extension XFIXES
    [ 2632.767] Initializing built-in extension RENDER
    [ 2632.772] Initializing built-in extension RANDR
    [ 2632.777] Initializing built-in extension COMPOSITE
    [ 2632.782] Initializing built-in extension DAMAGE
    [ 2632.787] Initializing built-in extension MIT-SCREEN-SAVER
    [ 2632.792] Initializing built-in extension DOUBLE-BUFFER
    [ 2632.797] Initializing built-in extension RECORD
    [ 2632.802] Initializing built-in extension DPMS
    [ 2632.806] Initializing built-in extension X-Resource
    [ 2632.811] Initializing built-in extension XVideo
    [ 2632.816] Initializing built-in extension XVideo-MotionCompensation
    [ 2632.821] Initializing built-in extension XFree86-VidModeExtension
    [ 2632.825] Initializing built-in extension XFree86-DGA
    [ 2632.830] Initializing built-in extension XFree86-DRI
    [ 2632.834] Initializing built-in extension DRI2
    [ 2632.834] (II) "glx" will be loaded by default.
    [ 2632.834] (II) LoadModule: "glx"
    [ 2632.834] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2632.835] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 2632.835] compiled for 6.9.0, module version = 1.0.0
    [ 2632.839] Loading extension GLX
    [ 2632.839] (II) LoadModule: "fglrx"
    [ 2632.839] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 2632.863] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 2632.863] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.863] Module class: X.Org Video Driver
    [ 2632.863] (II) Loading sub module "fglrxdrm"
    [ 2632.863] (II) LoadModule: "fglrxdrm"
    [ 2632.863] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2632.863] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2632.863] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.863] (II) AMD Proprietary Linux Driver Version Identifier:14.10.2
    [ 2632.864] (II) AMD Proprietary Linux Driver Release Identifier: 14.10.1006
    [ 2632.864] (II) AMD Proprietary Linux Driver Build Date: Apr 17 2014 21:15:33
    [ 2632.864] (--) using VT number 2
    [ 2632.885] (WW) Falling back to old probe method for fglrx
    [ 2632.899] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 2632.901] ukiDynamicMajor: found major device number 250
    [ 2632.901] ukiDynamicMajor: found major device number 250
    [ 2632.901] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2632.901] ukiOpenDevice: node name is /dev/ati/card0
    [ 2632.901] ukiOpenDevice: open result is 11, (OK)
    [ 2632.901] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 2632.901] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2632.904] (--) Chipset Supported AMD Graphics Processor (0x665C) found
    [ 2632.904] (WW) fglrx: No matching Device section for instance (BusID PCI:0@2:0:1) found
    [ 2632.905] (II) fglrx(0): pEnt->device->identifier=0x11bea10
    [ 2632.905] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
    [ 2632.905] (II) Loading sub module "vgahw"
    [ 2632.905] (II) LoadModule: "vgahw"
    [ 2632.905] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 2632.905] (II) Module vgahw: vendor="X.Org Foundation"
    [ 2632.906] compiled for 1.14.5, module version = 0.1.0
    [ 2632.906] ABI class: X.Org Video Driver, version 14.1
    [ 2632.906] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 2632.906] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 2632.906] (==) fglrx(0): Default visual is TrueColor
    [ 2632.906] (**) fglrx(0): Option "DPMS" "true"
    [ 2632.906] (==) fglrx(0): RGB weight 888
    [ 2632.906] (II) fglrx(0): Using 8 bits per RGB
    [ 2632.906] (==) fglrx(0): Buffer Tiling is ON
    [ 2632.906] (II) Loading sub module "fglrxdrm"
    [ 2632.906] (II) LoadModule: "fglrxdrm"
    [ 2632.906] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 2632.906] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 2632.906] compiled for 1.4.99.906, module version = 14.10.2
    [ 2632.908] ukiDynamicMajor: found major device number 250
    [ 2632.908] ukiDynamicMajor: found major device number 250
    [ 2632.908] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2632.908] ukiOpenDevice: node name is /dev/ati/card0
    [ 2632.908] ukiOpenDevice: open result is 13, (OK)
    [ 2632.908] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 2632.908] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2632.908] (**) fglrx(0): NoAccel = NO
    [ 2632.909] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 2632.909] (--) fglrx(0): Chipset: "AMD Radeon HD 7700 Series" (Chipset = 0x665c)
    [ 2632.909] (--) fglrx(0): (PciSubVendor = 0x1458, PciSubDevice = 0x226a)
    [ 2632.909] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 2632.909] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
    [ 2632.909] (--) fglrx(0): MMIO registers at 0xdffc0000
    [ 2632.909] (--) fglrx(0): I/O port at 0x0000e800
    [ 2632.909] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 2632.909] (II) fglrx(0): AC Adapter is used
    [ 2632.914] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 2632.914] (II) Loading sub module "vbe"
    [ 2632.914] (II) LoadModule: "vbe"
    [ 2632.915] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 2632.915] (II) Module vbe: vendor="X.Org Foundation"
    [ 2632.915] compiled for 1.14.5, module version = 1.1.0
    [ 2632.915] ABI class: X.Org Video Driver, version 14.1
    [ 2632.915] (II) fglrx(0): VESA BIOS detected
    [ 2632.915] (II) fglrx(0): VESA VBE Version 3.0
    [ 2632.915] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 2632.915] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Software Rev: 15.32
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, Advanced Micro Devices, Inc.
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Product: BONAIRE
    [ 2632.915] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 2632.915] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
    [ 2632.915] (--) fglrx(0): Video RAM: 2097152 kByte, Type: GDDR5
    [ 2632.915] (II) fglrx(0): PCIE card detected
    [ 2632.915] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 2632.915] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 2632.915] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x80000000)
    [ 2632.915] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 2632.915] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 2632.915] (II) Loading sub module "fb"
    [ 2632.915] (II) LoadModule: "fb"
    [ 2632.916] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 2632.916] (II) Module fb: vendor="X.Org Foundation"
    [ 2632.916] compiled for 1.14.5, module version = 1.0.0
    [ 2632.916] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 2632.916] (II) fglrx(0): EDID Management option: EDID Management is enabled
    [ 2632.916] (II) Loading sub module "ddc"
    [ 2632.916] (II) LoadModule: "ddc"
    [ 2632.916] (II) Module "ddc" already built-in
    [ 2633.034] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
    [ 2633.034] (II) fglrx(0): Output DFP2 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP3 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP4 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP5 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP6 has no monitor section
    [ 2633.034] (II) fglrx(0): Output DFP7 has no monitor section
    [ 2633.034] (II) fglrx(0): Output CRT1 has no monitor section
    [ 2633.034] (II) Loading sub module "ddc"
    [ 2633.034] (II) LoadModule: "ddc"
    [ 2633.034] (II) Module "ddc" already built-in
    [ 2633.034] (II) fglrx(0): Connected Display0: CRT1
    [ 2633.034] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 2633.034] (II) fglrx(0): Manufacturer: GSM Model: 4b31 Serial#: 78077
    [ 2633.034] (II) fglrx(0): Year: 2007 Week: 7
    [ 2633.034] (II) fglrx(0): EDID Version: 1.3
    [ 2633.034] (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 2633.034] (II) fglrx(0): Sync: Separate Composite SyncOnGreen
    [ 2633.034] (II) fglrx(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 2633.034] (II) fglrx(0): Gamma: 2.20
    [ 2633.034] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 2633.034] (II) fglrx(0): First detailed timing is preferred mode
    [ 2633.034] (II) fglrx(0): redX: 0.639 redY: 0.342 greenX: 0.297 greenY: 0.615
    [ 2633.034] (II) fglrx(0): blueX: 0.146 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    [ 2633.034] (II) fglrx(0): Supported established timings:
    [ 2633.034] (II) fglrx(0): 720x400@70Hz
    [ 2633.034] (II) fglrx(0): 640x480@60Hz
    [ 2633.034] (II) fglrx(0): 640x480@67Hz
    [ 2633.034] (II) fglrx(0): 640x480@72Hz
    [ 2633.034] (II) fglrx(0): 640x480@75Hz
    [ 2633.034] (II) fglrx(0): 800x600@56Hz
    [ 2633.034] (II) fglrx(0): 800x600@60Hz
    [ 2633.034] (II) fglrx(0): 800x600@72Hz
    [ 2633.034] (II) fglrx(0): 800x600@75Hz
    [ 2633.034] (II) fglrx(0): 832x624@75Hz
    [ 2633.034] (II) fglrx(0): 1024x768@60Hz
    [ 2633.034] (II) fglrx(0): 1024x768@70Hz
    [ 2633.034] (II) fglrx(0): 1024x768@75Hz
    [ 2633.035] (II) fglrx(0): 1280x1024@75Hz
    [ 2633.035] (II) fglrx(0): 1152x864@75Hz
    [ 2633.035] (II) fglrx(0): Manufacturer's mask: 0
    [ 2633.035] (II) fglrx(0): Supported standard timings:
    [ 2633.035] (II) fglrx(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273
    [ 2633.035] (II) fglrx(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293
    [ 2633.035] (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    [ 2633.035] (II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2633.035] (II) fglrx(0): Supported detailed timing:
    [ 2633.035] (II) fglrx(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 2633.035] (II) fglrx(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 2633.035] (II) fglrx(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 2633.035] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
    [ 2633.035] (II) fglrx(0): Monitor name: L1918S
    [ 2633.035] (II) fglrx(0): Monitor name:
    [ 2633.035] (II) fglrx(0): EDID (in hex):
    [ 2633.035] (II) fglrx(0): 00ffffffffffff001e6d314bfd300100
    [ 2633.035] (II) fglrx(0): 071101036e261e78eaa2a5a3574c9d25
    [ 2633.035] (II) fglrx(0): 115054bfef80314f454f614f81800101
    [ 2633.035] (II) fglrx(0): 010101010101302a009851002a403070
    [ 2633.035] (II) fglrx(0): 1300782d1100001e000000fd00384b1e
    [ 2633.035] (II) fglrx(0): 530e000a202020202020000000fc004c
    [ 2633.035] (II) fglrx(0): 31393138530a202020202020000000fc
    [ 2633.035] (II) fglrx(0): 00200a202020202020202020202000e7
    [ 2633.035] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 2633.035] (II) fglrx(0): Dynamic Surface Resizing Enabled
    [ 2633.036] (II) fglrx(0): EDID for output DFP1
    [ 2633.036] (II) fglrx(0): EDID for output DFP2
    [ 2633.036] (II) fglrx(0): EDID for output DFP3
    [ 2633.036] (II) fglrx(0): EDID for output DFP4
    [ 2633.036] (II) fglrx(0): EDID for output DFP5
    [ 2633.036] (II) fglrx(0): EDID for output DFP6
    [ 2633.036] (II) fglrx(0): EDID for output DFP7
    [ 2633.036] (II) fglrx(0): EDID for output CRT1
    [ 2633.036] (II) fglrx(0): Manufacturer: GSM Model: 4b31 Serial#: 78077
    [ 2633.036] (II) fglrx(0): Year: 2007 Week: 7
    [ 2633.036] (II) fglrx(0): EDID Version: 1.3
    [ 2633.036] (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 2633.036] (II) fglrx(0): Sync: Separate Composite SyncOnGreen
    [ 2633.036] (II) fglrx(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 2633.036] (II) fglrx(0): Gamma: 2.20
    [ 2633.036] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 2633.036] (II) fglrx(0): First detailed timing is preferred mode
    [ 2633.036] (II) fglrx(0): redX: 0.639 redY: 0.342 greenX: 0.297 greenY: 0.615
    [ 2633.036] (II) fglrx(0): blueX: 0.146 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    [ 2633.036] (II) fglrx(0): Supported established timings:
    [ 2633.036] (II) fglrx(0): 720x400@70Hz
    [ 2633.036] (II) fglrx(0): 640x480@60Hz
    [ 2633.036] (II) fglrx(0): 640x480@67Hz
    [ 2633.036] (II) fglrx(0): 640x480@72Hz
    [ 2633.036] (II) fglrx(0): 640x480@75Hz
    [ 2633.036] (II) fglrx(0): 800x600@56Hz
    [ 2633.036] (II) fglrx(0): 800x600@60Hz
    [ 2633.036] (II) fglrx(0): 800x600@72Hz
    [ 2633.036] (II) fglrx(0): 800x600@75Hz
    [ 2633.036] (II) fglrx(0): 832x624@75Hz
    [ 2633.037] (II) fglrx(0): 1024x768@60Hz
    [ 2633.037] (II) fglrx(0): 1024x768@70Hz
    [ 2633.037] (II) fglrx(0): 1024x768@75Hz
    [ 2633.037] (II) fglrx(0): 1280x1024@75Hz
    [ 2633.037] (II) fglrx(0): 1152x864@75Hz
    [ 2633.037] (II) fglrx(0): Manufacturer's mask: 0
    [ 2633.037] (II) fglrx(0): Supported standard timings:
    [ 2633.037] (II) fglrx(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273
    [ 2633.037] (II) fglrx(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293
    [ 2633.037] (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    [ 2633.037] (II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 2633.037] (II) fglrx(0): Supported detailed timing:
    [ 2633.037] (II) fglrx(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 2633.037] (II) fglrx(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 2633.037] (II) fglrx(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 2633.037] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
    [ 2633.037] (II) fglrx(0): Monitor name: L1918S
    [ 2633.037] (II) fglrx(0): Monitor name:
    [ 2633.037] (II) fglrx(0): EDID (in hex):
    [ 2633.037] (II) fglrx(0): 00ffffffffffff001e6d314bfd300100
    [ 2633.037] (II) fglrx(0): 071101036e261e78eaa2a5a3574c9d25
    [ 2633.037] (II) fglrx(0): 115054bfef80314f454f614f81800101
    [ 2633.037] (II) fglrx(0): 010101010101302a009851002a403070
    [ 2633.037] (II) fglrx(0): 1300782d1100001e000000fd00384b1e
    [ 2633.037] (II) fglrx(0): 530e000a202020202020000000fc004c
    [ 2633.037] (II) fglrx(0): 31393138530a202020202020000000fc
    [ 2633.037] (II) fglrx(0): 00200a202020202020202020202000e7
    [ 2633.037] (II) fglrx(0): Printing probed modes for output CRT1
    [ 2633.037] (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 2633.037] (II) fglrx(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x960"x75.0 135.00 1280 1296 1440 1688 960 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1328 1440 1688 960 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x768"x75.0 135.00 1280 1296 1440 1688 768 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x768"x60.0 108.00 1280 1328 1440 1688 768 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x720"x75.0 135.00 1280 1296 1440 1688 720 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1280x720"x60.0 108.00 1280 1328 1440 1688 720 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x70.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x72.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x72.0 31.50 640 656 696 832 480 481 484 520 -hsync -vsync (37.9 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x67.0 27.28 640 664 728 816 480 481 484 499 -hsync +vsync (33.4 kHz e)
    [ 2633.037] (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 2633.037] (II) fglrx(0): Output DFP1 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP2 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP3 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP4 disconnected
    [ 2633.037] (II) fglrx(0): Output DFP5 disconnected
    [ 2633.038] (II) fglrx(0): Output DFP6 disconnected
    [ 2633.038] (II) fglrx(0): Output DFP7 disconnected
    [ 2633.038] (II) fglrx(0): Output CRT1 connected
    [ 2633.038] (II) fglrx(0): Using exact sizes for initial modes
    [ 2633.038] (II) fglrx(0): Output CRT1 using initial mode 1280x1024
    [ 2633.038] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 2633.038] (II) fglrx(0): DPI set to (96, 96)
    [ 2633.038] (II) fglrx(0): Eyefinity capable adapter detected.
    [ 2633.038] (II) fglrx(0): Adapter AMD Radeon HD 7700 Series has 6 configurable heads and 1 displays connected.
    [ 2633.038] (==) fglrx(0): PseudoColor visuals disabled
    [ 2633.038] (II) Loading sub module "ramdac"
    [ 2633.038] (II) LoadModule: "ramdac"
    [ 2633.038] (II) Module "ramdac" already built-in
    [ 2633.038] (==) fglrx(0): NoDRI = NO
    [ 2633.038] (==) fglrx(0): Capabilities: 0x00000000
    [ 2633.038] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 2633.038] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 2633.038] (==) fglrx(0): UseFastTLS=0
    [ 2633.038] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
    [ 2633.038] (--) Depth 24 pixmap format is 32 bpp
    [ 2633.038] Loading extension ATIFGLRXDRI
    [ 2633.038] (II) fglrx(0): doing swlDriScreenInit
    [ 2633.038] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiDynamicMajor: found major device number 250
    [ 2633.039] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.039] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.039] ukiOpenDevice: open result is 14, (OK)
    [ 2633.039] ukiOpenByBusid: ukiOpenMinor returns 14
    [ 2633.039] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.039] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 2633.039] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:2:0:0"
    [ 2633.039] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x3c000
    [ 2633.039] (II) fglrx(0): [uki] mapped SAREA 0x3c000 to 0x7f000fd0d000
    [ 2633.039] (II) fglrx(0): [uki] framebuffer handle = 0x3d000
    [ 2633.039] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 2633.039] (II) fglrx(0): swlDriScreenInit done
    [ 2633.039] (II) fglrx(0): Kernel Module Version Information:
    [ 2633.039] (II) fglrx(0): Name: fglrx
    [ 2633.039] (II) fglrx(0): Version: 14.10.2
    [ 2633.039] (II) fglrx(0): Date: Apr 17 2014
    [ 2633.039] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
    [ 2633.039] (II) fglrx(0): Kernel Module version matches driver.
    [ 2633.039] (II) fglrx(0): Kernel Module Build Time Information:
    [ 2633.039] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.10.40-1-lts
    [ 2633.039] (II) fglrx(0): Build-Kernel MODVERSIONS: yes
    [ 2633.039] (II) fglrx(0): Build-Kernel __SMP__: yes
    [ 2633.039] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 2633.039] (II) fglrx(0): [uki] register handle = 0x0003e000
    [ 2633.040] (II) fglrx(0): DRI initialization successfull
    [ 2633.040] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x01040000
    [ 2633.041] (==) fglrx(0): Backing store disabled
    [ 2633.041] Loading extension FGLRXEXTENSION
    [ 2633.041] (**) fglrx(0): DPMS enabled
    [ 2633.041] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 2633.041] (**) fglrx(0): Textured Video is enabled.
    [ 2633.041] (II) LoadModule: "glesx"
    [ 2633.042] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 2633.043] (II) Module glesx: vendor="X.Org Foundation"
    [ 2633.043] compiled for 1.4.99.906, module version = 1.0.0
    [ 2633.043] Loading extension GLESX
    [ 2633.043] (II) fglrx(0): GLESX enableFlags = 8784
    [ 2633.043] (II) fglrx(0): GLESX is enabled
    [ 2633.043] (II) LoadModule: "amdxmm"
    [ 2633.043] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 2633.043] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 2633.043] compiled for 1.4.99.906, module version = 2.0.0
    [ 2633.055] Loading extension AMDXVOPL
    [ 2633.055] Loading extension AMDXVBA
    [ 2633.055] (II) fglrx(0): Enable composite support successfully
    [ 2633.055] (WW) fglrx(0): Option "VendorName" is not used
    [ 2633.055] (WW) fglrx(0): Option "ModelName" is not used
    [ 2633.055] (II) fglrx(0): X context handle = 0x1
    [ 2633.055] (II) fglrx(0): [DRI] installation complete
    [ 2633.055] (==) fglrx(0): Silken mouse enabled
    [ 2633.056] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 2633.056] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2633.414] (--) RandR disabled
    [ 2633.432] ukiDynamicMajor: found major device number 250
    [ 2633.432] ukiDynamicMajor: found major device number 250
    [ 2633.432] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.432] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.432] ukiOpenDevice: open result is 15, (OK)
    [ 2633.432] ukiOpenByBusid: ukiOpenMinor returns 15
    [ 2633.432] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.432] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiDynamicMajor: found major device number 250
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.443] ukiOpenDevice: open result is 16, (OK)
    [ 2633.443] ukiGetBusid returned 'PCI:2:0:0'
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card1
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: Open failed
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card2
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.443] ukiOpenDevice: Open failed
    [ 2633.443] ukiOpenDevice: node name is /dev/ati/card3
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card4
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card5
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card6
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card7
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.444] ukiOpenDevice: Open failed
    [ 2633.444] ukiOpenDevice: node name is /dev/ati/card8
    [ 2633.444] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card9
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card10
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card11
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card12
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: Open failed
    [ 2633.445] ukiOpenDevice: node name is /dev/ati/card13
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.445] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card14
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card15
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.446] ukiOpenDevice: Open failed
    [ 2633.446] ukiDynamicMajor: found major device number 250
    [ 2633.446] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.446] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.446] ukiOpenDevice: open result is 16, (OK)
    [ 2633.446] ukiOpenByBusid: ukiOpenMinor returns 16
    [ 2633.446] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.525] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiDynamicMajor: found major device number 250
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.526] ukiOpenDevice: open result is 17, (OK)
    [ 2633.526] ukiGetBusid returned 'PCI:2:0:0'
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card1
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card2
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card3
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card4
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card5
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card6
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card7
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card8
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: Open failed
    [ 2633.526] ukiOpenDevice: node name is /dev/ati/card9
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.526] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card10
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card11
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card12
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card13
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card14
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card15
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: open result is -1, (No such device)
    [ 2633.527] ukiOpenDevice: Open failed
    [ 2633.527] ukiDynamicMajor: found major device number 250
    [ 2633.527] ukiOpenByBusid: Searching for BusID PCI:2:0:0
    [ 2633.527] ukiOpenDevice: node name is /dev/ati/card0
    [ 2633.527] ukiOpenDevice: open result is 17, (OK)
    [ 2633.527] ukiOpenByBusid: ukiOpenMinor returns 17
    [ 2633.527] ukiOpenByBusid: ukiGetBusid reports PCI:2:0:0
    [ 2633.546] (II) fglrx(0): OverDrive6 Detected!
    [ 2633.551] (II) fglrx(0): Setting screen physical size to 338 x 270
    [ 2633.594] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 2633.594] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2633.594] (II) LoadModule: "evdev"
    [ 2633.595] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2633.595] (II) Module evdev: vendor="X.Org Foundation"
    [ 2633.595] compiled for 1.14.3, module version = 2.8.2
    [ 2633.595] Module class: X.Org XInput Driver
    [ 2633.595] ABI class: X.Org XInput driver, version 19.1
    [ 2633.595] (II) Using input driver 'evdev' for 'Power Button'
    [ 2633.595] (**) Power Button: always reports core events
    [ 2633.595] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 2633.595] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2633.595] (--) evdev: Power Button: Found keys
    [ 2633.595] (II) evdev: Power Button: Configuring as keyboard
    [ 2633.595] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 2633.595] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 2633.595] (**) Option "xkb_rules" "evdev"
    [ 2633.595] (**) Option "xkb_model" "pc104"
    [ 2633.595] (**) Option "xkb_layout" "us"
    [ 2633.634] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2633.634] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2633.634] (II) Using input driver 'evdev' for 'Power Button'
    [ 2633.634] (**) Power Button: always reports core events
    [ 2633.634] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2633.634] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2633.634] (--) evdev: Power Button: Found keys
    [ 2633.634] (II) evdev: Power Button: Configuring as keyboard
    [ 2633.634] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 2633.634] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2633.634] (**) Option "xkb_rules" "evdev"
    [ 2633.634] (**) Option "xkb_model" "pc104"
    [ 2633.634] (**) Option "xkb_layout" "us"
    [ 2633.635] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event1)
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 2633.635] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event1"
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc051
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
    [ 2633.635] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 2633.635] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2633.635] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.0/input/input1/event1"
    [ 2633.635] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 8)
    [ 2633.635] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
    [ 2633.635] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
    [ 2633.635] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
    [ 2633.635] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA NVidia Line Out (/dev/input/event6)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.636] (II) config/udev: Adding input device HDA NVidia Line (/dev/input/event7)
    [ 2633.636] (II) No input driver specified, ignoring this device.
    [ 2633.636] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HDA NVidia Rear Mic (/dev/input/event8)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=10 (/dev/input/event10)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.637] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=9 (/dev/input/event11)
    [ 2633.637] (II) No input driver specified, ignoring this device.
    [ 2633.637] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=8 (/dev/input/event12)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event13)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event14)
    [ 2633.638] (II) No input driver specified, ignoring this device.
    [ 2633.638] (II) This device may have been added with another device file.
    [ 2633.638] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=11 (/dev/input/event9)
    [ 2633.639] (II) No input driver specified, ignoring this device.
    [ 2633.639] (II) This device may have been added with another device file.
    [ 2633.639] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2633.639] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2633.639] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2633.639] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2633.639] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2633.639] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2633.639] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2633.639] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2633.639] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2633.639] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 2633.639] (**) Option "xkb_rules" "evdev"
    [ 2633.639] (**) Option "xkb_model" "pc104"
    [ 2633.639] (**) Option "xkb_layout" "us"
    [ 2633.640] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2633.640] (II) No input driver specified, ignoring this device.
    [ 2633.640] (II) This device may have been added with another device file.
    [ 2635.885] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 2639.300] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 2639.300] (II) fglrx(0): Backup framebuffer data.
    [ 2639.333] (II) fglrx(0): Backup complete.
    [ 2653.729] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Logitech USB-PS/2 Optical Mouse: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Power Button: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.730] (II) evdev: Power Button: Close
    [ 2653.730] (II) UnloadModule: "evdev"
    [ 2653.732] (II) fglrx(0): Shutdown CMMQS
    [ 2653.735] (II) fglrx(0): [uki] removed 1 reserved context for kernel
    [ 2653.735] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x3c000 at 0x7f000fd0d000
    [ 2653.735] (EE)
    [ 2653.740] (EE) Backtrace:
    [ 2653.745] (EE) 0: Xorg (xorg_backtrace+0x3d) [0x57e04d]
    [ 2653.750] (EE) 1: Xorg (0x400000+0x181da9) [0x581da9]
    [ 2653.754] (EE) 2: /usr/lib/libpthread.so.0 (0x7f000f1e8000+0xf4b0) [0x7f000f1f74b0]
    [ 2653.759] (EE) 3: /usr/lib/libpciaccess.so.0 (0x7f000f406000+0x503e) [0x7f000f40b03e]
    [ 2653.765] (EE) 4: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_x_inb+0x46) [0x7f000bb46126]
    [ 2653.771] (EE) 5: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0x9e2e05) [0x7f000bb3ee05]
    [ 2653.776] (EE) 6: /usr/lib/xorg/modules/drivers/fglrx_drv.so (X86EMU_exec+0xa5) [0x7f000bb32555]
    [ 2653.782] (EE) 7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (amd_xs113_int10_xf86ExecX86int10+0x46) [0x7f000bb47286]
    [ 2653.788] (EE) 8: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xf86ExecX86int10+0xd) [0x7f000b56897d]
    [ 2653.793] (EE) 9: /usr/lib/xorg/modules/libvbe.so (VBESetVBEMode+0x9d) [0x7f000ab0163d]
    [ 2653.799] (EE) 10: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0x441623) [0x7f000b59d623]
    [ 2653.805] (EE) 11: /usr/lib/xorg/modules/drivers/fglrx_drv.so (atiddxVBESetConsoleMode+0x44) [0x7f000b59d474]
    [ 2653.811] (EE) 12: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxFreeScreen+0x73e) [0x7f000b6ffc1e]
    [ 2653.817] (EE) 13: /usr/lib/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxCloseScreen+0x321) [0x7f000b6ff241]
    [ 2653.823] (EE) 14: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0x7f000b15c000+0xa4a846) [0x7f000bba6846]
    [ 2653.828] (EE) 15: Xorg (0x400000+0xc3136) [0x4c3136]
    [ 2653.833] (EE) 16: Xorg (0x400000+0x106964) [0x506964]
    [ 2653.838] (EE) 17: Xorg (0x400000+0x24cd7) [0x424cd7]
    [ 2653.843] (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7f000e058000]
    [ 2653.848] (EE) 19: Xorg (0x400000+0x24f0f) [0x424f0f]
    [ 2653.857] (EE)
    [ 2653.861] (EE) Segmentation fault at address 0x0
    [ 2653.866] (EE)
    Fatal server error:
    [ 2653.874] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 2653.878] (EE)
    [ 2653.883] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 2653.899] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 2653.904] (EE)
    [ 2653.908] (EE) Server terminated with error (1). Closing log file.
    xorg.conf
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    I'm sure that the main problem is between keyboard and chair, but I'd like to know, what's wrong with pc
    Thanks for your efforts.
    Last edited by Mytrin (2014-05-25 19:09:02)

    I've managed to solve this error:
    (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory
    There was missing library and few directories, which I found according to this http://www.reddit.com/r/archlinux/comme … _correctly at /usr/lib/dri, so I had to just symlink it. However, "unable to open display" error is still annoying me and Xorg is not working.
    EDIT: Found EE about missing commands in new Xorg.0.log and installed xterm to solve this. Now I don't have entirely black screen after startx. There is white rectangular terminal and fglrxinfo seems to be all right as it detected my Radeon and OpenGL. Now I have to install some DE, but that's another story. Marking as [SOLVED] and once again thanks to clfarron4 for reply.
    Last edited by Mytrin (2014-05-25 19:06:09)

  • [SOLVED] ERROR: Unable to find root device '/dev/sda3'

    Earlier I updated the kernel to my arch system and found this error while trying to boot. I hate to post this because there are so many topics like it, but I've been looking for hours for a solution to this problem and can't find one.
    Here is the output:
    Booting 'Arch Linux'
    root (hd0,1)
    Filesystem type is ext2fs, partition type 0x83
    kernet /vmlinuz-linux root=/dev/sda3 ro
    [Linux-bzImage, setup=0x4200, size=0x2ff2d0]
    initrd /initrd @ 0xfd17000, 0x2c878c bytes]
    Probing EDD (edd=off to disable)... ok
    Decompressing Linux... Parsing ELF... done.
    Booting the kernel.
    :: Starting udevd...
    done.
    Waiting 10 seconds for device /dev/sda3 ...
    ERROR: device '/dev/sda3' not found. skipping fsck.
    ERROR: Unable to find root device '/dev/sda3'.
    You are being dropped to a recovery shell
    type 'exit' to try and continue booting
    sh: can't access tty; job control turned off
    My partition layout is like this:
    swap: /dev/sda1
    boot: /dev/sda2
    root: /dev/sda3
    extended: /dev/sda4
    home: /dev/sda5
    I have two hard drives, but i'm sure /dev/sda is the one with my OS.
    Here are some things I've tried:
    This was at the very bottom of the pacman wiki
    # mkdir /mnt/arch
    # mount /dev/sdaX /mnt/arch (your root partition)
    # cd /mnt/arch
    # mount -t proc proc proc/
    # mount -t sysfs sys sys/
    # mount -o bind /dev dev/
    # mount /dev/sdaX boot/ (your /boot partition) #This step is not needed if you do not have a separate boot partition
    # chroot .
    # pacman -Syu udev mkinitcpio
    # mkinitcpio -p linux
    I've also tried performing the above, downgrading the kernel, updating my mirrorlist, reinstalling the kernel, and rebooting as mentioned here.
    I've alsa tried a few other things that I've read, but can no longer remember.
    Any help would be greatly appreciated! Thanks.
    Last edited by colton7909 (2012-05-25 02:09:36)

    Thank colton
    Same problem here, but on a mac book (not mine eyh )
    So, for those how have the problem (or need a live usb for mac or uefi systems),
    1) with a 32bits system
    - download gparted live cd
    - use it for the step 3
    2) with a 64bits system:
    - you need the gparted live cd too: mount it and copy the EFI directory somewhere; then umount it;
    - download a 64bits system (system rescue cd, as colton said is enough, follow the instructions for installation on their website first);
    - mount you live usb, install the 64bits system;
    - copy EFI system on the key
    - edit the grub.cfg in EFI/boot/ , add the following before the other entries:
    menuentry "System Rescue" {
    set gfxpayload=keep
    linux /syslinux/altker64 nomodeset efi
    initrd /syslinux/initram.igz
    3) repairing...
    - boot the broken computer with the live usb
    - mount the partition on which your system is (e.g. /dev/sda1 on /mnt)
    - chroot it, init the system as needed (mount /dev, /proc, etc. the easier way is using init scripts)
    % chroot /mnt /bin/bash
    % /etc/rc.sysinit
    % mkinitcpio -p linux

  • "Unable to install" error

    Hey, I thought maybe someone else is having the same problem. I updated my Nokia N8 to Anna ages ago and everything was fine. But then a few days ago I got a notification about a new software update, so I did it. And now whenever I try to install something (app, theme - you name it), I get the "Unable to install" error. This goes for both via usb and directly from phone. Any ideas?

    Which method did you used to update your device?
    And after update did you sync your device with Ovi suite and install Qt Mobility App
    If I've helped in any way, a click upon the star over on the left would always be appreciated.
    If however my answer also solves your problem clicking below it will benefit other users!

  • Lion successfully installed. now unable to get on vpn using cisco, error 51 constantly appears. should have stayed on snow leopard!

    ion successfully installed. now unable to get on vpn using cisco, error 51 constantly appears. should have stayed on snow leopard!

    Try opening a terminal window (Applications >> Utilities). At the prompt, enter:
    >sudo SystemStarter restart CiscoVPN
    This will ask you for the admin password and it will restart the Cisco client service. That should fix it. This seems to be a known issue that will eventually be solved with some updates.
    DB

  • Why is it that when I am trying to install an adobe product, I get 33% of the way through and then it gives me an error "unable to load metafile"??  It happened with Reader and now with Flashplayer.  With the Reader, I was able to find a different install

    Why is it that when I am trying to install an adobe product, I get 33% of the way through and then it gives me an error "unable to load metafile"??  It happened with Reader and now with Flash player.  With the Reader, I was able to find a different installation link using the troubleshooting guide.  I cannot find the same with flash player.  Please tell me how to install Flash player because there is a website that I cannot even view without it.  BTW That is annoying that I cannot even see the website without flash player
    my system is XP

    Use these installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    Flash Player for Mac OS X
    For Adobe Reader go to http://get.adobe.com/reader/enterprise/

Maybe you are looking for

  • Local class and switch statement -- compiler bug?

    Does anybody know why the following does not compile with "LocalClass cannot be resolved to a type" error in the case 1: block public class ProblemClass {      public void localClassProblem() {                class LocalClass {                     vo

  • Use tv to view movies

    I have a Blusens M94 TV and I want to view movies and fotos (MP4s and jpegs) using an eternal hard drive plugged into the tv. I used OSX to format the 500 GB WD as FAT 32 as required by Blusens, but the TV will not recognize files I have written with

  • MMC not showing J2ee process table

    Dear Gurus, I installed ECC 6.0 SR3(ABAP+JAVA)  Development and Quality on the same server windows 2003 operating systems. in MMC it is showing only development system J2ee process table it is not showing the quality system J2ee process table. Can an

  • Pen tool/path and content aware spot healing brush to remove cables (CS5)

    Tried to remove some cables from an image using Russel Brown's video making use of the pen tool/path and the spot healing brush with content aware.  I'm pretty sure I followed his tutorial exactly but it did not work satisfactorily.  Are there any ot

  • IPhoto - IDisaster with accessing pics in Finder

    I figured that somehow software developers decided it would be very neat to not link Finder with IPhoto together and make them work separately. That I can sort of live with, but what happens when one accidentally edits image in Photoshop and saves it