32-bit chroot failed to start

I was going about the process to set up the 32-bit chroot so I could use Adobe Acrobat on my system, but systemctl failed to start the service. Output of "systemctl status arch32.service" is as follows:
Loaded: loaded (/etc/systemd/system/arch32.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Fri 2015-05-29 18:10:29 EDT; 11s ago
Process: 1295 ExecStart=/usr/local/bin/arch32 start (code=exited, status=1/FAILURE)
Main PID: 1295 (code=exited, status=1/FAILURE)
May 29 18:10:29 the-enforcer systemd[1]: Starting 32-bit chroot...
May 29 18:10:29 the-enforcer systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
May 29 18:10:29 the-enforcer systemd[1]: Failed to start 32-bit chroot.
May 29 18:10:29 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service failed.
output of "journalctl -xe" is as follows
-- Subject: Unit arch32.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has failed.
-- The result is failed.
May 29 18:09:07 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:09:07 the-enforcer systemd[1]: arch32.service failed.
May 29 18:09:07 the-enforcer polkitd[309]: Unregistered Authentication Agent for unix-process:1242:62178 (system bus name :1.65, object path /org/freedesktop/PolicyKit1/Authen
May 29 18:09:07 the-enforcer sudo[1241]: pam_unix(sudo:session): session closed for user root
May 29 18:09:25 the-enforcer sudo[1258]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/local/bin/arch32 start
May 29 18:09:25 the-enforcer sudo[1258]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:09:25 the-enforcer sudo[1258]: pam_unix(sudo:session): session closed for user root
May 29 18:09:51 the-enforcer /usr/lib/gdm/gdm-x-session[517]: Activating service name='org.gnome.Terminal'
May 29 18:09:51 the-enforcer /usr/lib/gdm/gdm-x-session[517]: Successfully activated service 'org.gnome.Terminal'
May 29 18:10:02 the-enforcer sudo[1281]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/local/bin/arch32 stop
May 29 18:10:02 the-enforcer sudo[1281]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:10:03 the-enforcer sudo[1281]: pam_unix(sudo:session): session closed for user root
May 29 18:10:29 the-enforcer sudo[1289]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/bin/systemctl start arch32.service
May 29 18:10:29 the-enforcer sudo[1289]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:10:29 the-enforcer polkitd[309]: Registered Authentication Agent for unix-process:1290:70456 (system bus name :1.66 [/usr/bin/pkttyagent --notify-fd 5 --fallback], o
May 29 18:10:29 the-enforcer systemd[1]: Starting 32-bit chroot...
-- Subject: Unit arch32.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has begun starting up.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
May 29 18:10:29 the-enforcer systemd[1]: Failed to start 32-bit chroot.
-- Subject: Unit arch32.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has failed.
-- The result is failed.
May 29 18:10:29 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service failed.
May 29 18:10:29 the-enforcer sudo[1289]: pam_unix(sudo:session): session closed for user root
May 29 18:10:29 the-enforcer polkitd[309]: Unregistered Authentication Agent for unix-process:1290:70456 (system bus name :1.66, object path /org/freedesktop/PolicyKit1/Authen
lines 1322-1364/1364 (END)
Here's what my arch32.service file looks like:
[Unit]
Description=32-bit chroot
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/arch32 start
ExecStop=/usr/local/bin/arch32 stop
[Install]
WantedBy=multi-user.target
Here's what my /usr/local/bin/arch32 file looks like
#!/bin/bash
## User variables.
MOUNTPOINT=/opt/arch32
## Set MANAGEPARTITION to any value if /opt/arch32 resides on a separate
## partition and not mounted by /etc/fstab or some other means.
## If /opt/arch32 is part of your rootfs, leave this empty.
MANAGEPARTITION=
## Leave USEDISTCC empty unless you wish to use distccd from within the chroot.
USEDISTCC=
DISTCC_SUBNET='10.9.8.0/24'
## PIDFILE shouldn't need to ba changed from this default.
PIDFILE=/run/arch32
start_distccd() {
[[ ! -L "$MOUNTPOINT"/usr/bin/distccd-chroot ]] &&
ln -s /usr/bin/distccd "$MOUNTPOINT"/usr/bin/distccd-chroot
DISTCC_ARGS="--user nobody --allow $DISTCC_SUBNET --port 3692 --log-level warning --log-file /tmp/distccd-i686.log"
[[ -z "$(pgrep distccd-chroot)" ]] &&
linux32 chroot "$MOUNTPOINT" /bin/bash -c "/usr/bin/distccd-chroot --daemon $DISTCC_ARGS"
stop_distccd() {
[[ -n "$(pgrep distccd-chroot)" ]] &&
linux32 chroot "$MOUNTPOINT" /bin/bash -c "pkill -SIGTERM distccd-chroot"
case $1 in
start)
[[ -f "$PIDFILE" ]] && exit 1
if [[ -n "$MANAGEPARTITION" ]]; then
mountpoint -q $MOUNTPOINT || mount LABEL="arch32" $MOUNTPOINT
fi
dirs=(/tmp /dev /dev/pts /home)
for d in "${dirs[@]}"; do
mount -o bind $d "$MOUNTPOINT"$d
done
mount -t proc none "$MOUNTPOINT/proc"
mount -t sysfs none "$MOUNTPOINT/sys"
touch "$PIDFILE"
[[ -n "$USEDISTCC" ]] && start_distccd
stop)
[[ ! -f "$PIDFILE" ]] && exit 1
[[ -n "$USEDISTCC" ]] && stop_distccd
if [[ -n "$MANAGEPARTITION" ]]; then
umount -R -A -l "$MOUNTPOINT"
else
dirs=(/home /dev/pts /dev /tmp)
[[ -n "$USEDISTCC" ]] && stop_distccd
umount "$MOUNTPOINT"/{sys,proc}
for d in "${dirs[@]}"; do
umount -l "$MOUNTPOINT$d"
done
fi
rm -f "$PIDFILE"
echo "usage: $0 (start|stop)"
exit 1
esac
Any ideas as to what's going on?

I was going about the process to set up the 32-bit chroot so I could use Adobe Acrobat on my system, but systemctl failed to start the service. Output of "systemctl status arch32.service" is as follows:
Loaded: loaded (/etc/systemd/system/arch32.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Fri 2015-05-29 18:10:29 EDT; 11s ago
Process: 1295 ExecStart=/usr/local/bin/arch32 start (code=exited, status=1/FAILURE)
Main PID: 1295 (code=exited, status=1/FAILURE)
May 29 18:10:29 the-enforcer systemd[1]: Starting 32-bit chroot...
May 29 18:10:29 the-enforcer systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
May 29 18:10:29 the-enforcer systemd[1]: Failed to start 32-bit chroot.
May 29 18:10:29 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service failed.
output of "journalctl -xe" is as follows
-- Subject: Unit arch32.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has failed.
-- The result is failed.
May 29 18:09:07 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:09:07 the-enforcer systemd[1]: arch32.service failed.
May 29 18:09:07 the-enforcer polkitd[309]: Unregistered Authentication Agent for unix-process:1242:62178 (system bus name :1.65, object path /org/freedesktop/PolicyKit1/Authen
May 29 18:09:07 the-enforcer sudo[1241]: pam_unix(sudo:session): session closed for user root
May 29 18:09:25 the-enforcer sudo[1258]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/local/bin/arch32 start
May 29 18:09:25 the-enforcer sudo[1258]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:09:25 the-enforcer sudo[1258]: pam_unix(sudo:session): session closed for user root
May 29 18:09:51 the-enforcer /usr/lib/gdm/gdm-x-session[517]: Activating service name='org.gnome.Terminal'
May 29 18:09:51 the-enforcer /usr/lib/gdm/gdm-x-session[517]: Successfully activated service 'org.gnome.Terminal'
May 29 18:10:02 the-enforcer sudo[1281]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/local/bin/arch32 stop
May 29 18:10:02 the-enforcer sudo[1281]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:10:03 the-enforcer sudo[1281]: pam_unix(sudo:session): session closed for user root
May 29 18:10:29 the-enforcer sudo[1289]: shaun : TTY=pts/0 ; PWD=/home/shaun ; USER=root ; COMMAND=/usr/bin/systemctl start arch32.service
May 29 18:10:29 the-enforcer sudo[1289]: pam_unix(sudo:session): session opened for user root by shaun(uid=0)
May 29 18:10:29 the-enforcer polkitd[309]: Registered Authentication Agent for unix-process:1290:70456 (system bus name :1.66 [/usr/bin/pkttyagent --notify-fd 5 --fallback], o
May 29 18:10:29 the-enforcer systemd[1]: Starting 32-bit chroot...
-- Subject: Unit arch32.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has begun starting up.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
May 29 18:10:29 the-enforcer systemd[1]: Failed to start 32-bit chroot.
-- Subject: Unit arch32.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Unit arch32.service has failed.
-- The result is failed.
May 29 18:10:29 the-enforcer systemd[1]: Unit arch32.service entered failed state.
May 29 18:10:29 the-enforcer systemd[1]: arch32.service failed.
May 29 18:10:29 the-enforcer sudo[1289]: pam_unix(sudo:session): session closed for user root
May 29 18:10:29 the-enforcer polkitd[309]: Unregistered Authentication Agent for unix-process:1290:70456 (system bus name :1.66, object path /org/freedesktop/PolicyKit1/Authen
lines 1322-1364/1364 (END)
Here's what my arch32.service file looks like:
[Unit]
Description=32-bit chroot
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/arch32 start
ExecStop=/usr/local/bin/arch32 stop
[Install]
WantedBy=multi-user.target
Here's what my /usr/local/bin/arch32 file looks like
#!/bin/bash
## User variables.
MOUNTPOINT=/opt/arch32
## Set MANAGEPARTITION to any value if /opt/arch32 resides on a separate
## partition and not mounted by /etc/fstab or some other means.
## If /opt/arch32 is part of your rootfs, leave this empty.
MANAGEPARTITION=
## Leave USEDISTCC empty unless you wish to use distccd from within the chroot.
USEDISTCC=
DISTCC_SUBNET='10.9.8.0/24'
## PIDFILE shouldn't need to ba changed from this default.
PIDFILE=/run/arch32
start_distccd() {
[[ ! -L "$MOUNTPOINT"/usr/bin/distccd-chroot ]] &&
ln -s /usr/bin/distccd "$MOUNTPOINT"/usr/bin/distccd-chroot
DISTCC_ARGS="--user nobody --allow $DISTCC_SUBNET --port 3692 --log-level warning --log-file /tmp/distccd-i686.log"
[[ -z "$(pgrep distccd-chroot)" ]] &&
linux32 chroot "$MOUNTPOINT" /bin/bash -c "/usr/bin/distccd-chroot --daemon $DISTCC_ARGS"
stop_distccd() {
[[ -n "$(pgrep distccd-chroot)" ]] &&
linux32 chroot "$MOUNTPOINT" /bin/bash -c "pkill -SIGTERM distccd-chroot"
case $1 in
start)
[[ -f "$PIDFILE" ]] && exit 1
if [[ -n "$MANAGEPARTITION" ]]; then
mountpoint -q $MOUNTPOINT || mount LABEL="arch32" $MOUNTPOINT
fi
dirs=(/tmp /dev /dev/pts /home)
for d in "${dirs[@]}"; do
mount -o bind $d "$MOUNTPOINT"$d
done
mount -t proc none "$MOUNTPOINT/proc"
mount -t sysfs none "$MOUNTPOINT/sys"
touch "$PIDFILE"
[[ -n "$USEDISTCC" ]] && start_distccd
stop)
[[ ! -f "$PIDFILE" ]] && exit 1
[[ -n "$USEDISTCC" ]] && stop_distccd
if [[ -n "$MANAGEPARTITION" ]]; then
umount -R -A -l "$MOUNTPOINT"
else
dirs=(/home /dev/pts /dev /tmp)
[[ -n "$USEDISTCC" ]] && stop_distccd
umount "$MOUNTPOINT"/{sys,proc}
for d in "${dirs[@]}"; do
umount -l "$MOUNTPOINT$d"
done
fi
rm -f "$PIDFILE"
echo "usage: $0 (start|stop)"
exit 1
esac
Any ideas as to what's going on?

Similar Messages

  • After Win 8.1 upgrade, NCB, NLS, BITS fail to start, other corruption?

    Recent Win 8.0 pro just upgraded to 8.1 through store.  After upgrade, a number of things don't work, suggesting corruption.
    Event 7023 
    The Network Connection Broker service terminated with the following error: 
    Network Connection Broker is not a valid Win32 application.
    Event 7023 
    The Network List Service service terminated with the following error: 
    Network List Service is not a valid Win32 application.
    Chrome to google won't accept the certificate, suggesting root certificate file corruption.
    trying to manually run windows update, three updates are selected, but trying to download them hangs. 
    Event 16392
    The BITS service failed to start.  Error 0x80040154.
    How do I re-run upgrade or otherwise recover?
    thx
    -dB

    Finally getting back to this.  SFC is unable to correct several hundred files with errors such as
    2013-11-29 14:18:57, Info                  CSI    0000009a Hashes for file member \SystemRoot\WinSxS\amd64_microsoft-windows-computer-name-ui_31bf3856ad364e35_6.3.9600.16384_none_fec58799c27a34d6\netid.dll
    do not match actual file [l:18{9}]"netid.dll" :
    2013-11-29 14:18:57, Info                  CSI    0000009b [SR] Cannot repair member file [l:18{9}]"netid.dll" of Microsoft-Windows-Computer-Name-UI, Version = 6.3.9600.16384, pA = PROCESSOR_ARCHITECTURE_AMD64
    (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2013-11-29 14:19:02, Info                  CSI    000000ae Hashes for file member \SystemRoot\WinSxS\amd64_microsoft-windows-computer-name-ui_31bf3856ad364e35_6.3.9600.16384_none_fec58799c27a34d6\netid.dll
    do not match actual file [l:18{9}]"netid.dll" :
    Among the major problems is being unable to get updates, because BITS won't start:
    The server {4991D34B-80A1-4291-83B6-3328366B9097} did not register with DCOM within the required timeout.
    The Background Intelligent Transfer Service service terminated with the following service-specific error: 
    Class not registered
    The BITS service failed to start.  Error 0x80040154.
    I'd really like to do a refresh of 8.1, or re-run the update from 8.0.   How to do either?
    thx
    -dB

  • HT1349 Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."

    Initially iTunes would not run although it had been running quite well up until now. Suddenly received this error on PC start-up "The program can't start because MSVC80.dll is missing from your computer. Try reinstalling the program to fix this problem." Research on Net pointed me to iTunes as the issue. Tried to start iTunes and received that message again. Tried installing latest version of 64-bit iTunes and received the subject message part way through the install: Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."
    iTunes has been running great on this PC for years. What's up?
    Ron

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I tried to install Itunes 11.1.4 on Windows 7 64 bit and got the error message, "Service 'Apple Mobile Device'(Apple Mobile Device) failed to start.  Verify that you have sufficient privilliages to start system services."

    I tried to install Itunes ver 11.1.4 on my Windows7 64 bit system and got this message: “Service ‘Apple Mobile Device’(Apple Mobile Device) failed to start.  Verify that you have sufficient privilliages to start system services.”
    I have administrator privillages so I dont understand what the problem is.  I have loaded previous versions of Itunes before.  Has anyone else had this problem?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • JDeveloper 11g 11.1.0 fails to start Defaultdomain for Windows7 with 64-bit

    JDeveloper 11g 11.1.0 fails to start default domain in Windows 7 with 64-bit process
    Any solution welcome to over the the issue.
    Find the error/log message below.
    [07:36:52 PM] Creating Integrated Weblogic domain...
    [07:36:53 PM] ERROR: An error occurred while building the default domain.
    Please see this log file for more details:
    C:\Users\loginuser\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\o.j2ee.adrs\CreateDefaultDomain.log
    Log File: C:\Users\loginuser\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\o.j2ee.adrs\CreateDefaultDomain.log
    Label: JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407
    Product Home: C:\oracle\11.1.0\jdeveloper\jdev\
    Domain: C:\Users\loginuser\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain
    "C:\oracle\11.1.0\jdeveloper\common\bin\wlst.cmd" "C:\Users\loginuser\AppData\Roaming\JDeveloper\system11.1.1.1.33.54.07\o.j2ee.adrs\CreateDefaultDomain.py"
    Process started
    wlst > The system cannot find the path specified.
    Elapsed time: 839 ms

    Try this search JDeveloper and ADF
    and see if you find something which helps you.
    Timo

  • Windows 7 32 bit failed to start .A recent Hardware or software change might be the cause.

    Windows 7 32 bit failed to start .A recent Hardware or software change might be the cause.To fix the Problem.
    1.Insert your Windows Installation disc and restart your computer.
    2.Choose your langauge settings and then click "Next".
    3.click "Repair  your computer".
    status:0xcooooooe
    Info: The boot selection failed because a required device is inaccessible.
    please find me solution immediately. it's urgent.

    Hi 12345Kiran,
    Thank you for visiting the HP Support Forums and Welcome. I have read your thread on your HP Notebook and looping repair screen on startup. Try performing a hard reset. When performing a hard reset please note remove any and all USB devices, and remove memory cards from the card reader slot. Disconnect all non-essential devices. If that does not help try to turn on the computer you start to press F11 repeatedly till the menu opens. You can do a system restore.
     I would be happy to assist if needed as there are many models of HP I would need the model number. How Do I Find My Model Number or Product Number?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Unable to download iTunes on my second windows computer (64 bit). I got it fine on my first one. After downloading the program and installing it, I keep getting an error message:Apple Mobile Device Failed to Start. This happens wven when my IPhone 5c is t

    I am unable to download iTunes on my second Windows 8 computer (64 bit). I got it fine on my first one and have used it quite a bit. After downloading the program and installing it on the second computer, I keep getting this error message: "Apple Mobile Device Failed to Start." This happens when when my IPhone 5c is connected via Wi-Fi and I have clicked on "Trust This Computer." (I have tried to install several times-- It gets hung up when it reaches"Starting Services.")

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    Should you get the error iTunes.exe - Entry Point Not Found after the above reinstall then copy QTMovieWin.dll from:
    C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    and paste into:
    C:\Program Files (x86)\iTunes
    The above paths would be for a 64-bit machine. Hopefully the same fix with the " (x86)" omitted would work on 32-bit systems with the same error.
    tt2

  • Dell 64 bit pc . Tried updating to latest version.  Error message says Apple mobile device service failed to start. Verify you have sufficient privileges to start system services.  What does that mean?

    I have a dell 64 bit pc and had an older version of ITunes installed.  When I tried to install the 12--- version, the install stopped with the message, "Apple Mobile Device Services failed to start, verify that you have sufficient privileges to start systems services".   I have no clue what that means.  can anyone help.  ????

    Hi doywks,
    The Apple Mobile Device is a component of iTunes that communicates between your computer and your iPhone or iOS device.  The error message you are seeing "verify that you have sufficient privileges to start system services" has to do with the Windows operating system.  It's possible that you are not logged in as the administrator for your Windows PC.  Or, you may have antivirus software stopping the Apple Mobile Device from running.  
    If you are having issues updating iTunes on your PC, follow the steps in the article below.
    If you can't install or update iTunes for Windows - Apple Support
    https://support.apple.com/en-us/HT201668
    How to restart the Apple Mobile Device Service (AMDS) on Windows - Apple Support
    https://support.apple.com/en-us/HT203188
    I hope this information helps ....
    - Judy

  • Itunes won't install. I get a message stating "apple mobile device failed to start. Verify that you have sufficient priveleges to start system services. I had itunes on this laptop and an urgrade came. Now nothing. Windows7, 64 bit

    itunes won't install. I get a message stating "apple mobile device failed to start. Verify that you have sufficient priveleges to start system services. I had itunes on this laptop and an urgrade came. Now nothing. Windows7, 64 bit

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • I'm installing the newest itunes 64 bit on my win 7 64 bit professional os. using the itunes installer it loads itunes part way and then i get an error message saying that bonjour service failed to start. i cant get itunes any further. i have to back out

    I'm installing the newest version of Itunes over the last version on my laptop. win 7 pro os. it starts the install then a error msg comes up stating that Bonjour service failed to start. verify that i have sufficient priveleges to start system services. I can't retry, ignore only cancel which un-installs all that it has installed and reverts me to the last version which i had. any idea?

    it starts the install then a error msg comes up stating that Bonjour service failed to start. verify that i have sufficient priveleges to start system services.
    Sometimes we can get past that one by disabling the Bonjour Service prior to the install.
    In your Start menu, right-click Computer and select "Manage".
    Expand "Services & Applications".
    Open "Services". (Perhaps maximise the screen to better see what's going on.)
    Right-click the Bonjour Service and select "Properties".
    In the General tab, set the Startup type to "Disabled":
    ... and click OK.
    Restart the PC and try another iTunes install. Does it go through properly this time?

  • Arch32.service fails on start. bundled 32bit system

    I am using the install bundled 32bit system in 64bit system wiki and I think I am having trouble in the systemd service  part.
    I am getting an error starting the arch32 service with systemctl. I have looked at the error messages and I am just not sure what is wrong here. Can someone point out what the error message is telling me, so that I can, in the future, read error messages better? I have did searches and google came up short. I am an eager Linux student. I would more than appreaciate any "hints" so that I can become better and be more value as I help others. Thank you.
    systemctl start arch32
    ## Job for arch32.service failed. See "systemctl status arch32.service" and "journalctl -xe" for details.
    The result of systemct status message...
    # systemctl status -l arch32
    ● arch32.service - 32-bit chroot
    Loaded: loaded (/etc/systemd/system/arch32.service; disabled; vendor preset: disabled)
    Active: failed (Result: exit-code) since Fri 2015-05-22 10:32:54 EDT; 8min ago
    Process: 980 ExecStart=/usr/local/bin/arch32 start (code=exited, status=1/FAILURE)
    Main PID: 980 (code=exited, status=1/FAILURE)
    May 22 10:32:53 archhost systemd[1]: Starting 32-bit chroot...
    May 22 10:32:54 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 22 10:32:54 archhost systemd[1]: Failed to start 32-bit chroot.
    May 22 10:32:54 archhost systemd[1]: Unit arch32.service entered failed state.
    May 22 10:32:54 archhost systemd[1]: arch32.service failed.
    The result of jouornalctl message...
    # journalctl -xe
    May 23 07:41:27 archhost org.a11y.Bus[3104]: Activating service name='org.a11y.atspi.Registry'
    May 23 07:41:28 archhost org.a11y.Bus[3104]: Successfully activated service 'org.a11y.atspi.Registry'
    May 23 07:41:28 archhost org.a11y.atspi.Registry[3233]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    May 23 07:41:28 archhost polkitd[3111]: Registered Authentication Agent for unix-session:c1 (system bus name :1.13 [/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    May 23 07:41:32 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0xffd0
    May 23 07:41:32 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0xffd1
    May 23 07:41:32 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0x187
    May 23 07:41:32 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0x188
    May 23 07:41:32 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0x187
    May 23 07:41:33 archhost kernel: dell_wmi: Unknown WMI event type 0x11: 0x188
    May 23 07:49:50 archhost sudo[3422]: codeamend : TTY=pts/0 ; PWD=/usr/local/bin ; USER=root ; COMMAND=/usr/bin/systemctl start arch32
    May 23 07:49:50 archhost sudo[3422]: pam_unix(sudo:session): session opened for user root by codeamend(uid=0)
    May 23 07:49:50 archhost polkitd[3111]: Registered Authentication Agent for unix-process:3423:70961 (system bus name :1.14 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    May 23 07:49:50 archhost systemd[1]: Starting 32-bit chroot...
    -- Subject: Unit arch32.service has begun start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has begun starting up.
    May 23 07:49:50 archhost arch32[3428]: mount: mount point /opt/arch32/scratch does not exist
    May 23 07:49:50 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 23 07:49:50 archhost systemd[1]: Failed to start 32-bit chroot.
    -- Subject: Unit arch32.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has failed.
    -- The result is failed.
    May 23 07:49:50 archhost systemd[1]: Unit arch32.service entered failed state.
    May 23 07:49:50 archhost systemd[1]: arch32.service failed.
    May 23 07:49:50 archhost sudo[3422]: pam_unix(sudo:session): session closed for user root
    May 23 07:49:50 archhost polkitd[3111]: Unregistered Authentication Agent for unix-process:3423:70961 (system bus name :1.14, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
    May 23 07:53:11 archhost systemd[1]: Starting Cleanup of Temporary Directories...
    -- Subject: Unit systemd-tmpfiles-clean.service has begun start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-tmpfiles-clean.service has begun starting up.
    May 23 07:53:11 archhost systemd[1]: Started Cleanup of Temporary Directories.
    -- Subject: Unit systemd-tmpfiles-clean.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-tmpfiles-clean.service has finished starting up.
    -- The start-up result is done.
    Last edited by AcousticBruce (2015-05-23 15:57:21)

    graysky wrote:Edit your /usr/local/bin/arch32 script removing the reference to '/scratch' unless you actually have it on your system.  That was a typo from me on the wiki which has now been corrected.
    I removed the /scratch from two areas and made a copy of the wiki version just in case I was wrong. I still got these errors.
    $ systemctl status -l arch32.service
    ● arch32.service - 32-bit chroot
    Loaded: loaded (/etc/systemd/system/arch32.service; disabled; vendor preset: disabled)
    Active: failed (Result: exit-code) since Sun 2015-05-24 08:53:49 EDT; 20s ago
    Process: 2139 ExecStart=/usr/local/bin/arch32 start (code=exited, status=1/FAILURE)
    Main PID: 2139 (code=exited, status=1/FAILURE)
    May 24 08:53:49 archhost systemd[1]: Starting 32-bit chroot...
    May 24 08:53:49 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 24 08:53:49 archhost systemd[1]: Failed to start 32-bit chroot.
    May 24 08:53:49 archhost systemd[1]: Unit arch32.service entered failed state.
    May 24 08:53:49 archhost systemd[1]: arch32.service failed
    $ journalctl -xe
    -- Unit arch32.service has begun starting up.
    May 24 08:49:36 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 24 08:49:36 archhost systemd[1]: Failed to start 32-bit chroot.
    -- Subject: Unit arch32.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has failed.
    -- The result is failed.
    May 24 08:49:36 archhost polkitd[663]: Unregistered Authentication Agent for unix-process:2103:877657 (system bus name :1.20, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
    May 24 08:49:36 archhost systemd[1]: Unit arch32.service entered failed state.
    May 24 08:49:36 archhost systemd[1]: arch32.service failed.
    May 24 08:53:45 archhost polkitd[663]: Registered Authentication Agent for unix-process:2132:902936 (system bus name :1.24 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    May 24 08:53:49 archhost polkitd[663]: Operator of unix-session:c1 successfully authenticated as unix-user:codeamend to gain TEMPORARY authorization for action org.freedesktop.systemd1.manage-units for system-bus-name::1.25 [systemctl start arch32] (owned by unix-user:codeamend)
    May 24 08:53:49 archhost systemd[1]: Starting 32-bit chroot...
    -- Subject: Unit arch32.service has begun start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has begun starting up.
    May 24 08:53:49 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 24 08:53:49 archhost systemd[1]: Failed to start 32-bit chroot.
    -- Subject: Unit arch32.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has failed.
    -- The result is failed.
    May 24 08:53:49 archhost systemd[1]: Unit arch32.service entered failed state.
    May 24 08:53:49 archhost systemd[1]: arch32.service failed.
    May 24 08:53:49 archhost polkitd[663]: Unregistered Authentication Agent for unix-process:2132:902936 (system bus name :1.24, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
    May 24 08:56:04 archhost sudo[2156]: codeamend : TTY=pts/2 ; PWD=/opt/arch32/usr/local/bin ; USER=root ; COMMAND=/usr/bin/nano arch32
    May 24 08:56:04 archhost sudo[2156]: pam_unix(sudo:session): session opened for user root by codeamend(uid=0)
    May 24 08:56:21 archhost sudo[2156]: pam_unix(sudo:session): session closed for user root
    May 24 08:56:24 archhost polkitd[663]: Registered Authentication Agent for unix-process:2160:918835 (system bus name :1.28 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
    May 24 08:56:28 archhost polkitd[663]: Operator of unix-session:c1 successfully authenticated as unix-user:codeamend to gain TEMPORARY authorization for action org.freedesktop.systemd1.manage-units for system-bus-name::1.29 [systemctl start arch32] (owned by unix-user:codeamend)
    May 24 08:56:28 archhost systemd[1]: Starting 32-bit chroot...
    -- Subject: Unit arch32.service has begun start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has begun starting up.
    May 24 08:56:28 archhost systemd[1]: arch32.service: main process exited, code=exited, status=1/FAILURE
    May 24 08:56:28 archhost systemd[1]: Failed to start 32-bit chroot.
    -- Subject: Unit arch32.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit arch32.service has failed.
    -- The result is failed.
    May 24 08:56:28 archhost systemd[1]: Unit arch32.service entered failed state.
    May 24 08:56:28 archhost systemd[1]: arch32.service failed.
    May 24 08:56:28 archhost polkitd[663]: Unregistered Authentication Agent for unix-process:2160:918835 (system bus name :1.28, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)

  • Xorg-server 1.9 excessive CPU usage through a 32-bit chroot - bug?

    Xorg goes crazy tapping my cpu usage when I compile in a 32-bit chroot.  >60 % of the total CPU is going to Xorg rather than to gcc (running Gnome if that matters).  The htop screenshot below shows X and gdm using it.  I know that if I start gnome from init 3 without gdm the same problem occurs except htop just shows X as the culprit.
    X :0
    Further, packages fail to build when I run makepkg through X.  If I run it when I'm in init 3 without X at all the very same package successfully builds.  If I leave myself logged into Gnome and open tty1 and enter the chroot there, it builds.
    Any thoughts why?  That has to be a bug in Xorg given the conditions I explained above.  Does anyone have an idea as to preventing this?
    I entered the 32-bit chroot via: linux32 chroot /opt/arch32 /bin/bash
    The package I was attempting to build under X is a kernel if that matters; here is the last bit of the log before the error:
    Here is the last bit before the errors:
    gcc: vfork: Resource temporarily unavailable
    make[3]: *** [drivers/dma/ioat/pci.o] Error 1
    make[3]: *** Waiting for unfinished jobs....
    CC [M] drivers/char/agp/ali-agp.o
    CC [M] drivers/char/ipmi/ipmi_smic_sm.o
    CC [M] drivers/char/agp/ati-agp.o
    CC [M] drivers/char/ipmi/ipmi_bt_sm.o
    gcc: vfork: Resource temporarily unavailable
    make[3]: *** [drivers/char/agp/backend.o] Error 1
    make[3]: *** Waiting for unfinished jobs....
    CC [M] drivers/char/ipmi/ipmi_watchdog.o
    make[2]: *** [drivers/dma/ioat] Error 2
    make[1]: *** [drivers/dma] Error 2
    CC [M] drivers/char/ipmi/ipmi_poweroff.o
    LD drivers/char/mwave/built-in.o
    CC [M] drivers/char/mwave/mwavedd.o
    make[2]: *** [drivers/char/agp] Error 2
    make[2]: *** Waiting for unfinished jobs....
    LD [M] drivers/char/ipmi/ipmi_si.o
    CC [M] drivers/char/mwave/smapi.o
    CC [M] drivers/char/mwave/tp3780i.o
    CC [M] drivers/char/mwave/3780i.o
    LD [M] drivers/char/mwave/mwave.o
    make[1]: *** [drivers/char] Error 2
    make: *** [drivers] Error 2
    Aborting...
    Last edited by graysky (2010-10-02 17:08:42)

    Xorg goes crazy tapping my cpu usage when I compile in a 32-bit chroot.  >60 % of the total CPU is going to Xorg rather than to gcc (running Gnome if that matters).  The htop screenshot below shows X and gdm using it.  I know that if I start gnome from init 3 without gdm the same problem occurs except htop just shows X as the culprit.
    X :0
    Further, packages fail to build when I run makepkg through X.  If I run it when I'm in init 3 without X at all the very same package successfully builds.  If I leave myself logged into Gnome and open tty1 and enter the chroot there, it builds.
    Any thoughts why?  That has to be a bug in Xorg given the conditions I explained above.  Does anyone have an idea as to preventing this?
    I entered the 32-bit chroot via: linux32 chroot /opt/arch32 /bin/bash
    The package I was attempting to build under X is a kernel if that matters; here is the last bit of the log before the error:
    Here is the last bit before the errors:
    gcc: vfork: Resource temporarily unavailable
    make[3]: *** [drivers/dma/ioat/pci.o] Error 1
    make[3]: *** Waiting for unfinished jobs....
    CC [M] drivers/char/agp/ali-agp.o
    CC [M] drivers/char/ipmi/ipmi_smic_sm.o
    CC [M] drivers/char/agp/ati-agp.o
    CC [M] drivers/char/ipmi/ipmi_bt_sm.o
    gcc: vfork: Resource temporarily unavailable
    make[3]: *** [drivers/char/agp/backend.o] Error 1
    make[3]: *** Waiting for unfinished jobs....
    CC [M] drivers/char/ipmi/ipmi_watchdog.o
    make[2]: *** [drivers/dma/ioat] Error 2
    make[1]: *** [drivers/dma] Error 2
    CC [M] drivers/char/ipmi/ipmi_poweroff.o
    LD drivers/char/mwave/built-in.o
    CC [M] drivers/char/mwave/mwavedd.o
    make[2]: *** [drivers/char/agp] Error 2
    make[2]: *** Waiting for unfinished jobs....
    LD [M] drivers/char/ipmi/ipmi_si.o
    CC [M] drivers/char/mwave/smapi.o
    CC [M] drivers/char/mwave/tp3780i.o
    CC [M] drivers/char/mwave/3780i.o
    LD [M] drivers/char/mwave/mwave.o
    make[1]: *** [drivers/char] Error 2
    make: *** [drivers] Error 2
    Aborting...
    Last edited by graysky (2010-10-02 17:08:42)

  • "Apple Mobile Device" failed to start. itunes does not recognize my iPhone4.

    I decided it was time to resync the music on my iPhone since its been months. I begin the sync and after a minute or so, my iTunes suddenly does not recognize my iPhone and freezes. I honestly have no idea what happened but was undaunted.
    OS is MS Windows 7 Home Premium 64 bit SP1
    Now, after trying:   
    - updating to iTunes 10.6.3, which stops installing after a popup saying "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services. With the options Abort Retry or Ignore. Retry does nothing. Ignore allows iTunes to install but it doesn't recognize my phone still which is all I care to use iTunes for.
    - uninstalling all iTunes, Apple, Quicktime, and Bonjour software, which was difficult to do since you have to follow a particular order or else they wont actually uninstall.
    - performing a registry clean using CC Cleaner
    - wiping my compter's apple related Temp files in app data..
    - restarting with a clean boot... updating all drivers.. updating windows..
    I am becoming quite daunted.
    I have done essentially every single thing I could find that might resolve this error. I restarted and tried again (this is the third or maybe four time) and it still will not install.
    I cannot get any third party software to recognize the phone either since I need that Apple Mobile Device. I could always sync my library with Spotify but that's cumbersome and makes me not like my beautiful iPhone.
    Any help would be AMAZING. I've run out of ideas.

    The link above is bad... that account has been suspended.
    Just an FYI, I'm running Windows 7 Professional 64-bit and had just downloaded Itunes 10.7 for this platform.
    Please know that I have NEVER plugged any Apple device into this great computer.
    I have the new Iphone 5 READY to plugin and in ANTICIPATION of installing that phone; I first wanted to start by installing Itunes without any hardware potentially messing up the works.
    I have the exact same problem as reported here and in about 100 places here at Apple.  Please note this system has never seen ANY of these apple applications including quicktime, Itunes, Bonjour, or anything else from Apple for that matter.
    So basically, I'm stuck.  I've read the articles at about 20 sites now and it looks like this is a SEVERE and widespread problem; however, I have yet to find a "real" solution.
    Any advise would be greatly appreciated.  I'm an IT/Telecom Expert and it took me 3 hours to get the Iphone 5 setup and working properly (mainly because of the screen not working sideways for 95% of the configuration options and being forced to fat finger settings) including everything working with Icloud hosted contacts, facebook, a few networks and getting my gmail out of the way (of Icloud and facebook) and finally getting everything rocking, only to hit the wall when it came to Itunes.  Kind of a drag if you ask me.  (I'm thinking the Samsung Galaxy III that I returned to get this thing might have been less grief; but I guess we'll see).
    Anyone with a real fix, please reply!  I could use the help BEFORE I try to plug this phone into my computer!
    Thanks!

  • TS1609 Service 'Apple Mobile Device' (Apple Mobile Device) failed to start.  Verify that you have sufficient privileges to start system services.

    I recently purchased an Iphone 3gs, and already have an itunes account...Itunes wont recognize my iphone...I have uninstalled and installed itunes 2 times and keep getting this error message.
    Service ‘Apple Mobile Device’ (Apple Mobile Device) failed to start.  Verify that you have sufficient privileges to start system services.
    How do I correct?

           I had the same problem but managed to fix it with Amy ; the apple advisor. Here are the steps!
    First of all, make sure you have the latest version of iTunes installed. You can download it from here. These instructions will NOT work for iTunes 8, 9 or 10 anymore. If you’re unsure, just uninstall iTunes then re-install with the latest files.
    Next, you need to manually copy the Mobile Device Support directory from a working machine to your Windows 7 computer. Luckily, I have conveniently provided these files for you. You can download them here:
    64-Bit iTunes 11.0.2: Please click here to download this directory for 64-bit Windows.
    32-Bit iTunes 11.0.2: Please click here to download this directory for 32-bit Windows.
    Once you download that file, you need to Unzip it to this directory. IMPORTANT: Make sure you unzip the CONTENTS of the zip file, don’t just copy over the zip file:
    32-Bit: Unzip to C:\Program Files\Common Files\Apple
    64-Bit: Unzip to C:\Program Files (x86)\Common Files\Apple
    There are a large number of files in that directory, so it may take a little time, please be patient.
    So, after unzipping, you should have a new folder “Mobile Device Support” in the Apple folder
    64-BIT ONLY STEP: If you have 32-bit Windows, skip this step. It seems that Apple has put the “Drivers” in a separate location (don’t know why). You will need to download the drivers separately. Please click here to download the files for 64-bit Windows.
    Once downloaded, you need to Unzip it to this directory. IMPORTANT: Make sure you unzip the CONTENTS of the zip file, don’t just copy over the zip file:
    Unzip to: C:\Program FIles\Common Files\Apple
    So, after unzipping, you should have a new folder “Mobile Device Support” in the Apple folder
    Next, we have to merge the registry entries that will install the Apple Mobile Device service.
    First, download the registry entries that I have provided for you here:
    64-bit iTunes 11.0.2: Click here to download the registry entries for 64-bit Windows.
    32-bit iTunes 11.0.2: Click here to download the registry entries for 32-bit Windows.
    After you download the registry entries ZIP file, unzip it to your desktop and double-click each to install it. Say “Yes” to any prompts or confirmations about adding it to the registry. There are 2 entries, make sure you click BOTH and add BOTH to the registry.
    Now, we need to install the correct driver for your iPhone / iTouch. Windows 7 incorrectly identifies the device  as a digital camera. To fix this:
    - Plug in your iPhone / iTouch (don’t have iTunes loaded at this time)
    - Go to Device Manager (Click Start, right-click Computer,  then click Properties. In the window that appears choose “Device Manager” on the left)
    - Scroll down and find “Apple iPod” or “Apple iPhone” or “Apple iTouch”. It will likely be under the “Portable Devices” category.IMPORTANT NOTE: If your device is already listed under “Universal serial Bus Controllers” and not Portable Devices, you can skip these steps and go to Step 7.
    -  Right-click the Apple device and choose “Update Driver Software…”
    - Choose “Browse my computer for driver software” in the window that appears
    -  It will ask you for a location; you want to Browse to this folder (location is the same in 32 and 64 bit Windows):
    32-bit and 64-bit: C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers
    - Click Next
    - It should find the driver for your device; let it install that driver
    Once you complete these steps, reboot your computer. Once you reboot everything should work exactly as expected!

  • Unable to install iTunes 11.1.4.62 on Windows 8. I get Service "Apple Mobile Device" (Apple Mobile Device failed to start.  Verify that you have sufficent privileges to start system services.  I am trying to install this on my desktop not a mobile device.

    Unable to install iTunes 11.1.4.62 on windows 8.  I get
    Service "Apple mobile Device) failed to start. 
    Verify that you have sufficient privileges to start system services.
    I am trying to install it on my desktop.  I am also in Administrator mode.  My iTunes stopped working when I was notified that there was a new version of iTunes and would I like to download it. I said yes as always and it was unable to finish the update because of a
    runtime Error!
    Program: C:\program Files (x86)\iTunes\iTunes.exe
    R6034
    An application has made an attempt to load the C runtime library incorrectly.
    Please contace the application's suport team for more information.
    My iTunes stopped working at this time.  I thought I could delete iTunes and start over. This tactic did not work.
    Can anyone make sense of what I am saying and help me to get my iTunes back again?

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

Maybe you are looking for

  • How to highlight the selected value in a table

    Hi All, I have list of roles in a table like admin,dba...etc. i will select the current selected role using   Stgin role =wdCotext.currentElement().getRole(); After getting the role i bind this value in context. now my requiremnet is i will navigate

  • SQL Server 2008 self-signed certificate is 1024bit or 2048bit?

    When there is no user defined certificate available, SQL Server will generate a self-signed certificate when service starts, We have a tool scans and finds that in SQL 2005 the self-signed certificate is 1024bit,  does someone know the default self-s

  • Trying to download an attached PDF form to my computer, but it crashes my browser

    Trying to download an attached PDF, which was uploaded by a form user, causes my browser to crash EVERY SINGLE TIME. How do I fix this? Browser is IE 9. Thanks

  • Why the filters aren't working?

    I have created several filters for my two joined Inbox accounts, my filters have been established from the "create filter from..." option but they don't execute at all?? any clues on why this is happening? I tried all possible methods of creating fil

  • Setting up Auto save the email

    Hello everybody, Something is really anoying in mail : it always save the mail you're writing avery ten seconds. Does someone know how to set up the autosave delay or just shut it down ? That would be fabulous !! Thank a lot for your help, Thalies