Syslinux, GPT, RAID 0/1, LVM: Successfully boots, then hangs/crashes

I have a system with two hard drives that were initially zeroed-out (sda and sdb).  I'm trying to do an Arch install with Syslinux, GPT partitioning, RAID1 (/boot and swap), and RAID0 (LVM for / and /home).  I can get my install to boot successfully but after I enter my username (root) and password (hunter2) it's completely usable until it seems to hang (sometimes shifting the display) moments later.
Here's my best recreation of my installation steps.  Hopefully you can tell me what I'm doing wrong or how I can troubleshoot further.
# Partitioning
gdisk /dev/sda
gdisk /dev/sdb
# I configure the partition table identically on sda and sdb:
# # Flags Type Size
# 1 Boot FD00 128 MB # /boot
# 2 FD00 2 GB # swap
# 3 FD00 Remaining space (~ 253 GB) # LVM for / and /home
# Load kernel modules
modprobe dm-mod
modprobe raid0
modprobe raid1
## RAID
mdadm --create /dev/md1 --level=1 --raid-devices=2 --metadata=1.0 /dev/sd[ab]1 # Create RAID1 for /boot
mdadm --create /dev/md2 --level=1 --raid-devices=2 /dev/sd[ab]2 # Create RAID1 for swap
mdadm --create /dev/md3 --level=0 --raid-devices=2 /dev/sd[ab]3 # Create RAID0 for LVM for / and /home
## LVM
pvcreate /dev/md3 # Initialize /dev/md3 for LVM
vgcreate VolGroup00 /dev/md3 # Create VolGroup00 VG
lvcreate -L 10G VolGroup00 -n lvroot # Create LV for /
lvcreate -L 10G VolGroup00 -n lvhome # Create LV for /home
# Formatting
mkfs.ext2 /dev/md1 # Create ext2 file system for /boot
mkswap /dev/md2 # Create swap device
mkfs.ext4 /dev/mapper/VolGroup00-lvroot # Create ext4 file system for /
mkfs.ext4 /dev/mapper/VolGroup00-lvhome # Create ext4 file system for /home
# Mount the partitions
mount /dev/mapper/VolGroup00-lvroot /mnt
mkdir /mnt/boot
mount /dev/md1 /mnt/boot
mkdir /mnt/home
mount /dev/mapper/VolGroup00-lvhome /mnt/home
# Connect to the internet (skip; DHCP worked)
# Install the base system
pacstrap /mnt base base-devel vim
# Install a bootloader
arch-chroot /mnt pacman -S syslinux
# Configure the system
genfstab -pU /mnt >> /mnt/etc/fstab
arch-chroot /mnt /bin/bash
echo swamp > /etc/hostname
ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime
locale > /etc/locale.conf
# I fix a few minor things in /etc/locale.conf so they are all set like LC_ALL="en_US.UTF-8"
echo "KEYMAP=us" > /etc/vconsole.conf
# I uncomment en_US.UTF-8 UTF-8 in /etc/locale.gen
locale-gen
# I make these changes to /etc/mkinitcpio.conf:
# MODULES="ext2 ext4 raid0 raid1 dm_mod"
# HOOKS="base udev autodetect modconf block mdadm_udev lvm2 filesystems keyboard fsck shutdown"
mkinitcpio -p linux
syslinux-install_update -iam
# I change the APPEND lines in /boot/syslinux/syslinux.cfg from:
# APPEND root=/dev/sda3 ro
# ... to:
# APPEND root=/dev/mapper/VolGroup00-lvroot ro
# Unmount and reboot
exit
umount /mnt/boot
umount /mnt/home
umount /mnt
vgchange -an
mdadm --stop /dev/md3
mdadm --stop /dev/md2
mdadm --stop /dev/md1
reboot
Last edited by roknir (2013-02-20 04:50:18)

