Error: failed to prepare transaction (could not satisfy dependencies)

Hi,
I was going to install a winff package (a GUI front end to ffmpeg for converting between video formats), but when I ran yaourt -S winff and tried to install it refused because it isn't for the x86_64 architecture. So I decided to edit the PKGBUILD and perhaps try to force it anyway, but then I saw that the PKGBUILD is actually getting the precompiled RPM package and as I checked, while there was no precompiled 64bit version of the RPM there was one for a deb version that is offered on winff site.
Since deb's are just archives I ended up, after a few tries, with this PKGBUILD which uses ar and tar commands to get to the binaries inside of the amd64 deb:
# Contributor: yugrotavele <[email protected]>
# Modified by libervisco for x86_64
pkgname=winff-amd64
pkgver=0.42
pkgrel=1
pkgdesc="GUI for ffmpeg"
url="http://www.winff.org"
license=('GPL')
depends=('ffmpeg gtk gdk-pixbuf')
makedepends=('')
source=('http://winff.googlecode.com/files/winff-0.42-amd64.deb')
arch=('x86_64')
md5sums=('1febf5fd19fa76bdc1da06d3e6c4d3b8')
build() {
ar vx winff-0.42-amd64.deb
tar xvzf data.tar.gz
install -Dm755 $startdir/src/usr/bin/winff $startdir/pkg/usr/bin/winff
install -Dm755 $startdir/src/usr/share/winff/presets.xml $startdir/pkg/usr/share/winff/presets.xml
install -Dm755 $startdir/src/usr/share/winff/winff.png $startdir/pkg/usr/share/winff/winff.png
So what I basically do is run yaourt -S winff and when it asks whether I want to edit it, I edit it and replace the original PKGBUILD content with above.
It successfully runs the build() commands, finds and installs the dependencies, but when it's time to install the actual new winff package is throws up this:
loading package data...
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: winff: requires ffmpeg gtk gdk-pixbuf
I don't get it. It installed all the dependencies (and I even checked whether winff works in one of the earlier tries when I manually installed gdk-pixbuf when the binary asked for it). What does it want now?
Here is the whole process:
[daniel@memeport ~]$ yaourt -S winff
==> Downloading winff PKGBUILD from AUR...
Comment by: yugrotavele on 20080518 [04:36:56]
A nice GUI frontend for ffmpeg.
First Submitted: Sun, 18 May 2008 04:28:31 +0000
Last Updated: Mon, 30 Jun 2008 04:23:08 +0000
winff 0.42-1 (Unsupported): GUI for ffmpeg
==> winff dependencies:
- ffmpeg (already installed)
- rpmextract (already installed)
==> Edit the PKGBUILD (recommended) ? [Y/n] ("A" to abort)
==> ----------------------------------------------
==>y
Please add $EDITOR to your environment variables
for example:
==> Edit PKGBUILD with: (replace gvim with your favorite editor)
==> Edit ./PKGBUILD with: gedit
==> winff dependencies:
- ffmpeg (already installed)
- gtk (already installed)
- gdk-pixbuf (package found)
==> Continue the building of 'winff'? [Y/n]
==> ----------------------------------------------
==>y
==> Building and installing package
==> Making package: winff 0.42-1 (Tue Jul 1 21:34:12 CEST 2008)
==> Checking Runtime Dependencies...
==> Installing missing dependencies...
resolving dependencies...
looking for inter-conflicts...
Targets: gdk-pixbuf-0.22.0-4
Total Download Size: 0.00 MB
Total Installed Size: 0.70 MB
Proceed with installation? [Y/n]
checking package integrity...
(1/1) checking for file conflicts [############################################################] 100%
(1/1) installing gdk-pixbuf [############################################################] 100%
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
-> Downloading winff-0.42-amd64.deb...
--2008-07-01 21:34:13-- http://winff.googlecode.com/files/winff-0.42-amd64.deb
Resolving winff.googlecode.com... 64.233.187.82
Connecting to winff.googlecode.com|64.233.187.82|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1383594 (1.3M) [application/x-archive application/x-debian-package]
Saving to: `winff-0.42-amd64.deb'
100%[=============================================================================>] 1,383,594 191K/s in 7.4s
2008-07-01 21:34:21 (183 KB/s) - `winff-0.42-amd64.deb' saved [1383594/1383594]
==> Validating source files with md5sums...
winff-0.42-amd64.deb ... Passed
==> Extracting Sources...
==> Entering fakeroot environment...
==> Starting build()...
x - debian-binary
x - control.tar.gz
x - data.tar.gz
./usr/
./usr/bin/
./usr/bin/winff
./usr/share/
./usr/share/doc/
./usr/share/doc/winff/
./usr/share/doc/winff/copyright
./usr/share/doc/winff/winff.pdf
./usr/share/doc/winff/README.txt
./usr/share/doc/winff/README-Icons.txt
./usr/share/doc/winff/README-Presets.txt
./usr/share/doc/winff/changelog
./usr/share/applications/
./usr/share/applications/winff.desktop
./usr/share/winff/
./usr/share/winff/winff.png
./usr/share/winff/presets.xml
./usr/share/winff/languages/
./usr/share/winff/languages/winff.es.po
./usr/share/winff/languages/winff.nl.po
./usr/share/winff/languages/winff.fr.po
./usr/share/winff/languages/winff.pb.po
./usr/share/winff/languages/winff.tr.po
./usr/share/winff/languages/winff.de.po
./usr/share/winff/languages/winff.zh.po
./usr/share/winff/languages/winff.it.po
./usr/share/winff/languages/winff.pt.po
./usr/share/winff/languages/winff.pl.po
./usr/share/winff/languages/winff.bg.po
./usr/share/winff/languages/winff.po
==> Tidying install...
-> Removing info/doc files...
-> Compressing man pages...
-> Stripping debugging symbols from binaries and libraries...
==> Creating package...
-> Generating .PKGINFO file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: winff (Tue Jul 1 21:34:22 CEST 2008)
==> Continue installing 'winff'? [Y/n]
==> [v]iew package contents [c]heck package with namcap
==> ----------------------------------------------
==>y
loading package data...
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: winff: requires ffmpeg gtk gdk-pixbuf
==> WARNING: Your package is saved in /tmp/winff-0.42-1-x86_64.pkg.tar.gz
I tried doing it without changing the package name to winff-amd64, but same thing happens. What's going on?

Ahh man, and that's it! It works.
I'm just wondering now how can I contribute this PKGBUILD to AUR, but I can read that in the wiki too.
Thanks!

Similar Messages

  • [SOLVED] error: failed to prepare transaction (could not satisfy de...

    My attempts to yaourt (or pacmant) -Syu allow me to synch, & then give me the error used to title this thread:
    error: failed to prepare transaction (could not satisfy dependencies)
    Then I get a list of package upgrades, followed by the Total Download: figure & the Total Installed Size: figure  & then the terminal prompt?
    I can add & remove both simple & complex meta packages but I can't -Su
    Any ideas?
    Last edited by handy (2008-10-17 06:15:06)

    I'm doing a reinstall.
    This old test build has had some serious problems that have been recovered from with help in the past.  For many months I have thought that I will do a fresh install, cleaning out the fragments of previous explosions.
    Though I have struck a problem with GRUB.
    I'll do a search before I post a thread on it.
    Thanks to all for your time.
    By the way the latest 32bit install .iso does not like my hardware, kernel panicks with an error regarding my CPU in either installation method on the menu.  So I'm using my old 64bit core install disk.
    Last edited by handy (2008-10-15 03:24:49)

  • [SOLVED]error: failed to prepare transaction (could not ......

    I'm new user of arch linux , recently I thought of trying plasma 5 p.s i'm using kde  Platform Version 4.14.4. and i followed steps :
    sudo pacman -Syu
    and
    sudo pacman -R $(LANG=C pacman -Qi kdebase-workspace | grep "Req" | sed -e 's/Required By    : //g')
    because As for the Arch Wiki “Plasma 5 is not co-installable with KDE 4 Workspace
    but i got error:
    [alis@alis ~]$ sudo pacman -R $(LANG=C pacman -Qi kdebase-workspace | grep "Req" | sed -e 's/Required By    : //g')
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: kdeplasma-addons-applets-comic: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-kimpanel: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-konqprofiles: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-konsoleprofiles: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-microblog: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-rememberthemilk: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-social-news: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-weather: requires kdeplasma-addons-libs
    :: kdeplasma-addons-applets-weatherstation: requires kdeplasma-addons-libs
    :: kdeplasma-addons-wallpapers-potd: requires kdeplasma-addons-libs
    :: kdeplasma-addons-wallpapers-weather: requires kdeplasma-addons-libs
    how hard i try i wont be able to remove kde base worspace
    any idea to solve it ??
    Last edited by urzzalis (2015-01-26 05:25:03)

    The wiki is your friend, depending on your specific circumstances, there are a variety of ways to deal with this. You should mark this thread as solved though, and start a new thread if you can't find your answer to the volume issue by browsing the wiki. I use xbindkeys: https://wiki.archlinux.org/index.php/Xb … media_keys

  • [solved]dnsutils 9.4.2-1 Error "failed to prepare transaction"

    [root@arch-01 jada]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    warning: dnsutils: forcing upgrade to version 9.4.2-1
    resolving dependencies... done.
    error: failed to prepare transaction (could not satisfy dependencies)
    :: bind requires dnsutils=9.4.1_P1
    [root@arch-01 jada]#
    [root@arch-01 jada]# pacman -Sf dnsutils
    warning: dnsutils: forcing upgrade to version 9.4.2-1
    resolving dependencies... done.
    error: failed to prepare transaction (could not satisfy dependencies)
    :: bind requires dnsutils=9.4.1_P1
    [root@arch-01 jada]#
    what I have to do now?
    Last edited by JaDa (2007-12-24 04:11:39)

    [root@arch-01 jada]# pacman -Sy
    :: Synchronizing package databases...
    core is up to date
    extra 309.6K 277.1K/s 00:00:01 [#####################] 100%
    community is up to date
    local database is up to date
    [root@arch-01 jada]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    warning: bind: forcing upgrade to version 9.4.2-1
    warning: dnsutils: forcing upgrade to version 9.4.2-1
    resolving dependencies... done.
    looking for inter-conflicts... done.
    Targets: dnsutils-9.4.2-1 bind-9.4.2-1
    Total Package Size: 3.73 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    dnsutils 1908.5K 330.7K/s 00:00:06 [#####################] 100%
    :: Retrieving packages from extra...
    bind 1914.1K 505.4K/s 00:00:04 [#####################] 100%
    checking package integrity... done.
    cleaning up... done.
    (2/2) checking for file conflicts [#####################] 100%
    (1/2) upgrading dnsutils [#####################] 100%
    (2/2) upgrading bind [#####################] 100%
    [root@arch-01 jada]#

  • [SOLVED]pacman upgrade: error# failed to prepare transaction

    Whenever I am trying to install some packages using pacman, I get a message to upgrade pacman. When I say 'yes', I get an error message.
    ##code_begin##
    [root@arch matrix]# pacman -S libreoffice
    :: The following packages should be upgraded first :
        pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gcc: requires gcc-libs=4.7.0-3
    [root@arch matrix]#
    ##code_end##
    This started after adding a new mirror and performing "pacman -Syu" (I was trying to install firefox in arch, which didn't go through even with different mirrors).
    What should I do now to upgrade pacman?
    Last edited by matrix13 (2012-04-11 14:48:24)

    Anyone else, looking at this, look at https://bbs.archlinux.org/viewtopic.php … 3#p1086153 which suggests the above method could break pacman (but I don't understand why yet).

  • [SOLVED] pacman -Syu - error: failed to prepare transaction

    [root@localhost username]# pacman -Syu
    :: Synchronising package databases...
    core 104.3 KiB 691K/s 00:00 [######################] 100%
    extra 1406.0 KiB 1117K/s 00:01 [######################] 100%
    community 1697.2 KiB 1120K/s 00:02 [######################] 100%
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: open-vm-tools-modules: requires linux<3.4
    I assume I need to wait for open-vm-tools to be updated now?
    Last edited by Swarfega (2012-06-15 11:54:27)

    Wait until your server upload the recent Arch Linux updates. Than you will be able to upgrade it. Or do like i had: download open-bm-tools from Arch Linux official site  and install it and then issue "pacman -Syu".
    Last edited by Shark (2012-06-15 11:54:02)

  • Pacman -Syu error: failed to prepare transaction

    Currently, trying to update my packages results in a huge error message that I'm not sure how to fix. This is the output of pacman -Syu:
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: Starting full system upgrade...
    error: could not parse package description file 'gambas3-gb-ncurses-3.3.4-3/desc' from db 'community'
    warning: haskell-mtl: local (2.1.2-25) is newer than extra (2.1.2-2)
    warning: haskell-parsec: local (3.1.3-25) is newer than extra (3.1.3-2)
    warning: haskell-text: local (0.11.2.3-25) is newer than extra (0.11.2.3-2)
    warning: haskell-transformers: local (0.3.0.0-25) is newer than extra (0.3.0.0-3)
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: haskell-extensible-exceptions: requires ghc=7.6.1-1
    :: haskell-mtl: requires ghc=7.6.1-1
    :: haskell-parsec: requires ghc=7.6.1-1
    :: haskell-regex-base: requires ghc=7.6.1-1
    :: haskell-syb: requires ghc=7.6.1-1
    :: haskell-text: requires ghc=7.6.1-1
    :: haskell-transformers: requires ghc=7.6.1-1
    :: haskell-utf8-string: requires ghc=7.6.1-1
    :: haskell-x11: requires ghc=7.6.1-1
    :: haskell-x11-xft: requires ghc=7.6.1-1
    :: xmonad: requires ghc=7.6.1-1
    :: xmonad-contrib: requires ghc=7.6.1
    :: xmonad-contrib: requires haskell-random=1.0.1.1-3
    At some point I think I had the haskell repository enabled on this machine, but I removed it because it was giving me too many headaches and conflicts. I'm not sure how to go about resetting things so that I can update packages comfortable again.

    error: could not parse package description file 'gambas3-gb-ncurses-3.3.4-3/desc' from db 'community'
    You should deal with this error - something is wrong. Does that file exist? Is the package installed? Is it missing files?
    As for haskell, unless you want to reenable the repository, I guess you need to uninstall those packages. You can then update and reinstall the versions from the standard repositories if you need them.
    I checked a couple of those packages, including xmonad, and the versions in the official repos require e.g. ghc 7.6.2-1 so those should work fine with upgrading.

  • [SOLVED]pacman Dependency problem-error: failed to prepare transaction

    Hi There,
    Got an issue with pacman after doing a pacman - Syu I get the below error
    jase : /home/jase > sudo pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    kdemod-legacy is up to date
    :: Starting full system upgrade...
    :: Replace kdeaccessibility with extra/kde-meta-kdeaccessibility? [Y/n] y
    :: Replace kdeadmin with extra/kde-meta-kdeadmin? [Y/n] y
    :: Replace kdeartwork with extra/kde-meta-kdeartwork? [Y/n] y
    :: Replace kdebase with extra/kde-meta-kdebase? [Y/n] y
    :: Replace kdebindings with extra/kde-meta-kdebindings? [Y/n] y
    :: Replace kdeedu with extra/kde-meta-kdeedu? [Y/n] y
    :: Replace kdegames with extra/kde-meta-kdegames? [Y/n] y
    :: Replace kdegraphics with extra/kde-meta-kdegraphics? [Y/n] y
    :: Replace kdemultimedia with extra/kde-meta-kdemultimedia? [Y/n] y
    :: Replace kdenetwork with extra/kde-meta-kdenetwork? [Y/n] y
    :: Replace kdepim with extra/kde-meta-kdepim? [Y/n] y
    :: Replace kdeplasma-addons with extra/kde-meta-kdeplasma-addons? [Y/n] y
    :: Replace kdesdk with extra/kde-meta-kdesdk? [Y/n] y
    :: Replace kdetoys with extra/kde-meta-kdetoys? [Y/n] y
    :: Replace kdeutils with extra/kde-meta-kdeutils? [Y/n] y
    :: Replace kdewebdev with extra/kde-meta-kdewebdev? [Y/n] y
    warning: perl-datetime-timezone: local (0.8301-1) is newer than community (0.99-1)
    :: Replace phonon with extra/qt? [Y/n] y
    :: Replace portmap with core/rpcbind? [Y/n] y
    :: Replace rt2500 with core/kernel26? [Y/n] y
    :: Replace system-config-printer with extra/system-config-printer-common? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: perl-io-zlib: requires perl-compress-zlib
    any ideas on what I should do from here on ?
    Cheers
    Quazza
    Last edited by quazza (2009-11-04 23:29:37)

    haha yeah I guess it has been a while, I didn't realise.  So what do I do to use core/perl?
    Cheers
    Quazza
    Last edited by quazza (2009-11-02 10:11:11)

  • [solved]pacman error: failed to prepare transaction

    [iblicf@myarch ~]$ sudo pacman -S inkscape
    resolving dependencies...
    error: could not open file /var/lib/pacman/sync/extra//openoffice-sv-2.3.1-1/depends: No such file or directory
    error: cannot resolve "pyxml", a dependency of "inkscape"
    error: failed to prepare transaction (could not satisfy dependencies)
    :: inkscape: requires pyxml
    [iblicf@myarch ~]$ sudo pacman -S abiword
    resolving dependencies...
    error: could not open file /var/lib/pacman/sync/extra//openoffice-sv-2.3.1-1/depends: No such file or directory
    error: cannot resolve "wv>=1.2.4", a dependency of "abiword"
    error: failed to prepare transaction (could not satisfy dependencies)
    :: abiword: requires wv>=1.2.4
    what's wrong with it  ? plz help
    Last edited by iblicf (2008-03-05 03:54:10)

    pacman -Syy  ,yeah , that works ... thanks
    Last edited by iblicf (2008-03-05 03:55:08)

  • [solved]error: failed to prepare transaction

    [caleb@Calebs-Arch ~]$ sudo pacman -R xfce4
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: libxfcegui4: requires xfconf>=4.6.2
    :: ristretto: requires thunar
    :: squeeze: requires thunar
    :: thunar-archive-plugin: requires thunar
    :: thunar-media-tags-plugin: requires thunar
    :: thunar-volman: requires thunar>=1.0.1
    :: xfburn: requires thunar>=1.0.1-5
    :: xfce4-battery-plugin: requires xfce4-panel
    :: xfce4-clipman-plugin: requires xfce4-panel
    :: xfce4-cpufreq-plugin: requires xfce4-panel
    :: xfce4-cpugraph-plugin: requires xfce4-panel
    :: xfce4-datetime-plugin: requires xfce4-panel
    :: xfce4-dict-plugin: requires xfce4-panel>=4.6.1
    :: xfce4-diskperf-plugin: requires xfce4-panel
    :: xfce4-eyes-plugin: requires xfce4-panel
    :: xfce4-fsguard-plugin: requires xfce4-panel
    :: xfce4-genmon-plugin: requires xfce4-panel>=4.5.99.1
    :: xfce4-mailwatch-plugin: requires xfce4-panel
    :: xfce4-messenger-plugin: requires xfce4-panel
    :: xfce4-mount-plugin: requires xfce4-panel
    :: xfce4-mpc-plugin: requires xfce4-panel
    :: xfce4-netload-plugin: requires xfce4-panel>=4.6.1
    :: xfce4-notes-plugin: requires xfce4-panel>=4.6.1
    :: xfce4-playercontrol-plugin: requires xfce4-panel>=4.5.99.1
    :: xfce4-power-manager: requires xfce4-panel>=4.6.1
    :: xfce4-quicklauncher-plugin: requires xfce4-panel
    :: xfce4-screenshooter: requires xfce4-panel
    :: xfce4-sensors-plugin: requires xfce4-panel>=4.6.0
    :: xfce4-smartbookmark-plugin: requires xfce4-panel
    :: xfce4-systemload-plugin: requires xfce4-panel>=4.6.1
    :: xfce4-timer-plugin: requires xfce4-panel
    :: xfce4-verve-plugin: requires xfce4-panel
    :: xfce4-wavelan-plugin: requires xfce4-panel
    :: xfce4-weather-plugin: requires xfce4-panel
    :: xfce4-xfapplet-plugin: requires xfce4-panel
    :: xfce4-xkb-plugin: requires xfce4-panel>=4.5.99.1
    I get that when I try to remove xfce4 and it's similiar exactly but other dependencies when I try to remove gnome. I want to switch to a windows manager instead and get rid of the desktop enviroments for better performance
    Any help would be appreciated!
    Last edited by nightblade09 (2010-12-20 21:38:50)

    man pacman
    Specifically pay close attention to remove options -s,-c,-n.
    Last edited by Misfit138 (2010-12-20 21:23:34)

  • Yaourt fails "error: failed to prepare transaction (unexpected error)"

    Today, I am trying to do a full system upgrade using yaourt, but I get this strange message:
    [christian@pb-tj72 ~]$ yaourt -Syua
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    error: failed to prepare transaction (unexpected error)
    :: Starting full system upgrade...
    It makes me wonder that it first reports the error and then executes the full system upgrade.
    I hope that this is a well-known problem or that somebody can help me with instructions regarding how to increase verbosity or which log files to look at.
    Otherwise, will the yaourt-alternatives work with the AUR packages that I've already installed with yaourt?
    BR,
    Christian

    SS4 wrote:I'd imagine yaourt has a -v switch for verbose
    I tried yaourt -Syuv (didn't work together with the '-a' switch). First I got error: you cannot perform this operation unless you are root., but when running as sudo, it works. This makes me wonder whether the -v switch is undocumented or if it invokes pacman instead.
    pstree -a shows me that in fact, yaourt -Syuv launches pacman -Syuv
    nbvcxz wrote:Please find if you have some packages installed with "unsatisfied" dependences (eg. pulseaudio but no rtkit or libreoffice but no orbit2). To see more please do first pacman -Syu - should tell you more.
    pacman -Syu tells me that I do have unresolved dependencies since my kernel is frozen until a certain bug is resolved:
    warning: linux: ignoring package upgrade (3.2.14-1 => 3.3.2-1)
    resolving dependencies...
    warning: ignoring package linux-3.3.2-1
    warning: cannot resolve "linux>=3.3", a dependency of "virtualbox-modules"
    warning: ignoring package linux-3.3.2-1
    warning: cannot resolve "linux>=3.3", a dependency of "virtualbox-modules"
    But shouldn't yaourt handle this in the same way that pacman would?
    My conclusion so far is that yaourt doesn't work with unresolved dependencies. So I will try another tool.

  • Failed to start Share could not initiate desktop share

    we have calabrio QM recording as well as jabber running. we record their desktop with calabrio. however when we have a user that tries to initiate a desktop share with jabber it gives us the error "Failed to start Share could not initiate desktop share" when i stop the desktop monitoring and recording service from calabrio it works. i thought that there might be some port overlap but they have alot of ports that are open to chose form and i find that hard to believe.
    i have been told that if calabrio and jabber use the same remote assistance windows api they will never work in harmony. Does anyone know if jabber uses the remote assistance api to for screen sharing?

    This problem is not isolated to the Broadcom adapter. However, based on several inquiries, we list the following instructions based on other customers successfully working around this issue:
    Place the Broadcom driver files in the original image folder (the image folder created when risetup.exe was executed for the first time).
    Example: i:\RemoteInstall\Setup\English\Images\(Original Image)
    Place the Broadcom driver files in the i386 subfolder under the original image folder
    Example: i:\RemoteInstall\Setup\English\Images\(Original Image)\i386
    Place the Broadcom driver files for the network adapter in the RIPREP Image folder.
    Example: i:\RemoteInstall\Setup\English\Images\(RIPREP Image)
    Place the Broadcom adapter drivers in the i386 subfolder where the RIPREP Image is located.
    Example: i:\RemoteInstall\Setup\English\Images\(RIPREP Image)\i386
    The Microsoft Knowledge base articles listed below were used as a reference for the following instructions:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;254078
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;246184
    Found this on -
    https://www.broadcom.com/support/ethernet_nic/faq_drivers.php
    I don't know if this will help, looks really old, about as old as the network card :)

  • Backups failing with error 19: the backup disk could not be resolved, or there was a problem mounting it

    Hello all,
    Doubt this issue relates to a recent and ugly issue but sharing anyways (resolved thanks to a user here: LaPastenague)
    Time Capsule won't backup if Modem (Motorola SB6121) attached
    This was on Feb 10th resolved. Few days later I upgraded to Yosemite.  Backups were working fine since.  
    Yesterday I happen to notice my last backup was 5 days ago.  I looked in the console logs and saw:
    2/25/15 3:55:06.127 PM com.apple.backupd[2777]: Attempting to mount network destination URL: afp://Paul;AUTH=SRP@Time%20Capsule._afpovertcp._tcp.local./Data
    2/25/15 3:55:17.778 PM com.apple.backupd[2777]: NAConnectToServerSync failed with error: 2 (No such file or directory) for url: afp://Paul;AUTH=SRP@Time%20Capsule._afpovertcp._tcp.local./Data
    2/25/15 3:55:17.792 PM com.apple.backupd[2777]: Backup failed with error 19: The backup disk could not be resolved, or there was a problem mounting it.
    2/25/15 3:57:18.808 PM com.apple.prefs.backup.remoteservice[2021]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    I called Apple.  Their front line was clueless. He suggested resetting the TC (latest "tower" model btw") which then a backup kicked off YEAH
    But the next hour it failed
    Called Apple again, this time to Sr Advisor.  He suggested factory reset of the TC and set up again.  Also first backup worked then rest failed
    Third call to Apple useless also.  He was asking questions I didn't feel relevant.  He also was asking me to reset the TC which I told him was done 2 hours prior. He asked me to reboot which I could NOT at that time.
    I begged him to collect data to submit to engineering, which will take days to get a reply.
    So I thought I would throw this out to the community....
    TC Is NEW (replaced from last issue).  Mac is 8 months old (iMac 27"), Os is Yosemite,  TC also new (latest model)
    Thanks...

    Yosemite is problematic on two fronts.. Networking and Time Machine.. so the combo of doing both with a Time Capsule is like bugs on bugs.
    Here is my standard list.. but your problem maybe difficult to resolve.. and my suggestion is simple.. until Apple get their act together and fix TM.. buy Carbon Copy Cloner and use that for your backup. It is solid and reliable.. even better if you use USB drive plugged into the computer and do a bootable clone.. because then you have a backup that is able to be tested for full functionality 2min after the end of the backup.
    This also starts from a factory reset.. but the reason for it is to change the configuration which is much more easily handled with factory reset to begin.. the instructions are there.. because this is my standard reply.. this is not uncommon!!
    Factory reset universal
    Power off the TC.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the TC to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    N.B. None of your files on the hard disk of the TC are deleted.. this simply clears out the router settings of the TC.
    Setup the TC again.
    ie Start from a factory reset. No files are lost on the hard disk doing this.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg TCgen5 and TCwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use TC24ghz and TC5ghz with fixed channels as this also seems to help stop the nonsense. But this can be tried in the second round.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the TC always takes the same IP address.. you will need to do this on the main router using dhcp reservation.. or a bit more complex setup using static IP in the TC. But this is important.. having IP drift all over the place when Yosemite cannot remember its own name for 5 min after a reboot makes for poor networking. If the TC is main router it will not be an issue.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric.. but this change will mess up your TM backup.. so be prepared to do a new full backup. Sorry.. keep this one for second round if you want to avoid a new backup.
    5. Mount the TC disk in the computer manually.
    In Finder, Go, Connect to server from the top menu,
    Type in SMB://192.168.0.254 (or whatever the TC ip is which you have now made static. As a router by default it is 10.0.1.1 and I encourage people to stick with that unless you know what you are doing).
    You can use name.. SMB://TCgen5.local where you replace TCgen5 with your TC name.. local is the default domain of the TC and doesn't change.
    However names are not so easy as IP address.. nor as reliable. At least not in Yosemite they aren't. The domain can also be an issue if you are not plugged or wireless directly to the TC.
    6. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    You might need to do some more work on the Mac itself. eg Reset the PRAM.. has helped some people. Clean install of the OS is also helpful if you upgrade installed.
    Tell us how you go.
    Someone posted a solution.. See this thread.
    Macbook can't find Time Capsule anymore
    Start from the bottom and work up.. What I list here is good network practice changes but I have avoided Yosemites bug heaven.
    This user has had success and a few others as well.
    RáNdÓm GéÉzÁ
    Yosemite has serious DNS bug in the networking application.. here is the lets say more arcane method of fixing it by doing a network transplant from mavericks.
    http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • [SOLVDED]makepkg not wokking and [error: failed to commit transaction]

    I had some problems with the liblzma.so.5, so I update the xz library, and it worked -the problem was with R, the statistic program-
    pacman -S xz
    After that, I tried to install some AUR programs, and got this error with the libzma.so.0. I read  this thread and did:
    sudo mv /usr/lib/liblzma.so /usr/lib/liblzma.so.0
    AND
    sudo ln -s /usr/lib/liblzma.so /usr/lib/liblzma.so.0
    With this, the problem with that library did not appear, but when doing the makepkg with every package I tried, I got:
    error: 'xbindkeys_config-0.1.3-2-x86_64.pkg.tar.xz': cannot open package file
    After that, I did a total update of the system, but got this errors:
    checking package integrity...
    error: failed to commit transaction (invalid or corrupted package)
    tzdata-2010n-1-x86_64.pkg.tar.xz is invalid or corrupted
    glibc-2.12.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    alsa-lib-1.0.23-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxml2-2.7.7-2-x86_64.pkg.tar.xz is invalid or corrupted
    glib2-2.26.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    shared-mime-info-0.80-1-x86_64.pkg.tar.xz is invalid or corrupted
    exiv2-0.20-1-x86_64.pkg.tar.xz is invalid or corrupted
    strigi-0.7.2-3-x86_64.pkg.tar.xz is invalid or corrupted
    libxext-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    recordproto-1.14.1-1-any.pkg.tar.xz is invalid or corrupted
    libxtst-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    scrnsaverproto-1.2.1-1-any.pkg.tar.xz is invalid or corrupted
    libxss-1.2.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxcursor-1.1.11-1-x86_64.pkg.tar.xz is invalid or corrupted
    kdelibs-4.5.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    oxygen-icons-4.5.3-1-any.pkg.tar.xz is invalid or corrupted
    kdebase-runtime-4.5.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    amarok-2.3.2-3-x86_64.pkg.tar.xz is invalid or corrupted
    audacious-plugins-2.4.0-3-x86_64.pkg.tar.xz is invalid or corrupted
    avahi-0.6.27-7-x86_64.pkg.tar.xz is invalid or corrupted
    bash-4.1.009-1-x86_64.pkg.tar.xz is invalid or corrupted
    bluez-4.77-1-x86_64.pkg.tar.xz is invalid or corrupted
    libevent-1.4.14b-2-x86_64.pkg.tar.xz is invalid or corrupted
    chromium-7.0.517.44-1-x86_64.pkg.tar.xz is invalid or corrupted
    fixesproto-4.1.2-1-any.pkg.tar.xz is invalid or corrupted
    compositeproto-0.4.2-1-any.pkg.tar.xz is invalid or corrupted
    db-5.1.19-2-x86_64.pkg.tar.xz is invalid or corrupted
    pam-1.1.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    coreutils-8.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    curl-7.21.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    damageproto-1.2.1-1-any.pkg.tar.xz is invalid or corrupted
    python2-2.7-3-x86_64.pkg.tar.xz is invalid or corrupted
    dbus-python-0.83.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    udev-163-1-x86_64.pkg.tar.xz is invalid or corrupted
    device-mapper-2.02.75-1-x86_64.pkg.tar.xz is invalid or corrupted
    dhcpcd-5.2.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    dialog-1.1_20100428-2-x86_64.pkg.tar.xz is invalid or corrupted
    elfutils-0.149-2-x86_64.pkg.tar.xz is invalid or corrupted
    heimdal-1.3.3-2-x86_64.pkg.tar.xz is invalid or corrupted
    evolution-data-server-2.32.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxinerama-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    randrproto-1.3.2-1-any.pkg.tar.xz is invalid or corrupted
    libxrandr-1.3.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxcomposite-0.4.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    gdk-pixbuf2-2.22.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    gtk2-2.22.0-5-x86_64.pkg.tar.xz is invalid or corrupted
    exo-0.3.107-2-x86_64.pkg.tar.xz is invalid or corrupted
    pycairo-1.8.10-2-x86_64.pkg.tar.xz is invalid or corrupted
    gobject-introspection-0.9.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    pygobject-2.26.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    gstreamer0.10-python-0.10.18-3-x86_64.pkg.tar.xz is invalid or corrupted
    farsight2-0.0.22-1-x86_64.pkg.tar.xz is invalid or corrupted
    x264-20101013-1-x86_64.pkg.tar.xz is invalid or corrupted
    libvpx-0.9.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libva-1.0.5-2-x86_64.pkg.tar.xz is invalid or corrupted
    ffmpeg-25679-1-x86_64.pkg.tar.xz is invalid or corrupted
    filesystem-2010.10-1-any.pkg.tar.xz is invalid or corrupted
    libice-1.0.7-1-x86_64.pkg.tar.xz is invalid or corrupted
    libsm-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxt-1.0.9-1-x86_64.pkg.tar.xz is invalid or corrupted
    xulrunner-1.9.2.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    firefox-3.6.12-1-x86_64.pkg.tar.xz is invalid or corrupted
    fluidsynth-1.1.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    fontsproto-2.1.1-1-any.pkg.tar.xz is invalid or corrupted
    gamin-0.1.10-4-x86_64.pkg.tar.xz is invalid or corrupted
    ghostscript-9.00-1-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-desktop-2.32.0-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxslt-1.1.26-2-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-doc-utils-0.20.2-2-any.pkg.tar.xz is invalid or corrupted
    gnome-keyring-2.32.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libglade-2.6.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    pygtk-2.22.0-3-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-menus-2.30.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    gnome-panel-2.32.0.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    perl-5.12.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    gtk-doc-1.15-2-any.pkg.tar.xz is invalid or corrupted
    gvfs-1.6.5-2-x86_64.pkg.tar.xz is invalid or corrupted
    imagemagick-6.6.4.10-1-x86_64.pkg.tar.xz is invalid or corrupted
    iproute2-2.6.35-4-x86_64.pkg.tar.xz is invalid or corrupted
    kernel26-2.6.35.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    kernel26-headers-2.6.35.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    libburn-0.8.8.pl00-1-x86_64.pkg.tar.xz is invalid or corrupted
    djvulibre-3.5.23-1-x86_64.pkg.tar.xz is invalid or corrupted
    libdmx-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    libfontenc-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgphoto2-2.4.10-1-x86_64.pkg.tar.xz is invalid or corrupted
    mutagen-1.20-3-any.pkg.tar.xz is invalid or corrupted
    libplist-1.3-2-x86_64.pkg.tar.xz is invalid or corrupted
    libimobiledevice-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgpod-0.8.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libgsf-1.14.18-2-x86_64.pkg.tar.xz is invalid or corrupted
    libisofs-0.6.38-1-x86_64.pkg.tar.xz is invalid or corrupted
    libproxy-0.4.6-2-x86_64.pkg.tar.xz is invalid or corrupted
    libsasl-2.1.23-5-x86_64.pkg.tar.xz is invalid or corrupted
    libpurple-2.7.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libspectre-0.2.6-2-x86_64.pkg.tar.xz is invalid or corrupted
    libxmu-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxpm-3.5.9-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxaw-1.0.8-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxdmcp-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxfont-1.4.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxft-2.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxkbfile-1.0.7-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxres-1.0.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxv-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxxf86dga-1.1.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    libxxf86vm-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    lvm2-2.02.75-1-x86_64.pkg.tar.xz is invalid or corrupted
    man-pages-3.30-1-any.pkg.tar.xz is invalid or corrupted
    mlocate-0.23.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    mpfr-3.0.0.p4-1-x86_64.pkg.tar.xz is invalid or corrupted
    postgresql-libs-9.0.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    redland-1.0.12-2-x86_64.pkg.tar.xz is invalid or corrupted
    openoffice-base-3.2.1-3-x86_64.pkg.tar.xz is invalid or corrupted
    pidgin-2.7.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    python-3.1.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    python-urwid-0.9.9.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    rrdtool-1.4.4-2-x86_64.pkg.tar.xz is invalid or corrupted
    ruby-1.9.2_p0-4-x86_64.pkg.tar.xz is invalid or corrupted
    tdb-1.2.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    vte-0.26.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    terminator-0.95-2-x86_64.pkg.tar.xz is invalid or corrupted
    vigra-1.7.0-4-x86_64.pkg.tar.xz is invalid or corrupted
    vlc-1.1.4.1-2-x86_64.pkg.tar.xz is invalid or corrupted
    wicd-1.7.0-6-any.pkg.tar.xz is invalid or corrupted
    wireshark-cli-1.4.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    wireshark-gtk-1.4.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    xcb-proto-1.6-2-any.pkg.tar.xz is invalid or corrupted
    xorg-iceauth-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-sessreg-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xcmsdb-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xbacklight-1.1.1-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xgamma-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xhost-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xinput-1.5.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xmodmap-1.0.5-1-x86_64.pkg.tar.xz is invalid or corrupted
    nickle-2.70-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrandr-1.3.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrdb-1.0.6-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xrefresh-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xset-1.2.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xsetroot-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-server-utils-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xfce4-session-4.6.2-2-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-luit-1.1.0-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xpr-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xwd-1.0.3-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xwud-1.0.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-x11perf-1.5.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xcursorgen-1.0.4-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-xkill-1.0.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-apps-7.6-1-any.pkg.tar.xz is invalid or corrupted
    xorg-server-common-1.9.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-server-1.9.2-1-x86_64.pkg.tar.xz is invalid or corrupted
    xorg-utils-7.6-5-x86_64.pkg.tar.xz is invalid or corrupted
    xterm-266-1-x86_64.pkg.tar.xz is invalid or corrupted
    Errors occurred, no packages were upgraded.
    What could i do?
    Last edited by gromlok (2010-11-09 01:07:40)

    Well, I found this solution:
    Reading this thread, when I did:
    pacman -S libarchive
    and after that a:
    pacman -Syu
    Everything worked again. I don't know why, and why with that particular library. Is someone could expand the information we would be grateful.
    Thank you.

  • Moving library to external hard drive and get the error "Copying files failed. The disk could not be read from or written to"

    Hello,
    I'm moving my library to an external hard drive.
    I've made sure to use the 'Keep iTunes Media Folder Organized' option when pointing to the new library location.
    I select 'File'->'Library'->'Organize Library', I select to 'Consolidate Files', click 'OK' and get ther error message "Copying files failed. The disk could not be read from or written to".
    I've read elsewhere that there may be a corrupted file that I need to sequester somehow and perhaps add it back however I'm not certain how I can locate that file because the status window doesn't indicate which file it's attempting to transfer when the error appears.
    Any tips?
    Thank you,
    Greg H
    iTunes 10.6.3

    OK I figured it out!
    It was a dodgy file....I sorted the file folders by date, and as it turned out within the "compilations" folder there was a CD where only about half the tracks seemed to have been copied over. Could not have identified this simply from the time indicated on the finder folder sort, because there were several CDs copied over in the that same minute.
    I went back to the original itunes folder, deleted all the files from that CD in itunes, then also deleted all those files from the original disk and the target disk.
    Tried the "consolidate library" again, and it completed nicely. 200megs of music and videos.
    Very happy to solve this problem after 3 weeks.

Maybe you are looking for

  • I can not see data in data viewer

    Hi, I use OWB 10g Relase 2. I have one table and I imported table metadata to OWB. I load data to table with pl/sql script, Now I do not see data in this table in data viewer. I see data in SQL*PLUS I tried deploy table and run script to load again.

  • HT3965 Is it necessary to have a PC in order to have a ipad

    I find it very redundant to realize in order for me to have a ipad I also have to have a PC . I'm I not getting the whole picture, is there really a way to use a ipad without a PC. If so enlighten me PLEASE I ask because I really want to get rid of a

  • IMAC or MacBook Pro Laptop?

    Trying to decide between a fully loaded iMAC versus a fully loaded 15" MacBook Pro laptop with retina display.  I was actually considering both.  I usually buy computers that have the highest resolution screen - seems the laptop beats the new iMAC in

  • Why is the payment for e.g. a song in the itunes store proceeding not at once but after indefinite time?

    Why is the payment for e.g. a song in the itunes store proceeding not at once but after indefinite time?

  • How to make a simple image gallery with click through?

    Hello, I'm wanting to make a webpage that showcases some images, very much like this one   :    http://www.steviedance.com/?page_id=3868#1 I want button where you can click to the next image, and have only the next image load, not the whole page like