Re: Anyone have a favorite archive manager?

2018-07-28 Thread Samuel Sieb

On 07/28/2018 11:04 PM, ToddAndMargo wrote:

Actually it turned out not to be a typo.  I was trying to open
a "dump" file in file-roller.  When I open the actual tar file,
it worked perfectly.


What's a "dump" file?  I've never seen a ".gz2" extension.  What is it?
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/D34Z3TEHQVJ7PUOCMV62ZVFPAFZY7MTS/


Re: Anyone have a favorite archive manager?

2018-07-28 Thread ToddAndMargo

On 07/28/2018 01:47 PM, ToddAndMargo wrote:

On 07/28/2018 12:49 PM, Todd Zullinger wrote:

Is .gz2 a typo?  I've only ever seen .bz2 or .gz.  I doubt
that's related, but it's a curiosity.




It's a type.  I wonder if that is why file-roller
is having an issue.  I will have to check later on
today after all my backups are finished



Actually it turned out not to be a typo.  I was trying to open
a "dump" file in file-roller.  When I open the actual tar file,
it worked perfectly.

Cancel the question!


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


Re: Anyone have a favorite archive manager?

2018-07-28 Thread ToddAndMargo

On 07/28/2018 04:40 PM, Fred Smith wrote:

On Sat, Jul 28, 2018 at 03:49:51PM -0400, Todd Zullinger wrote:

ToddAndMargo wrote:

Hi All,

Fedora 28
Xfce 4.12

I have several large tar balls

-rwxr-xr-x.  1 todd users   6359558528 Jul 12 10:51
2018-07-12_OurStuff.tar.gz2


Is .gz2 a typo?  I've only ever seen .bz2 or .gz.  I doubt
that's related, but it's a curiosity.


I have to deal with.  They only extract (t or x) with the
command line "tar" command and crash both file-roller
and xarchive manager.


Do they run out of memory?  That would be my guess.  I don't
use GUI archive tools much at all, so I don't know if
there's an option to have it simply extract the compressed
tarball rather than try to decompress it first and then
extract it from the .tar file.


gunzip -c tarfile.gz > tarfile

should do it.

but if the compressed tarball is that big, you'd be well advised to make
sure you've got ten or more gigs of free space before trying it because
both the compressed and uncmpressed files will stay there.  then check
again before extracting from the uncompressed archive.

Or:

gunzip tarfile.gz

which uncompresses the tarfile and removes the compressed one.  Probably
still needs enough space to hold both the compressed and uncompressed,
but only until it finishes decompressing, then deletes the compressed one.

then in either case, you should be able to just "tar xvf tarfile".





I use the command line all the time.  There are some times
I want to use a gui though

tar tjv | grep 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/2VGODEBCMF4TIGUUXA7KNH5ZCFPUPUE4/


Re: Anyone have a favorite archive manager?

2018-07-28 Thread Fred Smith
On Sat, Jul 28, 2018 at 03:49:51PM -0400, Todd Zullinger wrote:
> ToddAndMargo wrote:
> > Hi All,
> > 
> > Fedora 28
> > Xfce 4.12
> > 
> > I have several large tar balls
> > 
> > -rwxr-xr-x.  1 todd users   6359558528 Jul 12 10:51
> > 2018-07-12_OurStuff.tar.gz2
> 
> Is .gz2 a typo?  I've only ever seen .bz2 or .gz.  I doubt
> that's related, but it's a curiosity.
> 
> > I have to deal with.  They only extract (t or x) with the
> > command line "tar" command and crash both file-roller
> > and xarchive manager.
> 
> Do they run out of memory?  That would be my guess.  I don't
> use GUI archive tools much at all, so I don't know if
> there's an option to have it simply extract the compressed
> tarball rather than try to decompress it first and then
> extract it from the .tar file.

gunzip -c tarfile.gz > tarfile

should do it.

but if the compressed tarball is that big, you'd be well advised to make
sure you've got ten or more gigs of free space before trying it because
both the compressed and uncmpressed files will stay there.  then check
again before extracting from the uncompressed archive.

Or:

gunzip tarfile.gz 

which uncompresses the tarfile and removes the compressed one.  Probably
still needs enough space to hold both the compressed and uncompressed,
but only until it finishes decompressing, then deletes the compressed one.

then in either case, you should be able to just "tar xvf tarfile".

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
   I can do all things through Christ 
  who strengthens me.
-- Philippians 4:13 ---
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/NZK3LGHKMBNTL4VWCM72EGTSTGCCMRTS/


Re: Anyone have a favorite archive manager?

2018-07-28 Thread ToddAndMargo

On 07/28/2018 12:49 PM, Todd Zullinger wrote:

Is .gz2 a typo?  I've only ever seen .bz2 or .gz.  I doubt
that's related, but it's a curiosity.




It's a type.  I wonder if that is why file-roller
is having an issue.  I will have to check later on
today after all my backups are finished
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/OHWGBYGDZQZSG7IBX7WEUYXM27AHGA6D/


Re: Anyone have a favorite archive manager?

2018-07-28 Thread Todd Zullinger
ToddAndMargo wrote:
> Hi All,
> 
> Fedora 28
> Xfce 4.12
> 
> I have several large tar balls
> 
> -rwxr-xr-x.  1 todd users   6359558528 Jul 12 10:51
> 2018-07-12_OurStuff.tar.gz2

Is .gz2 a typo?  I've only ever seen .bz2 or .gz.  I doubt
that's related, but it's a curiosity.

