Re: I need a second pair of eyes on this rm command

2019-07-31 Thread ToddAndMargo via users

On 7/31/19 9:29 PM, Eyal Lebedinsky wrote:

On 01/08/2019 14.18, ToddAndMargo via users wrote:

Hi All,

I can delete these directories from any GIU file manager, but
not from the command line.

I think I am making a typo here, but I am not seeing it.  Would
you guys mind being a second pair of eyes for me?

$ rm -rf 
'/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/*'

A '*' wildcard inside quotes is not expanded. Use
 '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/'*

The '-f' made the expected error not show:

$ mkdir 
$ rm -rf '/*'
$ rm -r  '/*'
rm: cannot remove '/*': No such file or directory

$ ls -al 
'/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/'

total 56
drwx--. 14 todd users 4096 Jul 31 21:10 .
drwx--.  5 todd users 4096 Dec 25  2018 ..
drwx--.  3 todd users 4096 Jun 14 16:13 
198b1dbef7ece2ad03770a72810f2b485859f245
drwx--.  3 todd users 4096 May 14 17:55 
2a51ee93d9e3e7bb00e59a2855ec142f6ddcc349
drwx--.  3 todd users 4096 Jul 14 18:49 
3a6faf96138604257eb4b8adcb261bd5e4ab0f95
drwx--.  4 todd users 4096 Jun 15 21:12 
41dfe02456f6f4da9222b2a575ec19bb6b01b882
drwx--.  3 todd users 4096 May 14 19:00 
448124daccd0345a938712298d729cd894d33f8f
drwx--.  3 todd users 4096 Jul 22 01:30 
76ef9e5953a1ba4578548bb32235240a9f0e0ca2
drwx--.  6 todd users 4096 May 21 18:40 
942ee46ae9f000b969e9e0558a43880ffd5ccf77
drwx--.  3 todd users 4096 May 22 17:33 
a4f47a4fad321b4573c4351081173d302a9112d0
drwx--.  4 todd users 4096 Jul  6 01:27 
b1d54369f9d999fc195a9bd1920773b613058719
drwx--.  3 todd users 4096 May  4 00:46 
cca3f0d9ad2c35cb718c129cd3407b7abf527ae2
drwx--.  3 todd users 4096 May 31 17:06 
d3f4778886098fd54296f586f474e15474d4787b
drwx--.  3 todd users 4096 May 14 18:45 
e8f382afbb3541392b00388e574c242bed39bb1e




Many thanks,
-T



!  A stinking TYPO

Thank you for the second pair of eyes!

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: I need a second pair of eyes on this rm command

