Copying/duplicating files from ServerA to ServerB

2018-02-02 Thread bruce
Hi. Looking to completely duplicate/replicate one server to another.Running Centos/Fed. I've seen a number of different articles/etc on different ways of doing this. Assuming I'm not using chef/puppet/ansible/etc can anyone give thoughts on best approaches for this. Articles are cool as well.

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Bill Shirley
Use 'ip' and add the dev parameter: ip route add default 173.xxx.yyy.zzz dev ccast man route: NOTE    This program is obsolete. For replacement check ip route. Bill On 2/2/2018 8:42 AM, Terry Barnaby wrote: A strange one this. I was trying to change the default route of a machine for

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Ed Greshko
On 02/02/18 21:42, Terry Barnaby wrote: > A strange one this. I was trying to change the default route of a machine for > testing a different gateway. > > I ran: > > route del default gw > > route add default gw > > However the second command did not add the route and I could not add the old >

Re: Organising photos visually

2018-02-02 Thread Patrick O'Callaghan
On Fri, 2018-02-02 at 09:48 +1100, Cameron Simpson wrote: > On 01Feb2018 12:04, Patrick O'Callaghan wrote: > > > See how that logic feels to you. > > > > Just an update on this. I tried a lightly-modified version of your > > script and got it to work. However as it stands

What is this gibberish?

2018-02-02 Thread Tom Horsley
Just did a dnf update, this comes out: ... Running scriptlet: firefox-58.0.1-1.fc27.x86_64 18/18 Running scriptlet: firefox-58.0-4.fc27.x86_64 18/18 Running as unit: run-r1880116b569f49288e6d0da0c5832367.service Running as unit:

Fedora27: Cannot set the default network route

2018-02-02 Thread Terry Barnaby
A strange one this. I was trying to change the default route of a machine for testing a different gateway. I ran: route del default gw route add default gw However the second command did not add the route and I could not add the old default route back. There were no errors on stdout or in

Re: What is this gibberish?

2018-02-02 Thread Matthew Miller
On Fri, Feb 02, 2018 at 07:31:03AM -0500, Tom Horsley wrote: > Running scriptlet: firefox-58.0.1-1.fc27.x86_64 > 18/18 > Running scriptlet: firefox-58.0-4.fc27.x86_64 > 18/18 > Running as unit: run-r1880116b569f49288e6d0da0c5832367.service

Re: Riddle me this: grep / regx experts

2018-02-02 Thread Patrick O'Callaghan
On Fri, 2018-02-02 at 11:04 -0500, R. G. Newbury wrote: > # grep -h '[0-9]*s[0-9]*">' temp > Returns the example line with the 's[0-9]">' highlighted. In grep, * matches any number of instances, including 0. You want to use + rather than * to guarantee at least one digit. poc

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Ed Greshko
On 02/03/18 00:29, Terry Barnaby wrote: > I tied using "ip route" it had the same effect. [root@f27k ~]# netstat -rn Kernel IP routing table Destination Gateway Genmask Flags   MSS Window  irtt Iface 0.0.0.0 192.168.1.1 0.0.0.0 UG    0 0  0

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Terry Barnaby
I tied using "ip route" it had the same effect. On 02/02/18 14:21, Bill Shirley wrote: Use 'ip' and add the dev parameter: ip route add default 173.xxx.yyy.zzz dev ccast man route: NOTE    This program is obsolete. For replacement check ip route. Bill On 2/2/2018 8:42 AM, Terry Barnaby

Re: What is this gibberish?

2018-02-02 Thread Samuel Sieb
On 02/02/2018 04:31 AM, Tom Horsley wrote: Just did a dnf update, this comes out: ... Running scriptlet: firefox-58.0.1-1.fc27.x86_64 18/18 Running scriptlet: firefox-58.0-4.fc27.x86_64 18/18 Running as unit:

Riddle me this: grep / regx experts

2018-02-02 Thread R. G. Newbury
A bug in regx handling??? I am cleaning up some html code, using sed to standardize the formatting. I was searching for specific instances of code to amend using grep. I was looking for instances like Example text in a file: ( here named, quite originally, temp ) 8. And # grep -h

Re: Riddle me this: grep / regx experts

2018-02-02 Thread R. G. Newbury
On Fri, Feb 02, 2018 at 11:04:01AM -0500, R. G. Newbury wrote: A bug in regx handling??? I am cleaning up some html code . # grep -h '[0-9]*s[0-9]*">' temp >> Returns the example line with the 's[0-9]">' highlighted. Can anyone explain what is happening?. This isn't politics so the

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Bill Shirley
You didn't post the command or its output.  How can anyone help you? What's the output of these two commands? ip -o -4 addr ip -o -4 route Bill On 2/2/2018 11:29 AM, Terry Barnaby wrote: I tied using "ip route" it had the same effect. On 02/02/18 14:21, Bill Shirley wrote: Use 'ip' and add