> I have to deal with.  They only extract (t or x) with the
> command line "tar" command and crash both file-roller
> and xarchive manager.

Do they run out of memory?  That would be my guess.  I don't
use GUI archive tools much at all, so I don't know if
there's an option to have it simply extract the compressed
tarball rather than try to decompress it first and then
extract it from the .tar file.

-- 
Todd
~~
The cynics are right nine times out of ten.
-- H. L. Menchen (1880-1956)



signature.asc
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://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/FB5CC2TDWQNR36AKO2GVXYZWPYCGIPAU/


Re: Anyone have a favorite archive manager?

2018-07-28 Thread Samuel Sieb

On 07/28/2018 12:23 PM, ToddAndMargo wrote:

I have several large tar balls

-rwxr-xr-x.  1 todd users   6359558528 Jul 12 10:51 
2018-07-12_OurStuff.tar.gz2


I have to deal with.  They only extract (t or x) with the
command line "tar" command and crash both file-roller
and xarchive manager.

Anyone have a favorite GUI tar ball reader that will work with
large files?


What are you trying to do with it?  For something that big I would only 
use the command line.

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


Anyone have a favorite archive manager?

2018-07-28 Thread ToddAndMargo

Hi All,

Fedora 28
Xfce 4.12

I have several large tar balls

-rwxr-xr-x.  1 todd users   6359558528 Jul 12 10:51 
2018-07-12_OurStuff.tar.gz2


I have to deal with.  They only extract (t or x) with the
command line "tar" command and crash both file-roller
and xarchive manager.

Anyone have a favorite GUI tar ball reader that will work with
large files?

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://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/HQ2I5UYJZYZWTBCEY6HVFVXBOMLWBRH5/


Re: Trouble with selinux, tomcat, and apache

2018-07-28 Thread Alexander Dalloz

Am 28.07.2018 um 11:19 schrieb Peter Boy:

In F28 I try to connect from an Apache to a tomcat container, both installed on 
the same server, using AJP protocol, but SELinux denies access.

I (try to) use standard port 8009:

[root@camena ~]# semanage port -l  |  grep http
http_cache_port_t  tcp  8080, 8118, 8123, 10001-10010
http_cache_port_t  udp  3130
http_port_ttcp  80, 81, 443, 488, 8008, 8009, 8443, 9000

But a look at audit.log shows:

type=AVC msg=audit(1532760423.923:2154): avc:  denied  { name_connect } for  pid=6231 
comm="httpd"
dest=8009
scontext=system_u:system_r:httpd_t:s0
tcontext=system_u:object_r:http_port_t:s0 tclass=tcp_socket permissive=1


The same happens if I try to connect using a non-standard port (8210, after 
using semanage to add that port to http_port_t). It is the identical message 
besides the dest.
*aAfter* I delete the local modification using semanage -D I get:

type=AVC msg=audit(1532759778.298:2149): avc:  denied  { name_connect } for  pid=985 
comm="httpd"
dest=8210
scontext=system_u:system_r:httpd_t:s0
tcontext=system_u:object_r:unreserved_port_t:s0 tclass=tcp_socket permissive=1


On RHEL7 / CentOS7 everything works just fine.


I couldn’t find a clean search the web. So, any help much appreciated.


Thanks
Peter


Piping the AVC message into audit2why isn't helpful?

Please check "setsebool -P httpd_can_network_connect=1"

Alexander

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


Trouble with selinux, tomcat, and apache

2018-07-28 Thread Peter Boy
In F28 I try to connect from an Apache to a tomcat container, both installed on 
the same server, using AJP protocol, but SELinux denies access.

I (try to) use standard port 8009:

[root@camena ~]# semanage port -l  |  grep http 
http_cache_port_t  tcp  8080, 8118, 8123, 10001-10010
http_cache_port_t  udp  3130
http_port_ttcp  80, 81, 443, 488, 8008, 8009, 8443, 9000

But a look at audit.log shows:

type=AVC msg=audit(1532760423.923:2154): avc:  denied  { name_connect } for  
pid=6231 comm="httpd" 
dest=8009 
scontext=system_u:system_r:httpd_t:s0 
tcontext=system_u:object_r:http_port_t:s0 tclass=tcp_socket permissive=1


The same happens if I try to connect using a non-standard port (8210, after 
using semanage to add that port to http_port_t). It is the identical message 
besides the dest.
*aAfter* I delete the local modification using semanage -D I get:

type=AVC msg=audit(1532759778.298:2149): avc:  denied  { name_connect } for  
pid=985 comm="httpd" 
dest=8210 
scontext=system_u:system_r:httpd_t:s0 
tcontext=system_u:object_r:unreserved_port_t:s0 tclass=tcp_socket permissive=1


On RHEL7 / CentOS7 everything works just fine. 


I couldn’t find a clean search the web. So, any help much appreciated.


Thanks
Peter








—
Dr. Peter Boy
Universität Bremen
Mary-Sommerville-Str. 5
28359 Bremen
Germany

p...@zes.uni-bremen.de
www.zes.uni-bremen.de



Are you looking for a web content management system for scientific research 
organizations?
Have a look at http://www.scientificcms.org


Are you looking for a web content management system for public administrations?
Have a look at http://www.aplaws.org & https://fedorahosted.org/aplaws/
 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/UM23Q6HJ3TQWV77YW22RO7MNWP4EEEBB/