2019-07-31 Thread Ed Greshko
On 8/1/19 12:29 PM, Eyal Lebedinsky wrote:
> On 01/08/2019 14.18, ToddAndMargo via users wrote:
>> Hi All,
>>
>> I can delete these directories from any GIU file manager, but
>> not from the command line.
>>
>> I think I am making a typo here, but I am not seeing it.  Would
>> you guys mind being a second pair of eyes for me?
>>
>> $ rm -rf '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service
>> Worker/CacheStorage/*'
> A '*' wildcard inside quotes is not expanded. Use
> '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
> Worker/CacheStorage/'*
> The '-f' made the expected error not show:
>
> $ mkdir 
> $ rm -rf '/*'
> $ rm -r  '/*'
> rm: cannot remove '/*': No such file or directory
>

And the (my) alternative is to use tab-completion to get the space escaped 
resulting in...

[egreshko@f30-k ~]$ ll .config/BraveSoftware/Brave-Browser/Default/Service\
Worker/CacheStorage/
total 4
drwx--. 2 egreshko egreshko 4096 Aug  1 12:48 
3a6faf96138604257eb4b8adcb261bd5e4ab0f95

[egreshko@f30-k ~]$ rm -rf .config/BraveSoftware/Brave-Browser/Default/Service\
Worker/CacheStorage/*

[egreshko@f30-k ~]$ ll .config/BraveSoftware/Brave-Browser/Default/Service\
Worker/CacheStorage/
total 0


-- 
Right: I dislike the default color scheme Wrong: What idiot picked the default 
color scheme
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: I need a second pair of eyes on this rm command

2019-07-31 Thread Eyal Lebedinsky

On 01/08/2019 14.18, ToddAndMargo via users wrote:

Hi All,

I can delete these directories from any GIU file manager, but
not from the command line.

I think I am making a typo here, but I am not seeing it.  Would
you guys mind being a second pair of eyes for me?

$ rm -rf '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/*'

A '*' wildcard inside quotes is not expanded. Use
'/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/'*
The '-f' made the expected error not show:

$ mkdir 
$ rm -rf '/*'
$ rm -r  '/*'
rm: cannot remove '/*': No such file or directory


$ ls -al '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/'
total 56
drwx--. 14 todd users 4096 Jul 31 21:10 .
drwx--.  5 todd users 4096 Dec 25  2018 ..
drwx--.  3 todd users 4096 Jun 14 16:13 
198b1dbef7ece2ad03770a72810f2b485859f245
drwx--.  3 todd users 4096 May 14 17:55 
2a51ee93d9e3e7bb00e59a2855ec142f6ddcc349
drwx--.  3 todd users 4096 Jul 14 18:49 
3a6faf96138604257eb4b8adcb261bd5e4ab0f95
drwx--.  4 todd users 4096 Jun 15 21:12 
41dfe02456f6f4da9222b2a575ec19bb6b01b882
drwx--.  3 todd users 4096 May 14 19:00 
448124daccd0345a938712298d729cd894d33f8f
drwx--.  3 todd users 4096 Jul 22 01:30 
76ef9e5953a1ba4578548bb32235240a9f0e0ca2
drwx--.  6 todd users 4096 May 21 18:40 
942ee46ae9f000b969e9e0558a43880ffd5ccf77
drwx--.  3 todd users 4096 May 22 17:33 
a4f47a4fad321b4573c4351081173d302a9112d0
drwx--.  4 todd users 4096 Jul  6 01:27 
b1d54369f9d999fc195a9bd1920773b613058719
drwx--.  3 todd users 4096 May  4 00:46 
cca3f0d9ad2c35cb718c129cd3407b7abf527ae2
drwx--.  3 todd users 4096 May 31 17:06 
d3f4778886098fd54296f586f474e15474d4787b
drwx--.  3 todd users 4096 May 14 18:45 
e8f382afbb3541392b00388e574c242bed39bb1e



Many thanks,
-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org



--
Eyal at Home (fed...@eyal.emu.id.au)
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


I need a second pair of eyes on this rm command

2019-07-31 Thread ToddAndMargo via users

Hi All,

I can delete these directories from any GIU file manager, but
not from the command line.

I think I am making a typo here, but I am not seeing it.  Would
you guys mind being a second pair of eyes for me?

$ rm -rf '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/*'


$ ls -al '/home/todd/.config/BraveSoftware/Brave-Browser/Default/Service 
Worker/CacheStorage/'

total 56
drwx--. 14 todd users 4096 Jul 31 21:10 .
drwx--.  5 todd users 4096 Dec 25  2018 ..
drwx--.  3 todd users 4096 Jun 14 16:13 
198b1dbef7ece2ad03770a72810f2b485859f245
drwx--.  3 todd users 4096 May 14 17:55 
2a51ee93d9e3e7bb00e59a2855ec142f6ddcc349
drwx--.  3 todd users 4096 Jul 14 18:49 
3a6faf96138604257eb4b8adcb261bd5e4ab0f95
drwx--.  4 todd users 4096 Jun 15 21:12 
41dfe02456f6f4da9222b2a575ec19bb6b01b882
drwx--.  3 todd users 4096 May 14 19:00 
448124daccd0345a938712298d729cd894d33f8f
drwx--.  3 todd users 4096 Jul 22 01:30 
76ef9e5953a1ba4578548bb32235240a9f0e0ca2
drwx--.  6 todd users 4096 May 21 18:40 
942ee46ae9f000b969e9e0558a43880ffd5ccf77
drwx--.  3 todd users 4096 May 22 17:33 
a4f47a4fad321b4573c4351081173d302a9112d0
drwx--.  4 todd users 4096 Jul  6 01:27 
b1d54369f9d999fc195a9bd1920773b613058719
drwx--.  3 todd users 4096 May  4 00:46 
cca3f0d9ad2c35cb718c129cd3407b7abf527ae2
drwx--.  3 todd users 4096 May 31 17:06 
d3f4778886098fd54296f586f474e15474d4787b
drwx--.  3 todd users 4096 May 14 18:45 
e8f382afbb3541392b00388e574c242bed39bb1e




Many thanks,
-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: How to request a new package.

2019-07-31 Thread Robin Laing
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.


On 31/07/2019 01:27, Aristeidis Dimitriadis wrote:

This is not what you asked for for but it would probably be easier for
you to install them through pip. Something like:

$ pip install --user xlrd xlwt xlutils

This way you get them directly from PyPi (faster updates) and the
"--user" option means they are installed in your home folder preventing
them from breaking your system-wide python installation. Use pip3 if you
want to install them for Python 3 and pip2 for Python 2.

Hope this helps

On 7/31/19 7:23 AM, Robin Laing wrote:

Hello,

I was trying to install the InventorLoader addon for FreeCAD and it
requires three python modules to install.

xlrd, xlwt and xlutils

xlrd and xlwt are available through DNF, xlutils isn't.

I saw it mentioned in an old bug report but nothing more.

I would like to request that this package be added.

https://pypi.org/project/xlutils/


___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct:
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives:
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org





--
Save money, use Open Source Software.

Free Office Suite at
 http://www.libreoffice.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


core dumps

2019-07-31 Thread ToddAndMargo via users

Hi All,

A vendor wants me to set up core dumps for him on
a Fedora 30 server.

Is this link from 2012 still valid?
https://radek.io/2012/02/11/core-dumps-in-fedora/

And is there a way to set up core dumps on only
particular software?  (Okay, I know, split infinitive,
but you know what I mean.)

Many thanks,
-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: ccache on f30

2019-07-31 Thread Sam Varshavchik

Paolo Galtieri writes:


Folks,
  I installed the ccache package on F30.  Doing a rpm -ql on the package  
show a long list of files that are part of the package, but if I do


ls -l  /usr/lib64/ccache/

it shows

total 576
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 cc
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 gcc
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 x86_64-redhat-linux-gcc

where are all the other files, e.g. /usr/lib64/ccache/c++?

Paolo


They'll magically appear once you actually install a C++ compiler.

No sense for them to exist, if gcc-c++ is not installed.




pgpQQmWcpdbrS.pgp
Description: PGP signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: ccache on f30

2019-07-31 Thread Rex Dieter
Paolo Galtieri wrote:

> Folks,
>  I installed the ccache package on F30.  Doing a rpm -ql on the
> package show a long list of files that are part of the package, but if I
> do
> 
> ls -l  /usr/lib64/ccache/
> 
> it shows
> 
> total 576
> -rwxr-xr-x. 1 root root 193392 Jan 31 07:23 cc
> -rwxr-xr-x. 1 root root 193392 Jan 31 07:23 gcc
> -rwxr-xr-x. 1 root root 193392 Jan 31 07:23 x86_64-redhat-linux-gcc
> 
> where are all the other files, e.g. /usr/lib64/ccache/c++?

I see them on my box, but differently (as symlinks):

$ ls -l /usr/lib64/ccache/
total 0
lrwxrwxrwx. 1 root root 16 May  6 10:36 c++ -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 cc -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 Jun  7 10:27 clang -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 Jun  7 10:27 clang++ -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 g++ -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 gcc -> ../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 x86_64-redhat-linux-c++ -> 
../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 x86_64-redhat-linux-g++ -> 
../../bin/ccache
lrwxrwxrwx. 1 root root 16 May  6 10:36 x86_64-redhat-linux-gcc -> 
../../bin/ccache

I'd suggest trying to reinstall ccache or otherwise figure out why it's 
contents have changed.

-- Rex

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


ccache on f30

2019-07-31 Thread Paolo Galtieri

Folks,
  I installed the ccache package on F30.  Doing a rpm -ql on the 
package show a long list of files that are part of the package, but if I do


ls -l  /usr/lib64/ccache/

it shows

total 576
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 cc
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 gcc
-rwxr-xr-x. 1 root root 193392 Jan 31 07:23 x86_64-redhat-linux-gcc

where are all the other files, e.g. /usr/lib64/ccache/c++?

Paolo





















___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


How to obtain a list of all the logged in users which are currently logged in to my LDAP server?

2019-07-31 Thread Pratik Rana via users
Hi ,
Today while working on one of my client i realized that it is possible to 
delete one self by the user who is logged in using

->ipa user-del 'user'  command

I found out that it can be avoided by adding a  function for protecting 
deletion of any logged in user in the user.py file under the claa user_del
However i could not find out any way to get the details of any or all the 
logged in user.
Can anyone tell me how to deal with this?? 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Vagrant vbguest on Fedora 30

2019-07-31 Thread Paul-Erik Törrönen
Hello, reported some time ago about an issue with Vagrant in F30 with 
the topic above.


Didn't have the original email left (since no-one answered), so will 
post an update.


The latest (2.2.5) version of Vagrant released by Hashicorp, which is 
not yet available from Fedora, fixed the issue. I used the CentOS 
package to update the installed one.


Just a FYI in case you run into similar issues.

Poltsi
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: How to request a new package.

2019-07-31 Thread Aristeidis Dimitriadis
This is not what you asked for for but it would probably be easier for
you to install them through pip. Something like:

$ pip install --user xlrd xlwt xlutils

This way you get them directly from PyPi (faster updates) and the
"--user" option means they are installed in your home folder preventing
them from breaking your system-wide python installation. Use pip3 if you
want to install them for Python 3 and pip2 for Python 2.

Hope this helps

On 7/31/19 7:23 AM, Robin Laing wrote:
> Hello,
>
> I was trying to install the InventorLoader addon for FreeCAD and it
> requires three python modules to install.
>
> xlrd, xlwt and xlutils
>
> xlrd and xlwt are available through DNF, xlutils isn't.
>
> I saw it mentioned in an old bug report but nothing more.
>
> I would like to request that this package be added.
>
> https://pypi.org/project/xlutils/
>
>
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Playing Blueray Movies in F30

2019-07-31 Thread Tim via users
On Wed, 2019-07-31 at 15:03 +1000, Stephen Morris wrote:
> I've installed these libraries but that is still not sufficient to
> get vlc to play the blurays, I get the same issue I did under windows
> where I had to manually install a config file that libaacs needs,
> which is not installed in linux. Under windows installation of the
> config file lead to vlc tripping up on keys required to read the
> bluray.

Have you got more than one disc to try?  You may have some media that's
deliberately engineered to be unplayable on computers.

-- 
[tim@localhost ~]$ uname -rsvp
Linux 5.0.16-100.fc28.x86_64 #1 SMP Tue May 14 18:22:28 UTC 2019 x86_64

Boilerplate:  All mail to my mailbox is automatically deleted.
There is no point trying to privately email me, I only get to see
the messages posted to the mailing list.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org