How to compile for arch on Ubuntu without root?

Maybe this is not the right section, but since it is about compiling...
I have access to a rather powerful server, so I thought I could maybe compile some AUR packages like kernel-rc there. Unfortunately it runs ubuntu so gcc is still 4.4 and all the base libs don't match.
I thought about installing a minimal arch system in a chroot but you need root to chroot...
My next thought was crosscompiling gcc for ubuntu set up to crosscompile for arch... Doesn't sound fun to set up.
Any other ideas?

*edit: rephrasing*
Do you have (or can you get) permission to run a virtual machine on the server? I compile packages for i686 on x86_64 using a minimal (i686) Arch system in KVM and it works well. I find it to be very clean and easy to manage.
Last edited by Xyne (2010-05-05 12:29:52)

Similar Messages

  • How to compile for Flash Player 11.3 in Flash CS6

    Hi,
    How can I compile for Flash Player 11.3 using Flash Professional CS6, the menu has only up to 11.2
    what about 11.3 and the upcoming 11.4 ?
    I've already downloaded and added AIR sdk 3.3 for AIR skds paths

    Hi,
    The provision to compile for FP11.3 and FP11.4 would be available in the next updater release for CS6.
    Thanks and Regards,
    Meenakshi Tiwari
    FlashPro Engg Team.

  • How to use SAX Parseto paser xml without root element

    Hello,
    I have big a xml file(500M) with without root element. How can I use SAXParse to parse it.

    A well-formed XML file has a single root element. Your parser can't deal with any other kind. So find the person who produced that file and explain politely that it's no good. (Hitting them with a big stick would be optional.)
    You could write a non-XML program that reads it in and creates a new version, wrapped in a single root element, if your supplier can't fix their problem.

  • How to compile SubVersioN 1.7.20 without error?

    Hi,
    I'm using development tools that only support SVN 1.7 format (e.g. PHPStorm so SVNKit 1.7) so I need to compile and install SVN 1.7. What I need precisely is the Gnome Keyring support (be able to store and use usernames/passwords that are managed by Gnome Keyring).
    I'm trying to use the dedicated AUR package with a few modifications to make it work (it's currently broken) but I get stuck at compilation if I leave the main options (I've removed Perl support):
    # $Id$
    # Maintainer: Stéphane Gaudreault <[email protected]>
    # Contributor: Paul Mattal <[email protected]>
    # Contributor: Jason Chu <[email protected]>
    pkgname=subversion-1.7
    pkgver=1.7.20
    pkgrel=2
    pkgdesc="A Modern Concurrent Version Control System"
    arch=('i686' 'x86_64')
    license=('APACHE')
    depends=('neon' 'apr-util' 'sqlite' 'file' 'serf' 'systemd')
    optdepends=('libgnome-keyring' 'kdeutils-kwallet' 'bash-completion: for svn bash completion' \
    'python2: for some hook scripts' 'java-environment') #'ruby: for some hook scripts')
    makedepends=('krb5' 'apache' 'python2' 'perl>=5.18' 'swig' 'java-runtime' 'java-environment'
    'autoconf' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs')
    backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
    url="http://subversion.apache.org/"
    provides=('svn' 'subversion')
    conflicts=('svn' 'subversion')
    options=('!makeflags' '!libtool' '!emptydirs')
    install=${pkgname}.install
    source=(http://apache.mirror.rafal.ca/subversion/subversion-$pkgver.tar.bz2 #{,.asc}
    svn
    svnserve.conf
    svnserve.tmpfiles
    svnserve.service
    subversion.rpath.fix.patch)
    md5sums=('bf3b7d480bc99d048eaf36a9fc794f9c'
    'a0db6dd43af33952739b6ec089852630'
    'c459e299192552f61578f3438abf0664'
    'bb2857eceafcfac35dde39dcffad2314'
    'e8020c7a1d1a0c47091b5fdd034f81c5'
    '6b4340ba9d8845cd8497e013ae01be3f')
    build() {
    cd "${srcdir}/subversion-${pkgver}"
    export PYTHON=/usr/bin/python2
    patch -Np0 -i ../subversion.rpath.fix.patch
    sed -i 's|/usr/bin/env python|/usr/bin/env python2|' tools/hook-scripts/{,mailer/{,tests/}}*.py
    ./configure --prefix=/opt/subversion-1.7 --with-apr=/usr --with-apr-util=/usr \
    --with-zlib=/usr --with-neon=/usr --with-serf=/usr --with-apxs \
    --with-sqlite=/usr --with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
    --enable-javahl --with-gnome-keyring --with-kwallet \
    --with-jdk=/usr/lib/jvm/java-7-openjdk \
    --disable-static
    make external-all
    make LT_LDFLAGS="-L$Fdestdir/usr/lib" local-all
    make swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
    swig_pydir_extra=/usr/lib/python2.7/site-packages/svn swig-py javahl #swig-pl #swig-rb
    #check() {
    # cd "${srcdir}/${pkgname}-${pkgver}"
    # export LANG=C LC_ALL=C
    # make check check-swig-pl check-swig-py check-javahl CLEANUP=yes # check-swig-rb
    package() {
    cd "${srcdir}/subversion-${pkgver}"
    export LD_LIBRARY_PATH="${pkgdir}"/usr/lib:${LD_LIBRARY_PATH}
    make DESTDIR="${pkgdir}" INSTALLDIRS=vendor \
    swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
    swig_pydir_extra=/usr/lib/python2.7/site-packages/svn \
    install install-swig-py install-javahl #install-swig-pl #install-swig-rb
    install -dm755 "${pkgdir}"/usr/share/subversion
    cp -a tools/hook-scripts "${pkgdir}"/usr/share/subversion/
    rm "${pkgdir}"/usr/share/subversion/hook-scripts/*.in
    # rm "${pkgdir}"/usr/lib/perl5/vendor_perl/auto/SVN/_Core/.packlist
    # rm -r "${pkgdir}"/usr/lib/perl5/core_perl
    ## svnserve ...
    # xinetd
    install -D -m 644 "${srcdir}"/svn "${pkgdir}"/etc/xinetd.d/svn
    # ... systemd
    install -D -m 644 "${srcdir}"/svnserve.service "${pkgdir}"/usr/lib/systemd/system/svnserve.service
    install -D -m 644 "${srcdir}"/svnserve.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/svnserve.conf
    # ... common config
    install -D -m 644 "${srcdir}"/svnserve.conf "${pkgdir}"/etc/conf.d/svnserve
    install -Dm 644 tools/client-side/bash_completion \
    "${pkgdir}"/usr/share/bash-completion/completions/subversion
    for i in svn svnadmin svndumpfilter svnlook svnsync svnversion; do
    ln -sf subversion "${pkgdir}"/usr/share/bash-completion/completions/${i}
    done
    I get this error at the end:
    .libs/locking_commands.o: In function `organize_lock_targets.isra.1':
    locking_commands.c:(.text+0x72b): undefined reference to `svn_wc__node_get_base_rev'
    locking_commands.c:(.text+0x76e): undefined reference to `svn_wc__node_get_lock_info'
    .libs/merge.o: In function `merge_props_changed':
    merge.c:(.text+0x135c): undefined reference to `svn_wc__node_get_base_rev'
    .libs/merge.o: In function `merge_reintegrate_cb':
    merge.c:(.text+0x4134): undefined reference to `svn_wc__node_get_base_rev'
    .libs/merge.o: In function `calculate_remaining_ranges':
    merge.c:(.text.unlikely+0x1c07): undefined reference to `svn_wc__node_get_base_rev'
    .libs/merge.o: In function `do_merge.isra.42':
    merge.c:(.text.unlikely+0x4b1f): undefined reference to `svn_wc__get_server_excluded_subtrees'
    .libs/mergeinfo.o: In function `svn_client__get_wc_mergeinfo':
    mergeinfo.c:(.text+0xad1): undefined reference to `svn_wc__node_get_base_rev'
    mergeinfo.c:(.text+0xc59): undefined reference to `svn_wc__node_get_base_rev'
    .libs/patch.o: In function `check_dir_empty.isra.7':
    patch.c:(.text+0x299b): undefined reference to `svn_wc__strictly_is_wc_root'
    .libs/revert.o: In function `svn_client_revert2':
    revert.c:(.text+0x2c3): undefined reference to `svn_wc__strictly_is_wc_root'
    .libs/revisions.o: In function `svn_client__get_revision_number':
    revisions.c:(.text+0x24d): undefined reference to `svn_wc__node_get_commit_base_rev'
    .libs/switch.o: In function `svn_client__switch_internal':
    switch.c:(.text+0x563): undefined reference to `svn_wc__node_get_base_rev'
    .libs/update.o: In function `update_internal':
    update.c:(.text+0x2a6): undefined reference to `svn_wc__node_get_base_rev'
    .libs/util.o: In function `svn_client__path_relative_to_root':
    util.c:(.text+0x25f): undefined reference to `svn_wc__node_get_repos_relpath'
    collect2: error: ld returned 1 exit status
    libtool: error: error: relink 'libsvn_client-1.la' with the above command before installing it
    build-outputs.mk:956: recipe for target 'install-lib' failed
    make: *** [install-lib] Error 1
    ==> ERROR: A failure occurred in package().
    Aborting...
    I also know that if I remove almost all options but gnome-keyring I end up with a binary... that crashes when trying to use gnome-keyring authentication (segfault).
    Has anyone succeeded in getting a working SVN 1.7 on an up-to-date Arch?
    Thanks in advance

    I've just tested the build from CollabNet (SVN 1.7.19) an it crashes at the very same moment, which makes me think that the issue might not be with SVN but with a third-party library.
    Below are the last lines when I run the command with strace (authentication to svn://myhost/myrepo is of course stored in Gnome-Keyring):
    $ svn info svn://myhost/myrepo
    recvmsg(4, 0x7ffdcb0261c0, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
    getrusage(RUSAGE_SELF, {ru_utime={0, 33333}, ru_stime={0, 13333}, ...}) = 0
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 47923378}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={0, 33333}, ru_stime={0, 13333}, ...}) = 0
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 47953861}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={0, 33333}, ru_stime={0, 13333}, ...}) = 0
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 47975327}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={0, 33333}, ru_stime={0, 13333}, ...}) = 0
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 48018653}) = 0
    sendmsg(4, {msg_name(0)=NULL, msg_iov(2)=[{"l\1\0\1b\0\0\0\t\0\0\0\221\0\0\0\1\1o\0\30\0\0\0/org/fre"..., 168}, {"1\0\0\0,\0\0\0/org/freedesktop/secrets"..., 98}], msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 266
    poll([{fd=4, events=POLLIN}], 1, 25000) = 1 ([{fd=4, revents=POLLIN}])
    recvmsg(4, {msg_name(0)=NULL, msg_iov(1)=[{"l\2\1\1\243\0\0\0\230\4\0\0=\0\0\0\6\1s\0\6\0\0\0:1.324\0\0"..., 2048}], msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 243
    write(5, "\1\0\0\0\0\0\0\0", 8) = 8
    recvmsg(4, 0x7ffdcb0261c0, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
    getrusage(RUSAGE_SELF, {ru_utime={0, 33333}, ru_stime={0, 13333}, ...}) = 0
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 48160882}) = 0
    sendmsg(4, {msg_name(0)=NULL, msg_iov(2)=[{"l\1\0\1/\0\0\0\n\0\0\0\230\0\0\0\1\1o\0,\0\0\0/org/fre"..., 168}, {"\33\0\0\0org.freedesktop.Secret.Item\0"..., 47}], msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 215
    poll([{fd=4, events=POLLIN}], 1, 25000) = 1 ([{fd=4, revents=POLLIN}])
    recvmsg(4, {msg_name(0)=NULL, msg_iov(1)=[{"l\2\1\1\226\0\0\0\231\4\0\0-\0\0\0\6\1s\0\6\0\0\0:1.324\0\0"..., 2048}], msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 214
    write(5, "\1\0\0\0\0\0\0\0", 8) = 8
    recvmsg(4, 0x7ffdcb0261c0, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
    --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0} ---
    +++ killed by SIGSEGV (core dumped) +++
    Segmentation fault (core dumped)

  • How to wait for events to happen without using sleeps.

    hi,
    I am basically doing Thread.sleep() for waiting the events to complete.
    For example, when i click on query button, it takes sometime to process in the background & then populate the data in my table.
    So i am using the sleep method for this event to finish.
    I feel this is not the correct approach, can anyone suggest just me a way to wait for the event to finish without actually using sleep method.
    Thanks & Regards,
    Vishal

    Hi,
    Firstly thanks for your valuable suggestion. But i would like to mention one thing, actually i am using JFCunit framework for doing Unit Testing for our Swing based client. So here i am not looking into Swing code that is being developed but rather i am concentrating on writing unit tests to whatever that is been developed.
    So when i click on the query button automatically, it is taking sometime to process (few seconds) & then its populating the data in a table. So in this case if i have to use the progress bar for the event to finish, i guess i have to modify the source code which is not advisable when you are doing unit testing. So i would appreciate if there is any other alternative that you could suggest me apart from using the progress bar.
    Thanks & Regards,
    Vishal

  • How can I get arch-chroot to source /root/.profile [solved]

    I really like the arch-chroot script. When I come into the chroot using the script, I see that the shell is /bin/sh instead of bash. That is ok. How can I get the root user inside the chroot to source /root/.profile automatically? I have a line in there that will
    exec /usr/bin/bash
    . Thank you.
    Last edited by maggie (2013-09-16 19:27:20)

    2ManyDogs wrote:
    Beginner's Guide wrote:
    Note: Use
    arch-chroot /mnt /bin/bash
    to chroot into a bash shell.
    That works. Thank you.

  • How do you compile for flash player 11.3 in Flash Professional CS6?

    I can add a new AIR SDK and compile for AIR 3.3, but I can't figure out how to compile for Flash Player 11.3. 
    Thanks

    You'll have a much better chance of getting a prompt answer in the Flash Professional forum:
    Flash Professional
    This forum is for Adobe Creative Cloud issues.

  • How to install from existing linux without root privilege?

    We have a ubuntu server for develop in our company and I have a account. I am more familiar with archlinux. However, I can't just tell the system administrator to replace ubuntu with arch, since that would break everything. And I do not have root privilege. So I am wondering would it possible to install archlinux in the home directory, and use it like a virtual machine?

    DSpider wrote:
    Pacman needs root privileges (sudo) to work.
    So if sudo works for you, then you have root privileges.
    Maybe fakeroot or fakechroot?
    Trilby wrote:
    Ubuntu + pacman != arch.
    If you are able/allowed to reboot the machine, you certainly can install arch on a flash drive and have your portable system that you would run on their hardware.
    I am asking something different. I want to run arch on another linux.
    ewaller wrote:
    So, as a user on the system, you should be able to install anything you want to your home directory.
    What, specifically, would you like to install to your home directory that you can run with plain user permissions without causing impact to other users.  I am confused as to what you think you want to do..
    Something like, install software (including pacman) to home directory via pacman. Start a server by rc.d (I think in this case, sys-V is better than systemd).
    For example, I could run this command in ubuntu without root permission, and that ubuntu server didn't install mysql.
    $ pacman -S mysql
    $ rc.d start mysqld
    $ #Or "systemstl start mysqld.service"

  • Compiling for old versions

    i have the jdk5 (1.5.0.. whatever) and it wont run on a 1.4.2 RE, is there any way i can compile for an old version without just having 1.4.2 on a different machine and compiling on there (or having a lot of versions of it on this machine)

    The -source option of javac lets you specify the version of source code accepted. And using the -target option will generate class files that will work on VMs with the specified version.
    Check documentation for details:
    http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/javac.html

  • Ubuntu "*-dev" package equivalent for Arch?

    I'm just trying Arch for the first time, migrating from Ubuntu. I'm trying to set up as equivalent a system as I can, software-wise, from a list I kept of of key packages I installed on Ubuntu.
    One thing Ubuntu does (for those unfamiliar with it) is the developers create a package with the compiled/configured binary, and sometimes they also create a development package to be used by other applications that rely on the original package. Ie, you might have "libgtk2.0" and "libgtk2.0-dev", which you usually install separately.
    What's the equivalent of the Ubuntu "*-dev" packages on Arch?

    Ubuntu devs separate them because that's how Debian does it, and it would be a waste of time to reintegrate them again, and it would be messy to not do it for the packages they build themselves but keep the split out headers for the packages they inherit from Debian.
    Debian splits them up for the reason you said though . Without Debian, Ubuntu wouldn't be where it is today. People tend to forget that.

  • How to compile the DB lookup code for XI:

    Dear All,
    i am very new to java and XI. Please let me know how to compile a Java Code for DB lookup and put in the imported Archive in IR. is there a seperate way to do it? Please guide me step by step. for performing Communication channel DB lookup.
    I have gone through the Communication channel lookup of siva,
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    but i am not understanding how to compile the given code in Advanced user functions area without any mandetory .jar files and header files. and put it into XI .
    please guide me.
    I mean i use a jdk1.4.2 Compiler as my XI server has 1.4.2 compiler.
    Regards,
    prakash
    Edited by: senthilprakash selvaraj on Jun 17, 2008 4:03 AM
    Edited by: senthilprakash selvaraj on Jun 17, 2008 4:04 AM

    Hi,
    You don't have to worry about compliation. XI will automatically comple it when you create the udf, activate it and test your mapping. In case of any error it will give compliation error there itself.
    Regarding all the mandatory jar files which are required for compilation is already available in XI server.
    If you are using any third party libraries(jar files) you just need to add the jar file in your external definition and need to import the necessary packages in User Define Function. I hope it answers all your questions.
    Thanks
    Amit
    Reward point if answer is helpful

  • Ubuntu look-alike gnome theme for arch linux

    Is there any theme/gnome package(s) for arch linux that will give me gnome that looks kind of like the gnome package for ubuntu? I'm moving over from ubuntu to arch, and I'm hoping to ease the transition at first while I get used to the rest of the system. Thanks!
    EDIT:  Actually, how configurable is xfce? I've used gnome and kde for arch a bit, but they're just so vanilla, and I'm still looking for a relatively nice graphical interface on top of cli. Thanks!
    Last edited by pythonscript (2009-07-27 23:29:40)

    xfce4 is just about as configurable as GNOME at the level of gconf/ xfconf and way more configurable via the settings GUI.

  • How to make the java files compile for a project created outside of Eclipse

    Hi^^,
    I have created a project outside of Eclipse. It has the following folders
    1. config
    2. source
    3. WEB-INF
    I want to execute the project on remote server. Will it compile automatically creating a new folder for .class files corresponding to the source folder or do i need to include a build.xml to enable the project to create a new folder for .class files. Also pls tell me how do I write this build.xml
    Please advise.

    Hi^^,
    Actually I have created a project without using eclipse.
    My source files are inside WEB-INF/source
    Now I want to compile the files using build.xml so that I can create class files. I am using the following build.xml
    <project name="jsp" default="all" basedir="./">
      <property environment="env"/>
      <property file="ArmorJSP.properties"/>
      <!-- set global properties for this build -->
      <property name="source" value="."/>
      <target name="all" depends="copy, jspc, testservlet"/>
      <!-- Creates jsp_servlet directory under WEB-INF\classes of the Examples Web
        APP and places the compiled jsp classes into it -->
      <target name="jspc">
        <!-- Run ejbc to create the deployable jar file -->
        <java classname="weblogic.jspc" fork="yes">
          <arg line="-webapp ${APPLICATION_HOME} -compileAll -d ${APPLICATION_WEB_CLASSES} ${source}/*.jsp"/>
          <classpath>
            <pathelement path="${WL_HOME}/lib/weblogic_sp.jar;${WL_HOME}/lib/weblogic.jar;${ARMOR_HOME}/ARMORSecurity.jar;${ARMOR_HOME}/ARMORUtil.jar"/>
          </classpath>
        </java>
      </target>
      <!-- Creates jsp_servlet directory under WEB-INF\classes of the Examples Web
        APP and places the compiled Servlets classes into it -->
      <target name="testservlet">
        <!-- Run ejbc to create the deployable jar file -->
        <javac destdir="${APPLICATION_WEB_CLASSES}" srcdir="${source}" includes="*.java">
          <classpath>
            <pathelement path="${WL_HOME}/lib/weblogic_sp.jar;${WL_HOME}/lib/weblogic.jar;${ARMOR_HOME}/ARMORSecurity.jar;${ARMOR_HOME}/ARMORUtil.jar"/>
          </classpath>
        </javac>
      </target>
      <target name="copy">
        <copy todir="${APPLICATION_HOME}">
          <fileset dir="${source}">
            <include name="*.jsp"/>
          </fileset>
        </copy>
      </target>
    </project>I do not know how to compile the project using this build.xml
    The motive of doing all this is to understand how is Eclipse doing the build project step. I simply cannot find any build.xml inside any of my projects created in Eclipse however when right click on the project and choose build project, it compiles excellently. ???
    Edited by: pksingh79 on Nov 24, 2008 1:19 PM

  • How to compile a kernel module without recompiling the whole kernel?

    Hi,
    I'm pretty sure my question is a bit newbish, still I haven't been able to found any information/solution to my problem in 3days.
    The kernel I use doesn't come with the module I need for my hardware and I would like to know if there's a way to compile it without having to make a new kernel myself (since compiling the kernel takes ages on my machine).
    Even if your answer is a "Let me Google that for you", I'm so desperate that I'll be happy to see it.
    Thank you all in advance for your answers!

    Do you have a /proc/config.gz that you could use? Otherwise I don't know. I mean, many modules should be compilable simply with the system-installed kernel headers, but not all native modules might follow that rule.
    Unfortunatel most of what you find on the web talks about how to create new modules which can be compild against the installed kernel tree, not about how to compile one of the native kernel modules against it.
    Actually, try what those links suggest.
    Skip the configuration part, and just do:
    make -C /lib/modules/`uname -r`/build M=$(PWD)/drivers/video modules
    (maybe `make -C /lib/modules/`uname -r`/build M=$(PWD)/drivers/video clean` first )
    EDIT: Meh, that uses your config and won't build that driver... there must be some way though
    EDIT2: Try:
    make -C /lib/modules/`uname -r`/build M=$(PWD)/drivers/video modules CONFIG_FB_VT8623=m CONFIG_FB_SVGALIB=m
    The problem though is, that they might have removed some of the dependencies of the module, so if it doesn't compile, you'll have to recompile the kernel.
    Good thing is though, you can use their .config as base (found in /usr/src/linux-..../.config)
    You can also check if your config "supports" your module by putting it into the kernel source tree, running `make menuconfig` and typing /8623 and pressing enter.
    The last line in that screen should read:
    Selects: <list of options>
    As long as all of those options are either =y or =m, you're good. SVGALIB can be =n because it's part of drivers/video/ and you can compile it together with  your module.
    Last edited by Blµb (2012-03-02 15:14:16)

  • My previous method for payment on itunes was debit card but now I dont have one.  How do I change to no card without creating a new apple id

    My previous method for payment on itunes was debit card but now I dont have one.  How do I change to no card without creating a new apple id?  It tells me to update payment details when I try to update apps but it only has visa, mastercard, amex and maesto.  I dont have any of them.  I did previously use visa but I dont have the card anymore and cant get another one.  Please can someone help me set it up so I dont need a payment method.  Thanks

    Thanks for you reply.  Is that the only way as it would cost me £15?

Maybe you are looking for

  • App to convert incoming texts to emails?

    Is there an iPhone app (preferably free) that will email all incoming text messages, so I can receive my texts as emails?

  • HOW TO TRANSFER HISTORICAL DATA FROM ONE ACCOUNT TO ANOTHER

    제품 : FIN_GL 작성날짜 : 2006-05-29 HOW TO TRANSFER HISTORICAL DATA FROM ONE ACCOUNT TO ANOTHER ============================================================= PURPOSE 특정 기간의 Balance 를 Account 별로 Transfer 하는 방법에 대해 알아 보도록 한다. Explanation GL 의 Mass Maintenanc

  • Macbook Pro Sound becomes mute after upgrading to 10.6.3

    Every thing on my new MBP was working fine, till I just upgraded the firmware from the 10.6.2 to 10.6.3 Now the sound went mute. No mater what I do, it remains mute. I tried every thing, went to system preferences, tried to slide the volume slider, b

  • Oo4o release 10.1.0.5.1

    Hello every body, I have problem with oo4o release 10.1.0.5.0 april 2004 with windows 2003 server ... under heavy load it always causes the crash of IIS worker process w3wp.exe ... I read on metalink about new release of OO4O 10.1.0.5.1 Nov 2004 ...

  • Transfer Macbook Pro Aperture3 Pics to Imac Aperture3

    Just got back from vacation where I shot a ton of RAW pics and imported to my macbook pro using Aperture 3. Now I am home,  What is the best way to import those files to my Imac Aperture3 Library? I have a USB to USB cable if that works...