Re: Copying/duplicating files from ServerA to ServerB

2018-02-02 Thread stan
On Fri, 2 Feb 2018 08:36:25 -0500 bruce wrote: > Looking to completely duplicate/replicate one server to > another.Running Centos/Fed. I've seen a number of different > articles/etc on different ways of doing this. > > Assuming I'm not using chef/puppet/ansible/etc can

Re: Riddle me this: grep / regx experts

2018-02-02 Thread Chris Adams
Once upon a time, R. G. Newbury said: > # grep -h '[0-9]*s[0-9]*">' temp > Returns the example line with the 's[0-9]">' highlighted. A * in a regex is "0 or more of the previous", so basically you are just matching 's[0-9]*">' (because there will always be at least 0 of the

Re: secure boot disabled

2018-02-02 Thread Chris Murphy
On Thu, Feb 1, 2018, 3:52 PM AV wrote: > On Thu, 2018-02-01 at 13:36 -0700, Chris Murphy wrote: > > On Wed, Jan 31, 2018 at 9:53 AM, AV wrote: > > > I installed Fed 27 on a Dell XPS 13 9370 using Fed 27 Live > > > on a usb stick after deleting Ubuntu 16.04

Re: Riddle me this: grep / regx experts

2018-02-02 Thread Jon LaBadie
On Fri, Feb 02, 2018 at 11:04:01AM -0500, R. G. Newbury wrote: > A bug in regx handling??? > > I am cleaning up some html code, using sed to standardize the formatting. I > was searching for specific instances of code to amend using grep. > I was looking for instances like > Example text in a

Re: Riddle me this: grep / regx experts

2018-02-02 Thread Tim
Allegedly, on or about 2 February 2018, R. G. Newbury sent: > I am cleaning up some html code, using sed to standardize the > formatting. I was searching for specific instances of code to amend > using grep. In case you're not aware of it, there's a HTML tidy command that neatens up HTML. dnf

Re: What is this gibberish?

2018-02-02 Thread Fred Erickson
On Fri, 2 Feb 2018 07:31:03 -0500 Tom Horsley wrote: > Just did a dnf update, this comes out: > > ... > Running scriptlet: > firefox-58.0.1-1.fc27.x86_64 18/18 Running > scriptlet: firefox-58.0-4.fc27.x86_64 18/18 >

Re: vmware not working under vmware_t

2018-02-02 Thread Ed Greshko
On 02/03/18 04:25, James Maugans wrote: > I will greatly appreciatte any help or advice in this matter. When it comes to selinux issues I've found the seli...@lists.fedoraproject.org much more helpful than the users list. -- A motto of mine is: When in doubt, try it out signature.asc

Re: Riddle me this: grep / regx experts

2018-02-02 Thread Patrick O'Callaghan
On Fri, 2018-02-02 at 12:32 -0500, R. G. Newbury wrote: > > Thanks to all for the quick responses. I *tried* to RTFM but that was > > not clear, even on a re-read. I took [0-9]* as multiple instances of > [0-9] but NOT zero instances.. From 'man grep': Repetition A regular expression

Re: Fedora27: Cannot set the default network route

