Re: selecting some kind of files using the resync command

2014-10-25 Thread Ed Greshko
On 10/26/14 02:51, Angelo Moreschini wrote: > have I to put something in the directory /var /tmp ? When you boot with just . #!/bin/sh /usr/bin/touch /var/tmp/hello in the /etc/rc.d/rc.local file you should end up with the file "hello" in /var/tmp with a time stamp of the boot. -- If yo

Re: selecting some kind of files using the resync command

2014-10-25 Thread Angelo Moreschini
have I to put something in the directory /var /tmp ? On Sat, Oct 25, 2014 at 9:45 PM, Angelo Moreschini < mrangelo.fed...@gmail.com> wrote: > Hi , > > I tried the script with : > -- > #!/bin/sh > /usr/bin/touch /var/tmp/hello > -- > > I made the shutdown a

Re: selecting some kind of files using the resync command

2014-10-25 Thread Angelo Moreschini
Hi , I tried the script with : -- #!/bin/sh /usr/bin/touch /var/tmp/hello -- I made the shutdown and opened the computer more than one time and, ONLY the FIRST TIME, I got a strange phenomenon: stripes on the screen and instability 'of the graphic interfac

Re: selecting some kind of files using the resync command

2014-10-25 Thread Joachim Backes
On 10/25/2014 02:48 PM, Ed Greshko wrote: > On 10/25/14 20:04, Angelo Moreschini wrote: >> thank you Ed, >> >> >> /The |/etc/rc.d/rc.local| local customization script is no longer included >> by default. Administrators who need this functionality merely have to create >> this file, make

Re: selecting some kind of files using the resync command

2014-10-25 Thread Ed Greshko
On 10/25/14 20:04, Angelo Moreschini wrote: > thank you Ed, > > > /The |/etc/rc.d/rc.local| local customization script is no longer included by > default. Administrators who need this functionality merely have to create > this file, make it executable, and it will run on boot. / > --

Re: selecting some kind of files using the resync command

2014-10-25 Thread Angelo Moreschini
thank you Ed, *The /etc/rc.d/rc.local local customization script is no longer included by default. Administrators who need this functionality merely have to create this file, make it executable, and it will run on boot. * - I create my /etc/rc.d/rc.local and I made it executable:

Re: selecting some kind of files using the resync command

2014-10-24 Thread Ed Greshko
On 10/24/14 17:05, Angelo Moreschini wrote: > I use Fedora 20 and I didn't find it ... The link to the announcement about the change https://docs.fedoraproject.org/en-US/Fedora/16/html/Release_Notes/sect-Release_Notes-Changes_for_Sysadmin.html -- If you can't laugh at yourself, others will

Re: selecting some kind of files using the resync command

2014-10-24 Thread Ed Greshko
On 10/24/14 17:05, Angelo Moreschini wrote: > I use Fedora 20 and I didn't find it ... Right, it isn't there You have to create one. -- If you can't laugh at yourself, others will gladly oblige. -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription optio

Re: selecting some kind of files using the resync command

2014-10-24 Thread Angelo Moreschini
I use Fedora 20 and I didn't find it ... [angelo_dev@zorro ~]$ ls /etc/rc.d/rc.local ls: cannot access /etc/rc.d/rc.local: No such file or directory On Fri, Oct 24, 2014 at 11:48 AM, Ed Greshko wrote: > On 10/24/14 16:08, Angelo Moreschini wrote: > > So I would like to know if it need to do s

Re: selecting some kind of files using the resync command

2014-10-24 Thread Ed Greshko
On 10/24/14 16:08, Angelo Moreschini wrote: > So I would like to know if it need to do some special setting in order that > the file /etc/rc.local that I wrote it works at the boot. For the most recent versions of Fedora that has changed. It is now, /etc/rc.d/rc.local *And* that file must be s

Re: selecting some kind of files using the resync command

2014-10-24 Thread Angelo Moreschini
I was able to solve this problem (synchronization of the files) from line command launching a script that I wrote But I would like also to execute the script AUTOMATICALLY at the boot... Joachim suggest me to try with /etc/rc.local I saw that this file ( /etc/rc.local) is not anymore suppo

