Re: diff or deduplicate two volumes with different folder structures

2016-09-21 Thread Chris Murphy
What I ended up doing: $ find /brickA -type f -exec md5sum "{}" + > brickA.txt $ find /brickB -type f -exec md5sum "{}" + > brickB.txt $ cut -c 1-32 brickA.txt > brickA_md5.txt $ grep -v -F -f brickA_md5.txt brickB.txt > onbrickB_notonbrickA.txt Thanks for the help everyone. Chris Murphy

Re: cron

2016-09-21 Thread Jon LaBadie
On Wed, Sep 21, 2016 at 07:26:18PM +0200, Patrick Dupre wrote: > Hello, > > I am a bit surprise by the answers that I received. > Again, cron and anacron used to run quite well for a long time. > Both can co-live, one run periodically according to /etc/crontab > and /etc/cron.daily

Re: Anacron mail -

2016-09-21 Thread Tim
Allegedly, on or about 17 September 2016, Bob Goodwin sent: > Is there a command to display only what I want, a specific day or > perhaps reverse the order so that today's messages are at the top, > display first? Better yet I would think would be to display them in > Thunderbird but I don't

Re: cron

2016-09-21 Thread Tom Horsley
On Wed, 21 Sep 2016 11:30:49 -0700 Rick Stevens wrote: > You do know you can modify the "START_HOURS_RANGE=" parameter in > /etc/anacrontab to tell anacron when it is permitted to run things, > right? Yep. I also know I can completely eradicate anacron :-). >If you want to disable anacron but

Re: cron

2016-09-21 Thread Rick Stevens
On 09/21/2016 10:45 AM, Tom Horsley wrote: > On Wed, 21 Sep 2016 19:26:18 +0200 > Patrick Dupre wrote: > >> Why give up this logic? > > Because my machine is never turned off, and anacron has the > uncanny ability to make things run at the most inconvenient possible > times to interfere with

Re: cron

2016-09-21 Thread Patrick Dupre
Then, What about a laptop? === Patrick DUPRÉ | | email: pdu...@gmx.com Laboratoire de Physico-Chimie de l'Atmosphère | | Université du Littoral-Côte d'Opale | | Tel. (33)-(0)3

Re: cron

2016-09-21 Thread Tom Horsley
On Wed, 21 Sep 2016 19:26:18 +0200 Patrick Dupre wrote: > Why give up this logic? Because my machine is never turned off, and anacron has the uncanny ability to make things run at the most inconvenient possible times to interfere with things I'm trying to do. Cron runs thing when I want them to

Re: cron

2016-09-21 Thread Patrick Dupre
Hello, I am a bit surprise by the answers that I received. Again, cron and anacron used to run quite well for a long time. Both can co-live, one run periodically according to /etc/crontab and /etc/cron.daily /etc/cron.weekly, etc... and anacron could make the relay, in case that the machine was

Re: cron

2016-09-21 Thread Tom Horsley
On Wed, 21 Sep 2016 10:26:14 -0400 Matthew Miller wrote: > If you care about the *particular* time that a job runs, rather than > just wanting to make sure it gets run once in a certain period, > cron.daily and cron.weekly are not for you. Instead, drop a file in > /etc/cron.d with the

Re: auto connect to guest host as simple user (non root)

2016-09-21 Thread James Hogarth
On 21 Sep 2016 12:56 pm, "Adel ESSAFI" wrote: > > Dear list > I have installed a guest windows xp system on my fedora 24 machine. > > I configured libvirt to run automatically at boot phase and it worked fine > > [etudiant@localhost ~]$ lsmod | grep kvm > kvm_intel

Re: cron

2016-09-21 Thread Matthew Miller
On Wed, Sep 21, 2016 at 10:02:19AM +0200, Patrick Dupre wrote: > and in my /etc/anacrontab > 1 5 cron.daily nice run-parts /etc/cron.daily > 7 25 cron.weekly nice run-parts /etc/cron.weekly > > but > > anacron is executed on the Monday ! > N 44

auto connect to guest host as simple user (non root)

2016-09-21 Thread Adel ESSAFI
Dear list I have installed a guest windows xp system on my fedora 24 machine. I configured libvirt to run automatically at boot phase and it worked fine [etudiant@localhost ~]$ lsmod | grep kvm kvm_intel 184320 3 kvm 552960 1 kvm_intel irqbypass

auto connect to guest host as simple user (non root)

2016-09-21 Thread Adel ESSAFI
Dear list I have installed a guest windows xp system on my fedora 24 machine. I configured libvirt to run automatically at boot phase and it worked fine [etudiant@localhost ~]$ lsmod | grep kvm kvm_intel 184320 3 kvm 552960 1 kvm_intel irqbypass

Re: cron

2016-09-21 Thread Patrick Dupre
Hello, crond is running UNIT FILE STATE crond.service enabled 1 unit files listed. But this is what I have in my /etc/crontab: 22 23 * * * root run-parts /etc/cron.daily 06 13 * * 6 root run-parts /etc/cron.weekly and in my /etc/anacrontab 1 5 cron.daily nice