On Fri, 2019-08-02 at 18:55 -0400, Robert Moskowitz wrote:
> I am a bit concerned I am having problems with the list, or the list
> itself is having problems.
I'd noticed that list traffic had been very minimal the last few days.
I had a look at the list archive (see the address in all the list
Samuel Sieb:
>> There are lots of packages that would be nice to have, but someone
>> has to do the work.
Robin Laing:
> So very true.
>
> One reason so many go to Ubuntu. Seems to have everything.
I've looked at Ubuntu, over many years. I've noticed it's full of
Windows breakaways, who don'
On 8/3/19 12:11 PM, Joe Zeff wrote:
> On 08/02/2019 04:55 PM, Robert Moskowitz wrote:
>>
>> I am a bit concerned I am having problems with the list, or the list
>> itself is having problems.
>
> The last several posts I've received were marked as being sent yesterday.
The list server was backed u
On Sat, 2019-08-03 at 12:26 -0700, Mike Wright wrote:
> On 8/2/19 8:04 AM, Jonathan Ryshpan wrote:
> > I've been downloading podcasts to Rhythmbox for a while and have
> > now
> > accumulated about 88 Gbytes of them. I would like to delete the
> > old
> > ones, say older then 4 months, while pres
On 8/2/19 8:04 AM, Jonathan Ryshpan wrote:
I've been downloading podcasts to Rhythmbox for a while and have now
accumulated about 88 Gbytes of them. I would like to delete the old
ones, say older then 4 months, while preserving the feeds. What's the
easy way to do this? A while searching the we
On 8/2/19 12:54 PM, cen wrote:
error: unpacking of archive failed on file
/usr/lib/python2.7/site-packages/backports.ssl_match_hostname-3.5.0.1-py2.7.egg-info:
cpio: File from package already exists as a directory in system
tips?
rpm -qf
/usr/lib/python2.7/site-packages/backports.ssl_matc
On 8/3/19 5:04 AM, ToddAndMargo via users wrote:
> Which one of these guys has the current cache files? And can I delete
> the directory tree of the other?
The one with the most recent creation date?
--
Right: I dislike the default color scheme Wrong: What idiot picked the default
color scheme
On 8/2/19 8:04 AM, Jonathan Ryshpan wrote:
I've been downloading podcasts to Rhythmbox for a while and have now
accumulated about 88 Gbytes of them. I would like to delete the old
ones, say older then 4 months, while preserving the feeds. What's the
easy way to do this? A while searching the we
On 08/02/2019 04:55 PM, Robert Moskowitz wrote:
I am a bit concerned I am having problems with the list, or the list
itself is having problems.
The last several posts I've received were marked as being sent yesterday.
___
users mailing list -- users
Hi,
I'm using F30 with KDE Plasma. I also use the nvidia proprietary
drivers from rpmfusion so that my children can play minecraft with
high enough fps.
One thing they complain about is a strange behavior of the mouse when
they play minecraft. I mean that the mouse sometimes (very often)
moves su
ToddAndMargo via users wrote:
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
cp can't do that, as far as I'm aware, but you can use other tools like
rsync that can exclude items.
-- Rex
___
users mailing list
no.
You can do excludes (dir and files/wildcards) with rsync so you might
want to look at using it instead.
On Sat, Aug 3, 2019 at 12:03 AM ToddAndMargo via users
wrote:
>
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
>
>
> Many thanks,
> -T
> __
On Thu, 2019-08-01 at 14:13 -0700, ToddAndMargo via users wrote:
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
Assuming that you only need to exclude one file or dir, how about:
$ cd
$ find . -depth | grep -v '^' | cpio -pdumv
$ cd -
Den 2019-08-01 kl. 23:13, skrev ToddAndMargo via users:
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
I can't see how you can do that, but you can do thiss with rsync.
Look at the man page for rsync. Look at following options:
--exclude=PATTE
On Sat, 3 Aug 2019 at 02:03, ToddAndMargo via users <
users@lists.fedoraproject.org> wrote:
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
>
> rsync can do copies with exclusions
--
George N. White III
___
users
Le 01/08/2019 à 23:13, ToddAndMargo via users a écrit :
> Hi All,
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
export GLOBIGNORE= directories to exclude separated by colons
cp -r ..
--
François Patte
UFR de mathématiques et informatique
Laboratoire CNRS MAP
On 02/08/2019 07.13, ToddAndMargo via users wrote:
Hi All,
Is there a way to do a "cp -r" and have it
exclude certain directories?
rsync can do this with the --exclude options.
Many thanks,
-T
--
Eyal at Home (fed...@eyal.emu.id.au)
___
users mai
rsync has a --exclude operand (which handles globs):
rsync -axAXv --delete -e "ssh -p 20026" --exclude 'tmp.session/*' --exclude 'documents/*'
/home/webmaster/public_html/server1.example.com/DocumentRoot/ rsync://server2.example.com/backup/
If you rsync'ing locally, you won't need the -e operand
On Sat, Aug 3, 2019 at 9:49 AM ToddAndMargo via users
wrote:
>
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
>
The bash shell has myriads of ways to generate glob expressions that
can filter only those directories that you want. And including only
those means excludi
On 8/1/19 2:13 PM, ToddAndMargo via users wrote:
Is there a way to do a "cp -r" and have it
exclude certain directories?
No, but you could use rsync instead.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users
On Thu, 2019-08-01 at 14:13 -0700, ToddAndMargo via users wrote:
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
Probably by using mind-bending regular expression rules.
--
uname -rsvp
Linux 3.10.0-957.27.2.el7.x86_64 #1 SMP Mon Jul 29 17:46:05 UTC 2019 x86_64
Boi
On 8/2/19 5:13 AM, ToddAndMargo via users wrote:
> Is there a way to do a "cp -r" and have it
> exclude certain directories?
>
You could use "rsync". It supports an --exclude option.
--
Right: I dislike the default color scheme Wrong: What idiot picked the default
color scheme
On 01Aug2019 14:13, ToddAndMargo wrote:
Is there a way to do a "cp -r" and have it
exclude certain directories?
Aside from "chmod 0 those_directories..."?
Or: "cp -r a b; rm -r b/c b/d ..."?
Use rsync:
rsync -ia --exclude=/local/path/to/subdir1 --exclude=... this that
Note that the le
On 01/08/2019 01:28, Samuel Sieb wrote:
On 7/31/19 7:44 PM, Robin Laing wrote:
Still should be a Fedora package though.
There are lots of packages that would be nice to have, but someone has
to do the work.
___
So very true.
One reason so many
On 31/07/2019 20:44, Robin Laing wrote:
Will try it. Not sure if I can get it through the work firewall that
way but will try.
Never knew about the pip2 pip3 though.
Tried it and FreeCAD addon manager installed the plugin. Now to test it.
Thank you.
Still should be a Fedora package though.
This is a test. I sent a message asking about editors a bit after noon
today.
I have not seen a post to this list since 1:22pm today.
I am a bit concerned I am having problems with the list, or the list
itself is having problems.
So this is a list ping
_
Hi All,
Fedora 30
brave-browser-0.66.101-1.x86_64
Which one of these guys has the current cache files? And can I delete
the directory tree of the other?
/home/todd/.config/brave/Cache
/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service
Worker/CacheStorage
Many thanks,
-T
--
~~
Error unpacking rpm package
python2-backports-ssl_match_hostname-3.5.0.1-11.fc30.noarch
Installing : rlottie-0-2.20190707git0a43020.fc30.x86_64 140/537
error: unpacking of archive failed on file
/usr/lib/python2.7/site-packages/backports.ssl_match_hostname-3.5.0.1-py2.7.egg-info:
cpio:
On 8/1/19 10:22 AM, Lukas Zapletal wrote:
I recently upgraded my laptop (X1 6th gen) and I am trying out Gnome on Wayland
with all the default settings. Everything is superb, except two-finger
scrolling in Firefox. It looks like it has different scrolling behavior than
other applications.
Yo
I have been using Geany for some time for my html and xml (Internet
Drafts) writing.
Now I am being pushed to learn the IETF kramdown approach to writing
drafts which is based on Markdown.
The markdown plugin for Geany only colorizes SOME of the tags used. Most
importantly I cannot 'fold' bl
I recently rebuilt my desktop to a clean F30 installation. Now I'm
seeing gnome-shell crashing when I try to view a video in Chrome. I'd
love to upload the report, but abrt reports a "ureport" error.
In any case, is this just me or is it more widespread?
Chrome: Version 76.0.3809.87 (Official B
I've been downloading podcasts to Rhythmbox for a while and have now
accumulated about 88 Gbytes of them. I would like to delete the old
ones, say older then 4 months, while preserving the feeds. What's the
easy way to do this? A while searching the web has produced no help,
not even the locatio
32 matches
Mail list logo