search for: newer

Displaying 20 results from an estimated 13096 matches for "newer".

Did you mean: never
2005 Mar 07
0
[Bug 2423] New: Feature Request: Ability to transfer files newer than date or file. (--newer switch).
https://bugzilla.samba.org/show_bug.cgi?id=2423 Summary: Feature Request: Ability to transfer files newer than date or file. (--newer switch). Product: rsync Version: 2.6.3 Platform: All OS/Version: Linux Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned@samba.org...
2013 Oct 27
1
Does elrepo fix google-chrome requirement for newer glib and GTK
Has anyone tested installing the newer kernels from elrepo (or somewhere else) in order to keep google-chrome updated beyond version 27? Actually, i assumed a newer kernel would come with a newer glibc but i do not see a newer glibc via elrepo, just newer kernels. hmmm. # yum --disablerepo=* --enablerepo=elrepo* info glibc | grep -i...
2014 Jun 04
0
[Bug 2423] Feature Request: Ability to transfer files newer than date or file. (--newer switch).
https://bugzilla.samba.org/show_bug.cgi?id=2423 --- Comment #10 from Rainer Glaschick <rgpb at online.de> 2014-06-04 06:56:27 UTC --- I vote for the original proposal. Using --files-from does not work with --delete, which is absolutely correct, but --newer could delete all files on the target that are not in the newer list. I use rsync for backup to large external harddisk monthly, that is disconnected and moved to a save place otherwise. In between these full mirror backups, I use a small device (actually a raspberry pi in a separate room) receivin...
2007 Jan 04
1
DO NOT REPLY [Bug 2423] Feature Request: Ability to transfer files newer than date or file. (--newer switch).
...) of data from a remote site and process them, with subsequent updates to the source files where only very few files are changed or added and the majority of the processed files lie around motionless, possibly for years. No use at all in keeping it around, except that rsync (without the suggested --newer switch) insists on having them about. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.
2016 Jun 29
3
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
Well, is that possible to include libstdc++4.7 into llvm? On Wed, Jun 29, 2016 at 2:26 AM, Brian Cain <brian.cain at gmail.com> wrote: > Sorry if I was unclear, I have no problems building clang against a newer > gcc for my own purpose. But it doesn't make sense to provide a release > binary for clang that's hosted on llvm.org that's ostensibly for > "centos6" when it would really be bound to "centos6 plus the SCLO mirror > which has the dependency for a newer libst...
2020 Apr 03
5
[supermin PATCH v2 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an output when checking whether the appliance must be rebuilt using --if-newer. At the moment it is implemented only for the ext2 output format of the build mode. Changes from v1: - drop empty stub for the prepare mode - add patch to ignore --if-newer on modes different than build - squash patch with stub for the build mode and patch with the build mode files together Pi...
2005 Apr 28
0
[Bug 2423] Feature Request: Ability to transfer files newer than date or file. (--newer switch).
...files-from and include/exclude don't mix. It's also really hard to avoid recursion with find, and it would be nicer to be able to do it all within rsync for efficiency reasons (it's already stat()ing files, for one.) Perhaps something matching find's syntax for these things: --newer file newer than a reference file. (perhaps also -older, as you wouldn't have the '! -newer' syntax of find) --mtime n (if the file was modified n days ago, also +n, -n) --ctime n (ditto, for inode change time) --atime n (ditto, for access time) -- Configure bugmail: https://...
2019 Mar 04
2
[supermin PATCH] rebuild the output it when SUPERMIN_KERNEL or SUPERMIN_MODULES are defined
SUPERMIN_KERNEL and SUPERMIN_MODULES don't work to guestfish. Since guestfish sets --if-newer parameter to supermin, so the environment variables are not used under the following conditions. - the output directory exists and, - the dates of both input files and package database are older than the output To solve that, rebuild the output it when SUPERMIN_KERNEL or SUPERMIN_MODULES a...
2016 Jun 28
0
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
Sorry if I was unclear, I have no problems building clang against a newer gcc for my own purpose. But it doesn't make sense to provide a release binary for clang that's hosted on llvm.org that's ostensibly for "centos6" when it would really be bound to "centos6 plus the SCLO mirror which has the dependency for a newer libstdc++". The gli...
2016 Jun 29
0
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
..., 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com> wrote: > Well, is that possible to include libstdc++4.7 into llvm? > > On Wed, Jun 29, 2016 at 2:26 AM, Brian Cain <brian.cain at gmail.com> wrote: > >> Sorry if I was unclear, I have no problems building clang against a newer >> gcc for my own purpose. But it doesn't make sense to provide a release >> binary for clang that's hosted on llvm.org that's ostensibly for >> "centos6" when it would really be bound to "centos6 plus the SCLO mirror >> which has the dependency f...
2016 Jun 28
2
The clang for centos6 are need GLIBC_2.14, but we only have GLIB 2.12 by default.
Hell, Brian, I found a way to install Gcc 5.3 on CentOS 6 without the need to building it from source. You may try it on CentOS 6.0 That's makes clang/llvm won't depends on the newer version of glibc 2.14 The instruction: vim /etc/yum.repos.d/llvm.repo The content: ``` [sclo] name=SCLO baseurl=http://mirror.centos.org/centos/6/sclo/x86_64/rh/ gpgcheck=0 enabled=1 ``` Installation step: ``` yum clean all yum list echo y | yum install devtoolset-4 ``` On Wed, Jun 29, 2016 at...
2020 Apr 03
0
[supermin PATCH v2 4/4] build: check for outputs in --if-newer check (RHBZ#1813809)
...ot exist or is older than the package manager DB we can rebuild the appliance. Add a simple test to verify this behaviour. --- src/mode_build.ml | 12 ++++++++ src/mode_build.mli | 4 +++ src/supermin.ml | 6 ++-- tests/Makefile.am | 3 +- tests/test-if-newer-ext2.sh | 57 +++++++++++++++++++++++++++++++++++++ 5 files changed, 79 insertions(+), 3 deletions(-) create mode 100755 tests/test-if-newer-ext2.sh diff --git a/src/mode_build.ml b/src/mode_build.ml index d54a3cd..ed47366 100644 --- a/src/mode_build.ml +++ b/src/mode_build.ml @@ -462,3 +462,15 @...
2001 Jul 03
2
need newer binutils?
Hi, I tried to compile wine and got the message: ... check if it is possible to make a Libary... no *** If you use Linux *** you need a newer binutils *** cause of the shared libs so I looked for newer binutils, and tried to complie them: binutils-2.9.5.0.37 configure, make, make install but wine gives me the same message :( The next idea was, to replace the ld... with newer one. But when I tried to complile ld.so-1.9.11 I got the er...
2008 Mar 10
1
Newer MySQL in centos-plus?
Hi List, I'm noticing that the CentOS-plus repo for 4.6 has MySQL 5.0.54 in it, but the CentOS 5.1 repo does not have a newer rpm, leaving the "newest" easily-available version as the vendor-provided mysql 5.0.22. Is there a reason for this? We're wanting to try a newer MySQL under CentOS 5.1 -- do any of the standard repos include such an RPM? Thanks! -Jeff
2005 Mar 12
3
[Bug 2423] Feature Request: Ability to transfer files newer than date or file. (--newer switch).
...---------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From wayned@samba.org 2005-03-12 16:35 ------- I'd suggest using a combination of "find" and the --files-from option to rsync: find . -newer changelog-200503-02.sql | rsync -av --files-from=- . host:/dest/ or find /src -mtime -1 | rsync -av --files-from=- / host:/dest/ Unfortunately, that only works (easily) with a push, which is rather annoying. Even so, I'm currently doubtful that I'll include this, but I'll leave it o...
2019 Jan 02
6
[Bug 13735] New: Synchronize files when the sending side has newer change times while modification times and sizes are identical on both sides
https://bugzilla.samba.org/show_bug.cgi?id=13735 Bug ID: 13735 Summary: Synchronize files when the sending side has newer change times while modification times and sizes are identical on both sides Product: rsync Version: 3.1.3 Hardware: All OS: All Status: NEW Severity: normal Priority: P5...
2020 Apr 03
5
[supermin PATCH 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an output when checking whether the appliance must be rebuilt using --if-newer. At the moment it is implemented only for the build mode, and for its ext2 output format. Pino Toscano (4): build: factor ext2 filenames Tighten Unix_error check for missing outputdir Extend modes with list of outputs build: set kernel/initrd/root as outputs (RHBZ#1813809) src/mode_buil...
2015 Feb 15
2
Updated Spam Assassin for CentOS 5...
I am wondering about updating the version of Spam Assassin on my CentOS 5 mail server. The current version, 3.3.1-4.el5 (stock RHEL version), has been 'leaking' recently. I suspect I need some newer match rules to detect some of the newer flavors of spam. I see that in rpmforge's extras repo is version 3.3.2-4.el5.rfx -- is this version worth installing? Are there even newer versions either available for CentOS 5 (or buildable under CentOS 5)? Or is there a collection of match rules availa...
2015 Jun 29
4
CentOS 6 gcc is a bit old
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11) is a bit old. There have been major changes since then. I'd like a newer version. If I have to, I expect that I can install from source. I'd rather not. Is there a CentOS 6-compatible repository from which I can get a newer version? Does a standard CentOS 7 repository have a newer version? Does a CentOS 7-compatible repository have a newer version? It's my un...
2007 Aug 24
1
DO NOT REPLY [Bug 2423] Feature Request: Ability to transfer files newer than date or file. (--newer switch).
https://bugzilla.samba.org/show_bug.cgi?id=2423 wayned@samba.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |claysjunk@digitalrum.com ------- Comment #8 from wayned@samba.org 2007-08-23 19:19 CST ------- *** Bug 3210 has been marked as a