WonderWoofy wrote:Can you chroot and find out what is in the journal?  You may not even have to chroot, as I think you can simply use the -D option.
Interesting.  I didn't know about the systemd logging.  I'm glad it's on by default.  Here is the excerpt:
Feb 19 21:39:40 swamp systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
Feb 19 21:39:40 swamp systemd[1]: Starting Permit User Sessions...
Feb 19 21:39:40 swamp systemd[1]: Started Login Service.
Feb 19 21:39:40 swamp systemd[1]: Started Permit User Sessions.
Feb 19 21:39:40 swamp systemd[1]: Starting Getty on tty1...
Feb 19 21:39:40 swamp systemd[1]: Started Getty on tty1.
Feb 19 21:39:40 swamp systemd[1]: Starting Login Prompts.
Feb 19 21:39:40 swamp systemd[1]: Reached target Login Prompts.
Feb 19 21:39:40 swamp systemd[1]: Starting Multi-User.
Feb 19 21:39:40 swamp systemd[1]: Reached target Multi-User.
Feb 19 21:39:40 swamp systemd[1]: Starting Graphical Interface.
Feb 19 21:39:40 swamp systemd[1]: Reached target Graphical Interface.
Feb 19 21:39:40 swamp systemd[1]: Starting Update UTMP about System Runlevel Changes...
Feb 19 21:39:40 swamp systemd[1]: Started Update UTMP about System Runlevel Changes.
Feb 19 21:39:40 swamp systemd[1]: Startup finished in 1s 201ms 384us (kernel) + 1s 125ms 388us (userspace) = 2s 326ms 772us.
Feb 19 21:39:42 swamp login[357]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
Feb 19 21:39:42 swamp systemd-logind[353]: New session 1 of user root.
Feb 19 21:39:43 swamp login[357]: ROOT LOGIN ON tty1
Feb 19 21:39:45 swamp kernel: usb 2-1.2.2: new full-speed USB device number 5 using ehci_hcd
Feb 19 21:39:45 swamp kernel: input: Logitech G9x Laser Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2.2/2-1.2.2:1.0/in
Feb 19 21:39:45 swamp kernel: hid-generic 0003:046D:C066.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech G9x Laser Mouse] on usb-000
Feb 19 21:39:45 swamp kernel: input: Logitech G9x Laser Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2.2/2-1.2.2:1.1/in
Feb 19 21:39:45 swamp kernel: hid-generic 0003:046D:C066.0004: input,hiddev0,hidraw3: USB HID v1.11 Keyboard [Logitech G9x Laser Mouse]
Feb 19 21:39:56 swamp kernel: Console: switching to colour frame buffer device 128x48
Feb 19 21:39:56 swamp kernel: fb0: astdrmfb frame buffer device
Feb 19 21:39:56 swamp kernel: drm: registered panic notifier
Feb 19 21:39:56 swamp kernel: [drm] Initialized ast 0.1.0 20120228 for 0000:06:05.0 on minor 0
Feb 19 21:39:56 swamp kernel: nouveau ![ DEVICE][0000:01:00.0] unknown Kepler chipset
Feb 19 21:39:56 swamp kernel: nouveau E[ DEVICE][0000:01:00.0] unknown chipset, 0x0e6060a1
Feb 19 21:39:56 swamp kernel: nouveau E[ DRM] failed to create 0x80000080, -22
Feb 19 21:39:56 swamp kernel: nouveau: probe of 0000:01:00.0 failed with error -22
Feb 19 21:39:56 swamp systemd-udevd[217]: Failed to apply ACL on /dev/dri/card1: No such file or directory
Feb 19 21:39:56 swamp systemd-udevd[217]: Failed to apply ACL on /dev/dri/card1: No such file or directory
Feb 19 21:40:34 swamp systemd-logind[353]: Power key pressed.
Feb 19 21:40:34 swamp systemd-logind[353]: Powering Off...
Feb 19 21:40:34 swamp systemd-logind[353]: System is powering down.
Feb 19 21:40:34 swamp systemd[1]: Stopping Sound Card.
Feb 19 21:40:34 swamp systemd[1]: Stopped target Sound Card.
Feb 19 21:40:34 swamp systemd[1]: Stopping LVM2 metadata daemon...
I think these are the pertinent errors:
Feb 19 21:39:56 swamp kernel: nouveau ![ DEVICE][0000:01:00.0] unknown Kepler chipset
Feb 19 21:39:56 swamp kernel: nouveau E[ DEVICE][0000:01:00.0] unknown chipset, 0x0e6060a1
Feb 19 21:39:56 swamp kernel: nouveau E[ DRM] failed to create 0x80000080, -22
Feb 19 21:39:56 swamp kernel: nouveau: probe of 0000:01:00.0 failed with error -22
Feb 19 21:39:56 swamp systemd-udevd[217]: Failed to apply ACL on /dev/dri/card1: No such file or directory
Feb 19 21:39:56 swamp systemd-udevd[217]: Failed to apply ACL on /dev/dri/card1: No such file or directory
Where do I go from there?