2018-02-02 Thread Marcelo Beckmann
You can also use ip route to replace a route (don't need to delete and add): ip route replace default via dev 2018-02-02 14:29 GMT-02:00 Terry Barnaby : > I tied using "ip route" it had the same effect. > > > On 02/02/18 14:21, Bill Shirley wrote: > > Use 'ip' and add

Re: Copying/duplicating files from ServerA to ServerB

2018-02-02 Thread Rick Stevens
On 02/02/2018 10:09 AM, stan wrote: > On Fri, 2 Feb 2018 08:36:25 -0500 > bruce wrote: > >> Looking to completely duplicate/replicate one server to >> another.Running Centos/Fed. I've seen a number of different >> articles/etc on different ways of doing this. >> >> Assuming

vmware not working under vmware_t

2018-02-02 Thread James Maugans
Hello. I've been using Fedora and SELinux for over a year now. And so far I've been able to succesfully confine some apps with SELinux context types, however now I seem to be facing a challenge since I can't get vmware process to work under vmware_t domain. The process however does transition

Re: fedora27: ypbind intermittent startup

2018-02-02 Thread Ed Greshko
On 02/02/18 15:51, Terry Barnaby wrote: > On 02/02/18 07:42, Terry Barnaby wrote: >> On 02/02/18 00:41, Ed Greshko wrote: >>> >>> I've not tried this since I don't have a need for ypbind. >>> >>> One may also consider copying /lib/systemd/system/ypbind.service to >>> /etc/systemd/system and then

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread fred roller
the other option is to keep it native to linux in oog format, as a thought. On Fri, Feb 2, 2018 at 7:28 PM, Wolfgang Pfeiffer wrote: > On Fri, 2 Feb 2018 17:29:40 -0500 (EST) > "Robert P. J. Day" wrote: > > > > in short, any recommendations on simply

how to digitize a sizable CD collection using fedora?

2018-02-02 Thread Robert P. J. Day
one of my new year's resolutions was to digitize several hundred music CDs in preparation for figuring out what system to use in the domicile to play them, but regardless of how i decide to eventually play these CDs, i'm looking for recommendations for how to rip them to hard drive before i

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread SternData
On 02/02/2018 04:29 PM, Robert P. J. Day wrote: > > one of my new year's resolutions was to digitize several hundred > music CDs in preparation for figuring out what system to use in the > domicile to play them, but regardless of how i decide to eventually > play these CDs, i'm looking for

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread Ed Greshko
On 02/03/18 06:29, Robert P. J. Day wrote: > one of my new year's resolutions was to digitize several hundred > music CDs in preparation for figuring out what system to use in the > domicile to play them, but regardless of how i decide to eventually > play these CDs, i'm looking for

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread Fred Smith
On Fri, Feb 02, 2018 at 05:29:40PM -0500, Robert P. J. Day wrote: > > one of my new year's resolutions was to digitize several hundred > music CDs in preparation for figuring out what system to use in the > domicile to play them, but regardless of how i decide to eventually > play these CDs,

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread Samuel Sieb
On 02/02/2018 02:29 PM, Robert P. J. Day wrote: in short, any recommendations on simply ripping all these CDs to hard drive, while having no idea what i will eventually use to play them? I use grip to do it. I used to rip to ogg, but now I have started using flac and I'm trying to go back

Re: how to digitize a sizable CD collection using fedora?

2018-02-02 Thread Wolfgang Pfeiffer
On Fri, 2 Feb 2018 17:29:40 -0500 (EST) "Robert P. J. Day" wrote: > > in short, any recommendations on simply ripping all these CDs to > hard drive, while having no idea what i will eventually use to play > them? First step: making the *wav files: man wodim: "To copy

Re: fedora27: ypbind intermittent startup

2018-02-02 Thread Ed Greshko
On 02/02/18 15:42, Terry Barnaby wrote: > On 02/02/18 00:41, Ed Greshko wrote: >> >> I've not tried this since I don't have a need for ypbind. >> >> One may also consider copying /lib/systemd/system/ypbind.service to >> /etc/systemd/system and then inserting the line, >> >>

Re: fedora27: ypbind intermittent startup

2018-02-02 Thread Ed Greshko
On 02/02/18 16:49, Ed Greshko wrote: > But, another thing you can try is to modify the > NetworkManager-wait-online.service by > making a copy of it in /etc/systemd/system and changing the line, Oh, just in case you're not familiar, when you make your own copy of the service you would have to

Re: Testers for LCD Panel Self Refresh on laptops with Intel graphics wanted

2018-02-02 Thread Igor Gnatenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Thu, 2018-02-01 at 12:34 +0100, Hans de Goede wrote: > Hi All, > > For the "Improved Laptop Battery Life" feature: > https://fedoraproject.org/wiki/Changes/ImprovedLaptopBatteryLife > > I'm working on for Fedora 28 I would like to also try and

Re: EXTERNAL: Re: Testers for LCD Panel Self Refresh on laptops with Intel graphics wanted

2018-02-02 Thread Hans de Goede
Hi, On 01-02-18 16:33, Wells, Roger K. wrote: On 02/01/2018 10:21 AM, Ian Pilcher wrote: On 02/01/2018 05:34 AM, Hans de Goede wrote: If you can spare 10 minutes, please see my blogpost for how to test this and send me a mail with the info request in the blogpost:

Re: Testers for LCD Panel Self Refresh on laptops with Intel graphics wanted

2018-02-02 Thread Hans de Goede
Hi, On 01-02-18 15:59, Don Zickus wrote: On Thu, Feb 01, 2018 at 12:34:50PM +0100, Hans de Goede wrote: Hi All, For the "Improved Laptop Battery Life" feature: https://fedoraproject.org/wiki/Changes/ImprovedLaptopBatteryLife I'm working on for Fedora 28 I would like to also try and enable