Re: selecting some kind of files using the resync command

2014-10-22 Thread Angelo Moreschini
OK... thank you very much to all Angelo On Wed, Oct 22, 2014 at 4:34 PM, Ian Malone wrote: > On 22 October 2014 10:41, Angelo Moreschini > wrote: > > Hi, > > > > I am able to backup files with this command: > > rsync -av --delete /home/programmers/Labels /media/saved_labels > > > > but I am n

Re: selecting some kind of files using the resync command

2014-10-22 Thread Ed Greshko
On 10/22/14 23:13, R. G. Newbury wrote: > On 22/10/14 08:00 AM, users-requ...@lists.fedoraproject.org wrote: >> Message: 2 Date: Wed, 22 Oct 2014 19:23:40 +0800 From: Ed Greshko >>> >On 10/22/2014 11:41 AM, Angelo Moreschini wrote: >>I would like to know how to start this command (after it is

Re: selecting some kind of files using the resync command

2014-10-22 Thread R. G. Newbury
On 22/10/14 08:00 AM, users-requ...@lists.fedoraproject.org wrote: Message: 2 Date: Wed, 22 Oct 2014 19:23:40 +0800 From: Ed Greshko >On 10/22/2014 11:41 AM, Angelo Moreschini wrote: >>I would like to know how to start this command (after it is inside a shell >>script) at the boot. >Did you tr

Re: selecting some kind of files using the resync command

2014-10-22 Thread Ian Malone
On 22 October 2014 10:41, Angelo Moreschini wrote: > Hi, > > I am able to backup files with this command: > rsync -av --delete /home/programmers/Labels /media/saved_labels > > but I am not able to select some kind of files doing the backup > > I tried in many different way: > > rsync -av --delet

Re: selecting some kind of files using the resync command

2014-10-22 Thread Bill Oliver
On Wed, 22 Oct 2014, Angelo Moreschini wrote: Hi, I am able to backup files with this command:  rsync -av --delete /home/programmers/Labels /media/saved_labels but I am not able to select some kind of files doing the backup I tried in many different way:  rsync -av --delete /home/programmers

Re: selecting some kind of files using the resync command

2014-10-22 Thread Ed Greshko
On 10/22/14 17:48, Joachim Backes wrote: > On 10/22/2014 11:41 AM, Angelo Moreschini wrote: >> I would like to know how to start this command (after it is inside a shell >> script) at the boot. > Did you try /etc/rc.local? For the most recent versions of Fedora that has changed. It is now, /etc/r

Re: selecting some kind of files using the resync command

2014-10-22 Thread Patrick O'Callaghan
On Wed, 2014-10-22 at 12:48 +0300, Angelo Moreschini wrote: > I would like ALSO to know how to start AUTOMATICALLY, at the boot, > this > command (after that it is inside a shell script) > > On Wed, Oct 22, 2014 at 12:41 PM, Angelo Moreschini < > mrangelo.fed...@gmail.com> wrote: > > > Hi, > > >

Re: selecting some kind of files using the resync command

2014-10-22 Thread Joachim Backes
On 10/22/2014 11:41 AM, Angelo Moreschini wrote: > Hi, > > I am able to backup files with this command: > rsync -av --delete /home/programmers/Labels /media/saved_labels > > but *I am not able to select some kind of files doing the backup* > > I tried in many different way: > > rsync -av --de

Re: selecting some kind of files using the resync command

2014-10-22 Thread Angelo Moreschini
I would like ALSO to know how to start AUTOMATICALLY, at the boot, this command (after that it is inside a shell script) On Wed, Oct 22, 2014 at 12:41 PM, Angelo Moreschini < mrangelo.fed...@gmail.com> wrote: > Hi, > > I am able to backup files with this command: > rsync -av --delete /home/pro

selecting some kind of files using the resync command

2014-10-22 Thread Angelo Moreschini
Hi, I am able to backup files with this command: rsync -av --delete /home/programmers/Labels /media/saved_labels but *I am not able to select some kind of files doing the backup* I tried in many different way: rsync -av --delete /home/programmers/Labels/*.java /media/saved_lab rsync -avr --d