[SOLVED] Non-actual local repository

Hi, I had kernel.org as a main mirror and since it was down, pacman -Syu showed some error while downloading packages. So I stopped actualization, commented kernel.org (I have few other mirrors) and ran pacman -Syu again. Everything worked, system actualized normally but now, every time I run pacman -Syu, even if the system is actual (and I actualized it few seconds ago), it downloads package list from core, extra and community. It is hard to explain, but I show you example:
[garret@sol ~]$ sudo pacman -Syu
:: Synchronizing package databases...
catalyst is up to date
core 53.5K 2.5M/s 00:00:00 [#######################################################################] 100%
extra 779.9K 3.4M/s 00:00:00 [#######################################################################] 100%
community 453.9K 2.7M/s 00:00:00 [#######################################################################] 100%
archlinuxfr is up to date
:: Starting full system upgrade...
there is nothing to do
[garret@sol ~]$ sudo pacman -Syu
:: Synchronizing package databases...
catalyst is up to date
core 53.5K 2.4M/s 00:00:00 [#######################################################################] 100%
extra 779.9K 4.6M/s 00:00:00 [#######################################################################] 100%
community 453.9K 3.2M/s 00:00:00 [#######################################################################] 100%
archlinuxfr is up to date
:: Starting full system upgrade...
there is nothing to do
[garret@sol ~]$
So every time I run pacman -Syu, it downloads new package list from core, extra and community even if the local package list is actual. It is working, but it's little bit confusing. Does anybody know what to do with it?
Last edited by garretraziel (2011-09-11 20:39:56)

No, I tried some german mirror and it works without problem. So I think that it is problem on czech vpsfree mirror. Marking it as solved and patiently waiting for kernel.org to be up and running.

Similar Messages

  • [SOLVED]Make a local repository

    I wonder if there is a way to make an archlinux repository for AUR packages, I think it'll be a lot easier to share these packages to other "Archers" with packages available in local repository like /var/cache/pacman/pkg
    Can anyone tell me how to make it, because i cannot find it anywhere so probably with asking in the forum i will find the answer.
    Thanks to you guys!
    Last edited by ch1pz (2010-04-08 14:29:11)

    first what you call AUR packages are not in fact binary packages but rather builds for making those packages. this means that is no sense for doing a repository.
    if you want to redistribute some of the builds out there, the tool for creating a repository is repo-add which is distribute with pacman.
    repo-add repo_name.db.tar.gz package-pkgver-pkgrel.pkg.tar.gz

  • [SOLVED] Create local repository

    Hello everyone!
    First of all, I'd like to apologize for the terminology. I'm still not sure about what are the names I should use. That said, here's my problem: I want to set up a local repository to place all the packages I've ever built with makepkg. The main reason that has motivated me to do so is that, when building a package, I often need to install make dependencies, such as, for example, xorg-server-devel. That package in particular comes from xorg-server, which I have built by myself. Thus, if a package required it, I should install the correspondent package (the one I've built), and not the generic one coming from the repositories (this case may not be a good example, but, well, just think about kernel headers).
    In order to set up the repository, I read Allan McRae's articles about makepkg, repo-add and package signing. I generated a key with GPG as explained here, taking the defaults, and added it to the pacman's keyring:
    gpg --export Kalrish > Kalrish.key
    pacman-key -a Kalrish.key
    I also edited /etc/makepkg.conf as follows:
    BUILDENV=(fakeroot !distcc color !ccache check sign)
    Note that I've enabled sign.
    I decided to maintain my "local repository" (please, correct me if I'm not making use of the correct terminology) in /var/abs/local. For that purpose, I edited /etc/makepkg.conf:
    $ grep -m1 PKGDEST /etc/makepkg.conf
    PKGDEST=/var/abs/local
    I then built dhcpcd (which is relatively small), just to try out. makepkg put the package file in /var/abs/local as I intended; then, I did this:
    repo-add 'local.db.tar.gz' 'dhcpcd-5.6.8-3-x86_64.pkg.tar.xz'
    It asked me for the password to unlock my secret key. After entering it, all went well:
    ==> Adding package 'dhcpcd-5.6.8-3-x86_64.pkg.tar.xz'
    -> Adding package signature...
    -> Computing checksums...
    -> Creating 'desc' db entry...
    -> Creating 'depends' db entry...
    ==> Creating updated database file 'local.db.tar.gz'
    And finally added the repo in /etc/pacman.conf (I'm only showing the relevant part of the file):
    [local]
    Server = file:///var/abs/local
    I updated the package databases just fine with pacman -Syy. But, after removing the previously-downloaded packages from /var/cache/pacman/pkg, when trying to install the package:
    $ pacman -Sy dhcpcd
    :: Synchronizing package databases...
    local is up to date
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    :: dhcpcd is in IgnorePkg/IgnoreGroup. Install anyway? [Y/n] y
    warning: dhcpcd-5.6.8-3 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): dhcpcd-5.6.8-3
    Total Installed Size: 0.23 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    (1/1) checking keys in keyring [######################] 100%
    (1/1) checking package integrity [######################] 100%
    error: dhcpcd: signature from "Kalrish (Kalrish Bäakjen) <[email protected]>" is invalid
    :: File /var/cache/pacman/pkg/dhcpcd-5.6.8-3-x86_64.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
    Do you want to delete it? [Y/n] n
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.
    So it seems that I have not added my key properly. Can anybody please help me? Any answer, even if it explained why I shouldn't be trying to do this or why I should try other alternatives, will be welcomed.
    Best regards,
    Kalrish
    Last edited by Kalrish (2013-06-28 18:26:30)

    drcouzelis wrote:... if you built the package on that machine yourself then all of the dependencies are already installed.
    I was talking about make dependencies, not runtime dependencies. I always build with makepkg -sr :)
    drcouzelis wrote:I hope I'm not being too critical. I just don't want you to work harder than you need to. :)
    Of course not, don't worry.
    Kalrish wrote:Any answer, even if it explained why I shouldn't be trying to do this or why I should try other alternatives, will be welcomed.
    I love thought-provoking answers as well as personal opinions. Who knows when an unexpected explanation may change my mind and make me think different? You're right: it may not be worth it. But, well, you yourself pointed the "elegant" reason out:
    drcouzelis wrote:I think the only benefit of creating a local repository is so you can use "pacman -S" instead of "pacman -U".
    If pacman found the packages by itself, I wouldn't have to execute pacman -U --asdeps for every make dependency that is required by a package - but rather execute makepkg -sr and simply let pacman pick those packages I've built by myself from my local repository, and the rest from the official repos.

  • Error when trying to make local repository (solved)

    i'm trying to make a local repository for a laptop without internet connection.
    on my desktop, the packages are in /var/cache/pacman/pkg and the corresponding PKGBUILD in /var/lib/pacman/local. but whenever i run (as root)
    #gensync /var/lib/pacman/local /var/cache/pacman/pkg/laptop.db.tar.gz
    i get the following error:
    gensync: building database entries, generating md5sums...
    gensync: compressing to /var/cache/pacman/pkg/laptop.db.tar.gz...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    i can see the file laptop.db.tar.gz, but it's only 45 bytes!
    Last edited by chilebiker (2007-04-18 20:52:37)

    Maybe you could describe what you are doing a bit more. What I gather is that you want to take the pacman cache from the desktop system and somehow (how?) use this to update (or install to?) a laptop.
    You can make the desktop cache into a repository with gen_repo - but I forgot to say that you need to check that only a single version of each package is present in the cache (I think pacman -Sc should do that).
    If the laptop and desktop are then connected, e.g. by lan, you can set pacman.conf on the laptop to point at this repository (e.g. using NFS). Or you can copy the repository to the laptop and set pacman.conf to point at it.
    Another possibility would be to copy the pacman db (/var/lib/pacman/) to the laptop, and the package cache, then use pacman -S to install stuff. For that you don't need gen_repo, etc. Or you could just mount the desktop cache using NFS.
    There are all sorts of possibilities ... did you have something particular in mind?

  • Error add local repository[SOLVED]

    I create a local repository as wiki says. http://wiki.archlinux.org/index.php/Cus … nd_gensync.
    My db.tar.gz is at
    /home/lq/abs/myrepo.db.tar.gz
    And here is my pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    #HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl %u > %o
    #CleanMethod = KeepInstalled
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =xorg-server xorg-server-utils xf86-input-evdev xf86-input- synaptics kernel26 kernel26-firmware libgl ati-dri kernel-headers glibc binutils gcc-libs gcc
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #NoPassiveFtp
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # Testing is disabled by default. To enable, uncomment the following
    # two lines. You can add preferred servers immediately after the header,
    # and they will be used before the default mirrors.
    #[testing]
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [myrepo]
    Server = file:///home/lq/abs
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[archlinuxfr]
    #Server = http://repo.archlinux.fr/i686
    #[Gooth]
    #Server = http://public.gooth.cn/archlinux/gooth/os/i686
    And when update,it says
    2009-10-12 21:26:59 (9.92 MB/s) - `/var/lib/pacman/community.db.tar.gz.part' saved [377225/377225]
    file:///home/lq/abs/myrepo.db.tar.gz: Unsupported scheme `file'.
    :: Starting full system upgrade...
    local database is up to date
    Could anyone tell me what is the problem ?
    Last edited by fbchaos (2009-10-12 14:56:01)

    Looks like you are using wget as your download agent (check XferCommand in pacman.conf). wget doesn't understand file, you can either switch to curl or the internal downloader.
    Last edited by Garns (2009-10-12 14:31:18)

  • Oracle VM 3.1.1 and local repository

    Hi there,
    I have created one LUN hardware RAID 10 for 4x300G SAS disks, and then installed Oracle VM Server 3.1.1, during the installation I determined the remaining space on sda for Oracle VM repository on partition sda2 mounted on directory /OVS OCFS2 file system, installation completed successfully, and then I installed Oracle VM Manager 3.1.1 on a separate machine it is installed and working fine.
    Now, Oracle VM Manager discover the Oracle VM server smoothly but unable to detect that remaining space on /OVS, my question how to use this remaining space for Oracle VM repository as I read on the new release document "Release Notes" : said that this issue is fixed with this release and mentioned it as bug in their previous version. I wish if any ideas or workaround to fix this issue as I always hope, there is a manual intervention to solve this issue and want at the same time to keep performance benefit of RIAD 10 configuration.
    Thanks in advance,

    Sorry, you get to do it over.
    You must install the Local Repository on an unused, complete, unpartitioned LUN of it's own. Build about a 50G LUN for Oracle VM and and additional LUN for the remaining terabyte. OVM will then see the space and utilize the repo. Create a non-clustered Server Pool.
    You can put OVM in much smaller space, but I like to have "extra" (add a /dev/sda4 and mkfs on it) stuff on my OS disks. If you don't want to do that, OVM fits nicely in 5G. I"d give it 10G for growth with later upgrades, however.

  • OVM 3.0.1 local repository problem

    Good morning all, i am really new in OVM and i am facing a big issue that stops me evaluating this product.
    I have a couple of servers, connected to a S.A.N. array. I can see from both the servers i added to a clustered pool, and i am able to create a shared repository without problems.
    I am not able to see local disks in the OVM manager administration and therefore i can't create local repositories. I tried all i found in this forum, but without success.
    Let's focus on server1: it has a couple of 146GB disks. I used one of them for OVS installation leaving the second disk alone, without partitioning it.
    Tried to create local repository in the clustered pool, but no way...
    So i created a single full-disk partition and retried to create repo: still no way
    Then i created an ocfs2 filesystem in the new partition but, again, i couldnt see physical local server1 disk.
    Every time i changed partitions configuration, i obviously did rescanning of physical disks.
    I all my tests, local physical disks selection list in Generic Local Storage Array @ node1 is always empty.
    Any hint about solving this issue? Any good pointer to an hands-on guide (official docs are not so good)? Any suggestion about what to look at in log files for debugging?
    Any answer is welcome...
    Thank you all!

    I was able to do this as follows
    1. have an untouched unformatted disk (no partitions, no file system)
    2. in hardware under the vmserver name , scan for the disk and it should show in the list
    3. in the repository section of home, add the repository as physical disk
    4. "present" (green up and down arrows) the physical disk on the vmserver itself (dont ask me why you have to do this but if you dont it wont find its own disk)

  • Upgrade to SRU8.5 using local repository failed .

    We downloaded the ISO image of latest SRU (8.5) and created local repository.
    When we tried to upgrade a solaris 11 GA to SRU 8.5, we got following error.
    Is it that in order to upgrade to latest SRU, al the previous SRUs need to be installed in that order?
    When we upgraded to SRU 8.5 from oracle’s online repo, it worked.
    root@test:~# pkg update -nv
    Creating Plan -
    pkg update: No solution was found to satisfy constraints
    Plan Creation: Package solver has not found a solution to update to latest available versions.
    This may indicate an overly constrained set of packages are installed.
    latest incorporations:
    pkg://solaris/consolidation/osnet/[email protected],5.11-0.175.0.8.0.5.1:20120618T173352Z
    pkg://solaris/consolidation/userland/[email protected],5.11-0.175.0.8.0.4.0:20120601T170434Z
    pkg://solaris/consolidation/install/[email protected],5.11-0.175.0.7.0.2.0:20120416T210633Z
    pkg://solaris/consolidation/SunVTS/[email protected],5.11-0.175.0.7.0.3.0:20120421T004225Z
    pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z
    pkg://solaris/consolidation/ips/[email protected],5.11-0.175.0.7.0.4.0:20120430T200820Z
    pkg://solaris/consolidation/ldoms/[email protected],5.11-0.175.0.8.0.3.0:20120525T222045Z
    pkg://solaris/consolidation/desktop/[email protected],5.11-0.175.0.8.0.3.0:20120524T231910Z
    pkg://solaris/consolidation/desktop/[email protected],5.11-0.175.0.8.0.3.0:20120524T231907Z
    pkg://solaris/[email protected],5.11-0.175.0.8.0.5.0:20120618T173955Z
    pkg://solaris/consolidation/X/[email protected],5.11-0.175.0.8.0.2.1226:20120519T002403Z
    pkg://solaris/consolidation/cacao/[email protected],5.11-0.175.0.6.0.1.0:20120323T204721Z
    The following indicates why the system cannot update to the latest version:
    No suitable version of required package pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z found:
    Reject: pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z
    Reason: All versions matching 'incorporate' dependency pkg:/runtime/java/[email protected],5.11-0.175.0.8.0.4.0 are rejected
    Reject: pkg://solaris/runtime/java/[email protected],5.11-0.175.0.8.0.4.0:20120604T164136Z
    Reason: A version for 'require' dependency on pkg:/system/library/c++/[email protected],5.11-0.164 cannot be found
    No suitable version of required package pkg://solaris/runtime/[email protected],5.11-0.175.0.8.0.4.0:20120604T164207Z found:
    Reject: pkg://solaris/runtime/[email protected],5.11-0.175.0.8.0.4.0:20120604T164207Z
    Reason: All versions matching 'require' dependency pkg:/runtime/java/[email protected],5.11-0.175.0.8.0.4.0 are rejected
    Reject: pkg://solaris/runtime/java/[email protected],5.11-0.175.0.8.0.4.0:20120604T164136Z
    Reason: A version for 'require' dependency on pkg:/system/library/c++/[email protected],5.11-0.164 cannot be found
    Edited by: 956322 on Aug 31, 2012 7:35 AM

    We downloaded the ISO image of latest SRU (8.5) and created local repository.
    When we tried to upgrade a solaris 11 GA to SRU 8.5, we got following error.
    Is it that in order to upgrade to latest SRU, al the previous SRUs need to be installed in that order?
    When we upgraded to SRU 8.5 from oracle’s online repo, it worked.
    root@test:~# pkg update -nv
    Creating Plan -
    pkg update: No solution was found to satisfy constraints
    Plan Creation: Package solver has not found a solution to update to latest available versions.
    This may indicate an overly constrained set of packages are installed.
    latest incorporations:
    pkg://solaris/consolidation/osnet/[email protected],5.11-0.175.0.8.0.5.1:20120618T173352Z
    pkg://solaris/consolidation/userland/[email protected],5.11-0.175.0.8.0.4.0:20120601T170434Z
    pkg://solaris/consolidation/install/[email protected],5.11-0.175.0.7.0.2.0:20120416T210633Z
    pkg://solaris/consolidation/SunVTS/[email protected],5.11-0.175.0.7.0.3.0:20120421T004225Z
    pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z
    pkg://solaris/consolidation/ips/[email protected],5.11-0.175.0.7.0.4.0:20120430T200820Z
    pkg://solaris/consolidation/ldoms/[email protected],5.11-0.175.0.8.0.3.0:20120525T222045Z
    pkg://solaris/consolidation/desktop/[email protected],5.11-0.175.0.8.0.3.0:20120524T231910Z
    pkg://solaris/consolidation/desktop/[email protected],5.11-0.175.0.8.0.3.0:20120524T231907Z
    pkg://solaris/[email protected],5.11-0.175.0.8.0.5.0:20120618T173955Z
    pkg://solaris/consolidation/X/[email protected],5.11-0.175.0.8.0.2.1226:20120519T002403Z
    pkg://solaris/consolidation/cacao/[email protected],5.11-0.175.0.6.0.1.0:20120323T204721Z
    The following indicates why the system cannot update to the latest version:
    No suitable version of required package pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z found:
    Reject: pkg://solaris/consolidation/ub_javavm/[email protected],5.11-0.175.0.8.0.4.0:20120604T164023Z
    Reason: All versions matching 'incorporate' dependency pkg:/runtime/java/[email protected],5.11-0.175.0.8.0.4.0 are rejected
    Reject: pkg://solaris/runtime/java/[email protected],5.11-0.175.0.8.0.4.0:20120604T164136Z
    Reason: A version for 'require' dependency on pkg:/system/library/c++/[email protected],5.11-0.164 cannot be found
    No suitable version of required package pkg://solaris/runtime/[email protected],5.11-0.175.0.8.0.4.0:20120604T164207Z found:
    Reject: pkg://solaris/runtime/[email protected],5.11-0.175.0.8.0.4.0:20120604T164207Z
    Reason: All versions matching 'require' dependency pkg:/runtime/java/[email protected],5.11-0.175.0.8.0.4.0 are rejected
    Reject: pkg://solaris/runtime/java/[email protected],5.11-0.175.0.8.0.4.0:20120604T164136Z
    Reason: A version for 'require' dependency on pkg:/system/library/c++/[email protected],5.11-0.164 cannot be found
    Edited by: 956322 on Aug 31, 2012 7:35 AM

  • My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application"

    My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application" and "<app> could not be downloaded at this time - Done or Retry".
    It's not an iTunes login / password issue because sometimes one or two of the Apps will download and the others stall with the blank progress bar. The internet connection is working fine in all other respects.
    Sometimes, many restarts later the downloads will complete. Is this a known bug? Is Apple working on it? Any fixes?

    My iPhone3GS running iOS5 has recently been reluctant to upgrade Apps. The App store asks for my password and then marks all the Apps as being updated. Often only one or none actually update. Usually I get a message saying "Unable to download application" and "<app> could not be downloaded at this time - Done or Retry".
    It's not an iTunes login / password issue because sometimes one or two of the Apps will download and the others stall with the blank progress bar. The internet connection is working fine in all other respects.
    Sometimes, many restarts later the downloads will complete. Is this a known bug? Is Apple working on it? Any fixes?

  • Subversion: Cannot import files into a local repository

    If following the directions from here:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/subversion/subversion.html
    I've got the local repository created and can successfully connect to it, but when it try to import files is get a popup saying "Unable to import source files into the Subversion repository at svn://localhost."
    This is the stack trace:
    org.tigris.subversion.svnclientadapter.SVNClientException: org.tigris.subversion.javahl.ClientException: svn: 170001: Authorization failed
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.doImport(AbstractJhlClientAdapter.java:700)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.executeImport(SVNImportWizard.java:476)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.commitWizard(SVNImportWizard.java:204)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.mav$commitWizard(SVNImportWizard.java:78)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard$3$1.run(SVNImportWizard.java:137)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: org.tigris.subversion.javahl.ClientException: svn: 170001: Authorization failed
         at org.tigris.subversion.javahl.JavaHLObjectFactory.throwException(JavaHLObjectFactory.java:435)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.throwException(SVNClientImpl.java:1224)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.doImport(SVNClientImpl.java:601)
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.doImport(AbstractJhlClientAdapter.java:696)
         ... 5 more
    I'm using JDeveloper 10.1.3.0.4.3673 and Subversion 1.4.6. Please advise.

    Thank you so much for your help. With some deeper googling, i found some info on editing the svnserve.conf file. That fixed my authentication issue. But alas, there is a new problem: Same popup, new stack trace:
    org.tigris.subversion.svnclientadapter.SVNClientException: org.tigris.subversion.javahl.ClientException: svn: Malformed network data
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.doImport(AbstractJhlClientAdapter.java:700)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.executeImport(SVNImportWizard.java:476)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.commitWizard(SVNImportWizard.java:204)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard.mav$commitWizard(SVNImportWizard.java:78)
         at oracle.jdevimpl.vcs.svn.imp.SVNImportWizard$3$1.run(SVNImportWizard.java:137)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: org.tigris.subversion.javahl.ClientException: svn: Malformed network data
         at org.tigris.subversion.javahl.JavaHLObjectFactory.throwException(JavaHLObjectFactory.java:435)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.throwException(SVNClientImpl.java:1224)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.doImport(SVNClientImpl.java:601)
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.doImport(AbstractJhlClientAdapter.java:696)
         ... 5 more
    I've been looking all morning for solutions, but to no avail.

  • System update configuration issue with local repository related to machine type

    Hi,
     Sorry if the issue has been posted earlier, i tried searching but cudnt find relevant post. Here is my issue:
     My machine is Thinkpad R52. Type as printed on label is: 1858-CLG 
     While adding machine type in update retriever, I added machine type as 1858 (as it doesnt accept 1858CLG). After connecting to the support site, it downloaded all required updates onto a local(shared) repository.
    I installed system update, configured it to pickup update from local (network) repository in the registry.
    Now when I launch system update, it determines my machine type as 1858CLG & it connects to local repository only to display message as "No updates were found for this machine type"
    Though I cud see updates if I directly connect to help center.
    I think the problem is with machine type identification, not sure though.
    Please advice on what I'm doing wrong. Is it with update retriever configuration or system update configuration.
    Thanks much,

    Solution for me was to change status of packages from "Test" to "Active" using Update Retriever.
     Since this is not documented in Best Practices (but is stated in chapter 5 - modify settings) I spent several hours figuring it out..
    -brian

  • Best way to upgrade the local repository from 11.7.3 to 12.2.3.3 DS 3

    Hi, we are going to upgrade our DI 11.7.3 to DS3 - 12.2.3.3 in Sep. I found out there are different ways to upgrade the local repository from the SAP doc and tech support. I try to find a best and safe way to do it. If anyone had experince and inputs on this. It would be great appreciated. It seems there are these options:
    we all agree that need to back up the repostiry db, and export the repository to atl file.
    Option 1:
    Upgrade the repository during the Data Services installation. But the tech support said there are times where this does not work as expected and Option 2 below needs to be implemented.
    Option 2:
    a) Export the local repository, via 11.7.3 Designer, to an ATL file.
    b) Uninstall 11.7.3.
    c) Create a new database in SQL Server to use with 12.2.3.3. (Optionally, use the existing 11.7.3 database. If you do, make a backup of it before making any changes).
    d) Install Data Services 12.2.3.3 and reference the database created in step "c" above during installation (select the Create option).
    e) Log in to the new local repo, via 12.2.3.3 Designer, and import the ATL that was exported in step "a" above.
    Option 3:
    a. Create a new database u2013 20 MB space
    b.Create a new repo in 11.7.3 point to ds_local via Repository Manager (click create)
    c.Log in 11.7 designer and Repository import from out.atl
    d.Install 12.2.3.3 without upgrde the repostory
    e.use epository manager in 12.2.3 to upgrade the new repository

    Hi.
    If you import the 11.7 atl into a 12.2 Designer you will face a warning message like this:
    "The version 11.7 of the ATL file <c:\export.atl> is lower than the repository version <12.2>.
    To update an ATL file, import it into a repository of the same version then ugrade that repository"
    So, the correct method to upgrade the Data Integrator 11.7 repository to Data Services 12.2.x is the following:
    - Export the complete Data Integrator 11.7 repository to ATL.
    - Create a NEW Data Integrator 11.7 Local Repository.
    - Import the ATL created in step 1 to the NEW Data Integrator 11.7 Repository. At this point you have two identical local repositories.
    - From the Data Services 12.2.x system, open Repository Manager.
    - Enter the Database connection information to the NEW repository created in step 2.
    - Select UPGRADE, to upgrade this repository to support Data Services 12.2.x.
    - Log into Data Services Designer to start using this Local Repository.
    Regards,
    Leo.

  • Got multiple values for non null local custom field

    Hi,
    I get the following error message while saving a MPP from Project Professional to MS Project Server:
    Got multiple values for non null local custom field.
    I checked the MPP and found that there are fields with same alias as Enterprise field names. However, these fields are at a Task level, whereas the Enterprise fields are at a Project Level.
    I would like to know why this is happening and the resolution for this issue. I don't want to delete the local fields.
    Any help in this regard will be appreciated.

    Then try to find any inconsistencies in the project plans with the issues, like required values not entered. Also try to save the plan as XML format and save it back as an mpp file to see if it helps (be aware that any formatting will be lost).
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Previous Version of Local Repository

    Hi ALL.
    I need some help....
    Want to find out if there is a way of retrieving my local repository's work?
    The issue I face is that I mistakenly used the "Get Lastest Version"  (from the Central Repository) feature & as a result it has overwritten my work in my local repository.
    Is there a way to revert back?? I know the one way would have been to have created an .ATL file.
    You help will be very much appreciated.
    Thanks.

    Hi Jeff.
    They probably have.
    Nevertheless, I found that most of the data flows are published in the Central Repo.
    So what I did, is the the logs from a previously run job to see which dataflows were used, and I basically then re-used the same data flows, as a result the re-work was not as much.
    Anyways moral of the story, ALWAYS make ATL back-ups.
    Thanks guys for your help!

  • Get message " The local repository database could not be found or is corrupted"

    Hi
    I want to update the System drivers , but constanly getting the massage
    "The local repository database could not be found or is corrupted"
    not sure what to do
    cannot find any reference to the error
    Please assist
    This is getting to me
    Johan

    Hi,
    I have the same issue (on a windows 2008 R2 SP1)
    I want to  do a backup from my automation (a simple batch .cmd)
    I'm doing this command:
    C:\Users\Administrator>wbadmin start backup -backuptarget:s:\backup -exclude:s: -allCritical -include:C:,R: -quiet
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2004 Microsoft Corp.
    Retrieving volume information...
    This will back up volume System Reserved (100.00 MB),New Volume(R:),DISK_S(S:) (Selected Files),Local Disk(C:) to s:\backup.
    ERROR - The specified backup location could not be found or is not a supported backup storage location.
    The only way to get this working, is working via UNC to the local drive S-drive 
    C:\Users\Administrator>wbadmin start backup -backuptarget:\\myserver\s$\backup -exclude:s: -allCritical -include:C:,R: -quiet
    However, the backup succeeds with these warnings:
    Retrieving volume information...
    This will back up volume System Reserved (100.00 MB),New Volume(R:),DISK_S(S:) (Selected Files),Local Disk(C:) to
    \\myserver\s$\backup
    and giving a warning
    The backup of volume DISK_S(S:) could not be completed. Error: The requested operation could not be completed due to a file system limitation
    The backup operation completed with errors.
    Looks like the wbadmin does not read the -exclude option?
    Regards,
    David

Maybe you are looking for