Similar Messages

  • BIOS doesn't detect HD but system still boots - then hangs while working

    Daughter brought her HP DV9500 (Vista SP2 32bit) home. Very suspicious of malware. If I check the BIOS, it does not see the hard drive (nor does that option appear in the boot menu). However, if you boot the machine, it will load Vista and allow you to log in. After about 10-30 seconds usage, the keyboard and mouse buttons freeze and what was on the screen still remains with that bloody awful circle going round and round. Now the mouse will still move across the screen via the touchpad or a usb mouse but the keyboard is dead as are the mouse buttons.
    I can boot parted magic on UBCD and access all the files on the C: drive (one physical, three partitions including a recovery partition - how it came from the factory) and run all day long. Disk diagnostics on UBCD show the hard drive is present and no errors. However, the bios diagnostic says replace the hard drive.
    I've rebuilt the BCD using Microsofts bootrec to no avail.
    I'm trying to get it sane enough to offload 4 years worth of pictures, music, and classwork, etc. and then I'll try restoring the OS from the recovery partition.
    I should mention that I ran an older Linux bootable version of Avira (dated Sept 2009) and it noted multiple occurrences of html/infected.webpage.gen as well as two other (going to try to recover the names from the Avira logfile).
    Thanks in advance.
    AJG

    Daughter brought her HP DV9500 (Vista SP2 32bit) home. Very suspicious of malware. If I check the BIOS, it does not see the hard drive (nor does that option appear in the boot menu). However, if you boot the machine, it will load Vista and allow you to log in. After about 10-30 seconds usage, the keyboard and mouse buttons freeze and what was on the screen still remains with that bloody awful circle going round and round. Now the mouse will still move across the screen via the touchpad or a usb mouse but the keyboard is dead as are the mouse buttons.
    I can boot parted magic on UBCD and access all the files on the C: drive (one physical, three partitions including a recovery partition - how it came from the factory) and run all day long. Disk diagnostics on UBCD show the hard drive is present and no errors. However, the bios diagnostic says replace the hard drive.
    I've rebuilt the BCD using Microsofts bootrec to no avail.
    I'm trying to get it sane enough to offload 4 years worth of pictures, music, and classwork, etc. and then I'll try restoring the OS from the recovery partition.
    I should mention that I ran an older Linux bootable version of Avira (dated Sept 2009) and it noted multiple occurrences of html/infected.webpage.gen as well as two other (going to try to recover the names from the Avira logfile).
    Thanks in advance.
    AJG

  • RAID 1 (mirroring), cloning and booting...

    After recently buying a new dual quad-core, I wanted to expand the hard drive space a bit, and enhance the security of a part of the data. Having a 500G disk in bay 1, I planned on putting one additional 500G to create a mirror with the original one, and two more disks simply for space (500G and 1T). I soon encountered some problems..
    As I don't have a RAID card installed, I would have to use Apple's software RAID from within Disk Util; but I soon discovered I would need to initialize both disks that were to be in the RAID (is there a reason for this? I expected I could create a clone drive, so a mirror with one in the RAID already present...). Well, this would mean I have to backup all my data first, then boot from another disk (like the Leopard install disk), create the RAID and replace all my data... So here are my current problems:
    - my Mac Pro won't boot from the Leopard install disk (it's an original Universal disk, so that shouldn't be it); it won't boot from other external disks either, but I believe that's caused by the partition tables being in APM, not GUID, as they were created on a G4...
    - I need to make a complete clone of the boot disk, but all I can do with Disk Util (or CCC) is make a clone of the Mac partition (or loose partitions at all). I have a BootCamp partition as well, which I would like to clone too, so what I'd want is a possibility to clone the whole drive, instead of independent partitions. It seems there is a terminal command able to do something like that, but I'm not familiar with using it.
    - I read about the software RAID solutions causing problems in Leopard (corruption of RAID headers). Does anyone know more about this, and whether it has been solved?
    I'm sorry for putting three things together, but I thought it might make it easier to understand if the connection between the problems was clear. Any help would be greatly appreciated.
    Piotr / iBear

    Hmm.. This does explain a few things, especially the part about having X.5.2 as a minimum.. The slight problem with the the disk that was packaged with the machine is that my dad (for whom I'm setting it up) has been "cleaning up" his disks - I've had a hard time finding the Leopard disk for that matter... - and is now on a trip for the next two weeks. I'm now configuring a new external install - entirely fresh and updated to X.5.4 - to try booting from that.
    I thought both AppleRAID and SoftRAID had that problem, that's what I understood from the post you left in another topic, but I guess I don't have to worry about that anymore. happy
    The purchases have actually already been made, and as there were no 640G disks available, I had taken the 500G's. So, the machine is already set up with 3x500G (2xWD, 1xSeagate) and 1x1T (Seagate as well). As the original system is on one of the WD's, I wanted to create the RAID with two identical disks; will it make any difference if they are not? (I know it will work, but would it have any impact?)
    And just a last small question: as I noticed before, CCC doesn't do entire drives. Should I partition the RAID drive like the original and then use CCC to copy the BootCamp partition? (found SD after a small search) > I think the same questions go for that as well...
    Many thanks for the very fast reply!

  • How to removing a pending update that is preventing a successful boot

    Hi,
    For an unknown reason (my guess is an update was automatically applied and automatically restarted), my computer rebooted overnight and in the morning was stuck in a failed boot loop.  When trying to boot I get the message:
    "Preparing to configure windows"
    "Do not turn off your computer"
    Then after a few seconds the computer reboots and does the same thing.  Safe mode yields the same result.  Using the F8 option to restore last known good configuration doesn't change anything.  I can boot into the recovery console.
    I have tried running SFC /SCANNOW in a command prompt in the recovery console and get the message:
    "There is a system repair pending which requires reboot to complete. Restart Windows and run sfc again."
    Restarting of course doesn't change anything.  So it seems something happened to an unfinished update and is still pending.  I think if I can remove this pending update I might be able to boot normally, or at least run SFC and hopefully then boot
    normally.
    Does anyone know what I should try to remove this pending update that appears to be preventing a successful boot?
    Thanks!

    Hello deuce_mn,
    This is the command to run when booted offline at a recovery command prompt
    dism.exe /image:C:\ /cleanup-image /revertpendingactions
    This is supposed to revert all pended updates, however if System Restore is not working, then there may be other issues as well
    Thanks, Darrell Gorter This posting is provided "AS IS" with no warranties, and confers no rights. VAMT - Volume Activation Management Tool - Download link http://www.microsoft.com/downloads/details.aspx?FamilyID=ec7156d2-2864-49ee-bfcb-777b898ad582&displaylang=en
    I'm thinking this may help with a similar problem I'm having with SP1 (fatal error applying update during boot).  I noticed that when I'm at the recovery command prompt, the system image is moved to E: vs. C:.  Will DISM work in this case & will
    it restore my System Image, pre-SP1 failure, to C:?  Also, does it matter whether I run the recovery command prompt from the current installation or do I need to start from the original install media?  Oh, one more question...  When I installed
    Windows 7x64, I used a minimal unattend.xml file to force all User Profiles to another, non-system, disk drive, currently D:.  Both my system drive & user profile/data drive appear unharmed so far.

  • System boot occasionally hangs at module loading

    Since I installed Arch, about 43% of the time that I have attempted to boot my computer the boot process hangs at module loading. I assumed that the problem may have been that I was autoloading my modules. I tried turning autoloading off and manually loading them instead but that did not help. Then (as a shot in the dark) I tried having autoloading on, with my modules still defined in rc.conf, but that only made things worse (understandably, I did not think that this would help, but I figured that it couldn't hurt to try).
    Here is my /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="America/New_York"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="no"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(ac battery button processor thermal video cdrom intel-agp tpm_bios tpm tpm_tis tpm_tis tpm_tis drm_kms_helper drm i915 hid i2c-algo-bit i2c-i801 i2c-core evdev joydev pcspkr psmouse serio_raw uvcvideo v4l1-compat v4l2-compat-ioctl32 videodev pci_hotplug shpchp wmi rtc-cmos rtc-core rtc-lib output iTCO_vendor_support iTCO_wdt snd-mixer-oss snd-pcm-oss snd-hwdep snd snd-page-alloc snd-pcm snd-timer snd-hda-codec snd-hda-intel soundcore scsi_mod ahci atl1e mac80211 rfkill iwlagn iwlcore cfg80211 usb-storage usbhid usbcore ehci-hcd uhci-hcd sd_mod sr_mod st)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="foster.laptop"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (wlan0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    #wlan0="dhcp"
    INTERFACES=(!wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(@alsa @syslog-ng @network dbus hal networkmanager @cups @netfs @crond @laptopmode)
    Last edited by nothinggoespast (2010-06-28 00:47:01)

    I have the same problem on my thinkpad T500 after I upgrade the wireless card (intel wifi link 5300).
    For a long time I didn't understand the why of this behavior, but some weeks ago I realise that the problem can solve it hard-locking the wireless card and unlocking after the step: "loading modules".
    For more information this is the complete thread on thinkpad forum that I wrote when I try to solve this issue: http://lnv.lithium.com/t5/T400-T500-and … 870#M26238
    I apologize if you do not understand what I mean, the problem is that I have some difficulties to express myself in English

  • 2013 MBP 2.5 i5 4Gig 500MBHDD boots slow.  It finishes post in the same time as an identical MBP, and then hangs for 30 seconds on one of the ethernet adapters, before finishing the boot.  Once booted it is normal.   Turning off airport changes nothig.

    2013 MBP 2.5 i5 4Gig 500MBHDD boots slow.  It finishes post in the same time as an identical MBP, and then hangs for 30 seconds on one of the ethernet adapters, before finishing the boot.  Once booted it is normal.   Turning off airport changes nothing.  Hardline adapter is not plugged in.  Thunderbolt adapter is not used.  Bluetooth is off.  Did this out of box.  Identical MBP boots to login screen in 36 seconds.  Disk repair, permission repair, and safe mode boot have
    already been done, no change.  Boot time is consistent.  Hangs at the same place each time.  Right after post.  Bad adapter?
    Comments, solutions please.

    ... and so ... now a few days later, success.   I ran
    your software but it told me nothing I hadn 't seen
    in verbose boot.
    Consistently, following good post, the boot hung
    for 30 seconds on the adapters, (cards, chips, NICs.
    Ethernet cards, whatever you prefer to call them)
    either the airport card or the hard line.  It would then
    proceed at normal pace to the login screen.
    Since it came out of the box that way, software
    conflict was not a go.  I guessed glitched driver or
    fetch instruction.  I zapped the PRAM (cleared
    NVRAM) and reloaded the OS, updates, Garage Band,
    iPhoto (one of Apple's true dogs in an otherwise
    rare arena) iMovie, Photoshop, Lightroom, their
    updates, and my files.   MBP pro now boots to login
    in 31 seconds.  Note I have turned off as much gee
    whiz, rubber band scroll, global swiping and other
    hubcaps and hood ornaments as befits how like
    things ... and turned off all the Asian and other fonts
    I will. ever use.
    Best guess ... corrupt driver or corrupt fetch script ...
    bad server squirt at factory load.
    Thanks for your help, Cheers!

  • How can i get my imac proceed to home page from restarting endlessly?  it will start then start booting then chime then bck to step one, not even hitting the start up page.... plssss help!

    how can i get my imac proceed to home page from restarting endlessly?  it will start then start booting then chime then bck to step one, not even hitting the start up page.... plssss help!

    Hi
    My Powerbook was the same. Only fix is to reinstall OSX from the install CD but be sure not to pick the Format and install clean. Once you boot with the install CD pick the preserve user data and settings.
    On My machine the reinstall looked perfect. My network, email, files and all the programmes were all there. Most apps worked fine but Adobe CS2, Virtual PC and NetBarrier all needed reinastallation as they reported a few files or registration was missing. I went for the 10.4.3 upgrade again and it worked fine.
    Good luck
    D

  • I have tried VERY unsuccessfully to install iphoto 9.2.3 update...it says it has successfully updated - then on opening says: iPhoto cannot be opened because of a problem. Check with the developer to make sure iPhoto works with this version of Mac OS X.

    I have tried VERY unsuccessfully to install the new iphoto 9.2.3 update.
    I have installed it several times both from the appstore and from Apple Support downloads...it says it has 'successfully updated' - then on opening iphoto, a dialogue box pops up and says:
    iPhoto cannot be opened because of a problem.
    Check with the developer to make sure iPhoto works with this version of Mac OS X. You may need to reinstall the application. Be sure to install any available updates for the application and Mac OS X.
    Click Report to see more detailed information and send a report to Apple.
    Insane...I have all my updates including Lion 10.7.3 why does APPLE KEEP SENDING BETAS AS A REAL PRODUCT?
    Does anyone know how to copy over a backup from a twinned drive Backup? What files etc.
    Thanks tons...

    Thanks Terence,
    I did get it working finally...and your last advice was what I needed.
    I am embarassed that I was an early adopter...SHOULD HAVE KNOWN BETTER and read the problems before creating some for myself.
    This was an excercise in frustration, because of the obtuse division between the appstore and Apple Support downloads... it was a bit of a circuitous route...strange that with all the security reciepts and tracking that Apple goes to to prevent piracy... which Steve by his own admission used to build Apple...
    Why aren't the server scripts smart enough to say…”HEY DUMMY you can't use this download because you purchased the last iPhoto upgrade from the appstore...and… DON'T WASTE YOUR TIME and precious data BUDGET downloading this gargantuan file which will eat 20% of your expensive 5Gb monthly data allotment!!!…and NOT WORK…only pretend to…and then foul your system….kill your productivity and turn your hair whiter…even worse than LION did.
    I am just so antagonized by the inept scripts in recent installations that don't do a diagnostic before allowing installation that is going to corrupt things...I had less effort and frustration when I ran my ATARI with a MAC emulator...rarely lost any productivity to nonsense.
    I AM TIRED OF BETAs dressed as products...designed and rushed out for Apple toys that once were tools of the creative trade...COREL...may still have a chance at a comeback if Apple keeps pumping out toys instead of the venerable tools we once adored as income enhancers.

  • After installing itunes 10 installation was successful but then tells me error 2 (windows error 2), After installing itunes 10 installation was successful but then tells me error 2 (windows error 2)

    After installing itunes 10 installation was successful but then tells me error 2 (windows error 2).

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe, and select "Extract to iTunesSetup". WinRAR will expand the contents of the file into a folder called "iTunesSetup".
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • [Solved] Boot process hangs for installed Arch and installation usb

    Hi. I've been using Arch Linux for around 6 months now and I'm in love with it. It is now my primary OS. However, I might have done something or performed some update, and I can no longer boot into Arch. The boot process hangs right before it should show the login screen (I'm using Gnome 3.6 with GDM). I see the following messages on the screen:
    Loading Linux core repo kernel ...
    Loading initial ramdisk ...
    /dev/sda3: recovering journal
    /dev/sda3: clean, 330610/1749664 files, 5585671/6996827 blocks
    And then it hangs right there. I have to hard-reboot after this.
    I then tried to boot using the Arch Linux Installation USB (archlinux-2012.12.01-dual.img), which also hangs at a particular point, before it should show me the prompt. I took a picture of the screen where it hangs: Screen Capture. This is an issue with just my laptop, because the USB boots just fine on another laptop I tried.
    I also have Windows 7 and Ubuntu 12.10 installed on my system, and I'm able to boot into both of them.
    I have 2 hard drives: /dev/sda is a 120GB SSD, and /dev/sdb is a 500GB hard disk. My partitions are as follows:
    sda1 - Windows 7 100MB System Reserved Partition (boot flag enabled)
    sda2 - Windows 7 OS
    sda3 - ArchLinux (boot flag enabled)
    sdb1 - Ubuntu 12.10 (boot flag enabled)
    sdb2 - Just data
    I ran bootinfoscript and below is the output:
    Boot Info Script 0.61 [1 April 2012]
    ============================= Boot Info Summary: ===============================
    => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of
    the same hard drive for core.img. core.img is at this location and looks
    in partition 99 for .
    => Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 1 of
    the same hard drive for core.img. core.img is at this location and looks
    in partition 99 for .
    sda1: __________________________________________________________________________
    File system: ntfs
    Boot sector type: Windows Vista/7: NTFS
    Boot sector info: No errors found in the Boot Parameter Block.
    Operating System:
    Boot files: /bootmgr /Boot/BCD
    sda2: __________________________________________________________________________
    File system: ntfs
    Boot sector type: Windows Vista/7: NTFS
    Boot sector info: No errors found in the Boot Parameter Block.
    Operating System: Windows 7
    Boot files: /Windows/System32/winload.exe
    sda3: __________________________________________________________________________
    File system: ext4
    Boot sector type: -
    Boot sector info:
    Mounting failed: mount: /dev/sda3 already mounted or sda3 busy
    sdb1: __________________________________________________________________________
    File system: ext4
    Boot sector type: -
    Boot sector info:
    Operating System: Ubuntu 12.10
    Boot files: /boot/grub/grub.cfg /etc/fstab
    sdb2: __________________________________________________________________________
    File system: ntfs
    Boot sector type: Windows Vista/7: NTFS
    Boot sector info: No errors found in the Boot Parameter Block.
    Operating System:
    Boot files:
    ============================ Drive/Partition Info: =============================
    Drive: sda _____________________________________________________________________
    Disk /dev/sda: 120.0 GB, 120034123776 bytes
    255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    Partition Boot Start Sector End Sector # of Sectors Id System
    /dev/sda1 * 2,048 206,847 204,800 7 NTFS / exFAT / HPFS
    /dev/sda2 206,848 178,466,084 178,259,237 7 NTFS / exFAT / HPFS
    /dev/sda3 * 178,466,085 234,440,703 55,974,619 83 Linux
    Drive: sdb _____________________________________________________________________
    Disk /dev/sdb: 500.1 GB, 500107862016 bytes
    255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    Partition Boot Start Sector End Sector # of Sectors Id System
    /dev/sdb1 * 63 20,948,759 20,948,697 83 Linux
    /dev/sdb2 20,964,824 976,771,071 955,806,248 7 NTFS / exFAT / HPFS
    "blkid" output: ________________________________________________________________
    Device UUID TYPE LABEL
    /dev/mmcblk0p1 6665-3162 vfat
    /dev/sda1 CA6A20CC6A20B75B ntfs System Reserved
    /dev/sda2 1EE242D5E242B137 ntfs
    /dev/sda3 65db0c59-9f04-46f1-975d-8a4c28132137 ext4
    /dev/sdb1 bb9818db-ce7c-43a4-8ad5-8d3702001aed ext4
    /dev/sdb2 3C2E3A4E2E3A0206 ntfs
    ================================ Mount points: =================================
    Device Mount_Point Type Options
    /dev/mmcblk0p1 /media/dhaval/6665-3162 vfat (rw,nosuid,nodev,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush,uhelper=udisks2)
    /dev/sdb1 / ext4 (rw,errors=remount-ro)
    =========================== sdb1/boot/grub/grub.cfg: ===========================
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    if [ -s $prefix/grubenv ]; then
    set have_grubenv=true
    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 recordfail {
    set recordfail=1
    if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; 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_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    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_output gfxterm
    if [ "${recordfail}" = 1 ]; then
    set timeout=-1
    else
    set timeout=10
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/05_debian_theme ###
    set menu_color_normal=white/black
    set menu_color_highlight=black/light-gray
    if background_color 13,37,73; then
    clear
    fi
    ### END /etc/grub.d/05_debian_theme ###
    ### BEGIN /etc/grub.d/10_linux ###
    function gfxmode {
    set gfxpayload="${1}"
    if [ "${1}" = "keep" ]; then
    set vt_handoff=vt.handoff=7
    else
    set vt_handoff=
    fi
    if [ "${recordfail}" != 1 ]; then
    if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
    if [ ${match} = 0 ]; then
    set linux_gfx_mode=keep
    else
    set linux_gfx_mode=text
    fi
    else
    set linux_gfx_mode=text
    fi
    else
    set linux_gfx_mode=keep
    fi
    else
    set linux_gfx_mode=text
    fi
    export linux_gfx_mode
    if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi
    menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    linux /boot/vmlinuz-3.5.0-21-generic root=UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed ro quiet splash acpi_osi=Linux acpi_backlight=vendor $vt_handoff
    initrd /boot/initrd.img-3.5.0-21-generic
    submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    menuentry 'Ubuntu, with Linux 3.5.0-21-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.5.0-21-generic-advanced-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    echo 'Loading Linux 3.5.0-21-generic ...'
    linux /boot/vmlinuz-3.5.0-21-generic root=UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed ro quiet splash acpi_osi=Linux acpi_backlight=vendor $vt_handoff
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-3.5.0-21-generic
    menuentry 'Ubuntu, with Linux 3.5.0-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.5.0-21-generic-recovery-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    recordfail
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    echo 'Loading Linux 3.5.0-21-generic ...'
    linux /boot/vmlinuz-3.5.0-21-generic root=UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed ro recovery nomodeset
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-3.5.0-21-generic
    menuentry 'Ubuntu, with Linux 3.2.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.2.0-29-generic-advanced-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    echo 'Loading Linux 3.2.0-29-generic ...'
    linux /boot/vmlinuz-3.2.0-29-generic root=UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed ro quiet splash acpi_osi=Linux acpi_backlight=vendor $vt_handoff
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-3.2.0-29-generic
    menuentry 'Ubuntu, with Linux 3.2.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.2.0-29-generic-recovery-bb9818db-ce7c-43a4-8ad5-8d3702001aed' {
    recordfail
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    echo 'Loading Linux 3.2.0-29-generic ...'
    linux /boot/vmlinuz-3.2.0-29-generic root=UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed ro recovery nomodeset
    echo 'Loading initial ramdisk ...'
    initrd /boot/initrd.img-3.2.0-29-generic
    ### 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+ ###
    menuentry "Memory test (memtest86+)" {
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    linux16 /boot/memtest86+.bin
    menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod part_msdos
    insmod ext2
    set root='hd1,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb9818db-ce7c-43a4-8ad5-8d3702001aed
    else
    search --no-floppy --fs-uuid --set=root bb9818db-ce7c-43a4-8ad5-8d3702001aed
    fi
    linux16 /boot/memtest86+.bin console=ttyS0,115200n8
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-CA6A20CC6A20B75B' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 CA6A20CC6A20B75B
    else
    search --no-floppy --fs-uuid --set=root CA6A20CC6A20B75B
    fi
    chainloader +1
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/30_uefi-firmware ###
    ### END /etc/grub.d/30_uefi-firmware ###
    ### 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 ###
    =============================== sdb1/etc/fstab: ================================
    # /etc/fstab: static file system information.
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc nodev,noexec,nosuid 0 0
    # / was on /dev/sdb1 during installation
    UUID=bb9818db-ce7c-43a4-8ad5-8d3702001aed / ext4 errors=remount-ro 0 1
    =================== sdb1: Location of files loaded by Grub: ====================
    GiB - GB File Fragment(s)
    4.564525127 = 4.901121536 boot/grub/grub.cfg 1
    5.130507946 = 5.508840960 boot/initrd.img-3.2.0-29-generic 2
    5.851592541 = 6.283099648 boot/initrd.img-3.5.0-21-generic 2
    6.317649364 = 6.783524352 boot/vmlinuz-3.2.0-29-generic 1
    4.965751171 = 5.331934720 boot/vmlinuz-3.5.0-21-generic 2
    5.851592541 = 6.283099648 initrd.img 2
    5.851592541 = 6.283099648 initrd.img.old 2
    4.965751171 = 5.331934720 vmlinuz 2
    4.965751171 = 5.331934720 vmlinuz.old 2
    I tried adding nomodeset and acpi=off to the boot parameters, but the boot process still hangs. Please let me know if I should provide any other information.
    Last edited by dhavalparmar (2012-12-30 11:45:25)

    Ok.. So my Arch Linux randomly decided to work. I'm sure I didn't do anything between my last "not working" state and my current "working" state. Below are a few things I tried:
    I thought of trying an earlier build of ArchLinux, and downloaded archlinux-2012.11.01-dual.iso and made a bootable USB out of it. It still hung.
    I was getting error messages during Arch boot that the last access time for the disks was at a future date. I found out that Ubuntu was using localtime instead of UTC and screwing up my hardware clock. I fixed it, and thought maybe the time issues were causing the boot problem. But fixing time didn't solve my problem.
    I chrooted into Arch from my Ubuntu install, ran 'sudo pacman -Syyu' and updated my Arch install.
    I thought maybe GDM isn't starting up. I re-enabled the service using 'systemctl enable gdm.service'.
    I removed OpenNTPd and installed NTPd. Enabled the daemon using 'systemctl enable ntpd'
    None of the above solved the problem, and rebooting to Arch still hung the system. So I stopped fiddling with it yesterday. Today, as usual, I just tried logging into Arch.. And it just worked out of the blue. The solution to me is as mysterious as the problem.
    I told this to my friend who introduced me to Arch, and this is what he said:
    Damn it computers, you were supposed to be deterministic!

  • My iPad does not recognize my Apple ID. I have reset several times (as requested) it's stated that its successful, and then does not work..I cannot access anything!!!!

    My iPad does not recognize my Apple ID. I have completed a reset several times (as requested).
    The re-set is shown as successful but then doesn't work..I'm locked out of everything!!!

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Why can't i successfully put in Paypal for the itunes store....have tried numerous time and get success and then unsuccessful

    I want to get 2 updates iPhoto and iMovie that are available and can't get past the requirement to add a payment source.  I've gone through the process several times and will get a successful and then unsuccessful.  The 1st note I get is that it hasn't been used for the iTunes store, which I never use....so frustrated.

    Problem resolved. Learned from a tech that I could choose "none", which is grey in the choices.  Did that and was able to then get my available free updates.  I didn't want to set up a prepaid account and didn't have to.  Seems to be a glitch in the system but I'm done with that on.

  • MS-6743G (865GM2-LS) System Start & get boot then Auto-off, Unable to find prblm

    Hi,
    I have problem with my computer to start
    MS-6743G (865GM2-LS) System Start & get boot then Auto-off,
    every time start, the system boot, after Bios load, then turn-off
    If press Del key, enter BIOS setup, also turn-off power
    How to solve this problem, what is the problem?
    Is't the motherboard problem?
    Processor problem?
    I can't find it?
    Please anyone help me to solve this problem?
    Thanks
    PC Sekar

    Hi
    This is the specifications for my System
    MSI 865GM2-LS(MS-6743G), Intel P4 2.80E 800MHz 1MB CPU
    XP Pro w/SP2 all updates
    Kingston KVR266X64C25/256
    (512MB-64Mx64 DIMM, PC3200-DDR SDRAM -Exchanged the above one)
    SAMSUNG CD-RW Driver SH-R522
    Maxtor 120GB (6Y120M0STD) SATA, DiamondMax Plus 9
    MITSUMI 1.44 Disk Drive, Model D359M3
    HP7540 17" monitor
    Please check it & help

  • Boot mode, hangs at "Waiting on Printing Services"

    During boot mode, hangs at "Waiting on Printing Services" then shuts off. Please help. Tnx

    I am working on a friend's Ibook, I am a PC IT, and know very little about Mac's so please bare with me in helping (1st grade Mac user).
    In my Mac fixing journey, I have used:
    1. Repair Disk = no repairs found to fix
    2. Repair Permissions = stalls and gives a prompt disconnected quit and restart, did that same prompt
    3. Booted in safe mode, gets to the same point "waiting for Printing Services" and then fades out and shuts itself down after a long period.
    4. I have tried to holding down opt, apple, p & r keys to reset "pram" = no go.
    5. Removed the power source and batter to reset computer.
    6. Booted computer connected into the printer and not connected to the computer. Same freeze place.
    After all this being done,and reading alot in here, I purchased disk warrior, it corrected a few errors, rebuilt and rebooted...only to come back to "waiting for Printing Services" and then freeze.
    Anyone have anything else they can help me with, that might get me passed this problem??
    Thanks in Advance for any advice!!
    Sav
    Ibook G4   Mac OS X (10.0.x)  

  • Syslinux & GPT: no boot

    I have followed the instructions on the wiki to install syslinux manually and configure it as such, for use with GPT. I received no errors in my configuration, including the 'dd' step. I verified that the boot flag was set and that the syslinux.cfg file contained the correct partition for root. I installed the bootloader to /dev/sda.
    I also tried doing it the 'automatic' way (with compensation for GPT, I did install gptfdisk for both methods) with the bash script syslinux-install_update -iam. This also 'succeeded' but I still have no usable bootloader.
    Someone please help me out, I have tried both methods multiple times and I still can not boot to my hard drive.
    Laptop I'm installing on is a Lenovo IdeaPad Z575, uses BIOS but not EFI.
    TIA.
    - gdea73 -

    syslinux-install_update -iam
    will in fact fail at the second step (-a), which is setting the boot flag. Use
    syslinux-install_update -im
    instead and just set the Legacy BIOS Bootable bit yourself.
    Edit, as it's nothing important:
    DSpider wrote:msthev, it uses the gptfdisk package to set the boot flag. Edit "/usr/sbin/syslinux-install_update" and see for yourself.
    Yes, but it will fail if gptfdisk it's not installed, which isn't impossible, since you can set the attribute using gdisk. I had a similarly looking problem and the solution was to omit -a.
    Last edited by msthev (2012-10-26 16:23:41)

Maybe you are looking for

  • Can't open .cwk files in Office 2004 - Help

    Hi, imac intel 24. Running latest software. I have several .cwk files from back when. Now, I can't open them. I believe they are spreadsheets but Office 2004 won't open them. Any ideas? I always get an error saying I need a 3rd party app. Thanks in a

  • WebService databinding not proper

    Hi, I'm totally new to Flashbuilder so bare with me. It seems this is not working properly. If the webservice returns more than one field the results will not display in a datagrid, its blank. If I change the webservice to only return one field that

  • Workbench-Cannot Give Joining to One-To-Many

    Hi there, i am using toplink workbech 10g release 2(10.1.3.0DP4) build 050715. In workbench, i want to put "use joining" to a one-to-many relationship. Joining can be applied to one-to-many relationships from the java code but in workbench i cannot g

  • Querying the sys.aud$ table

    can any one tell me which column of the sys.aud$ (audit trail) table is the one that shows when the grant occurred. I did a desc sys.aud$ ,but i cannot tell which one is the right column. thanks in advance

  • IPhone 4 died during 5.1 upgrade

    Two days ago I attempted to upgrade to iOS 5.1 (after receiving a notification on the phone via the settings -> general -> software update that the upgrade was available).  I started the process to upgrade & after the phone rebooted, I was notified t