I'm trying to unzip a file using gunzip GCF_000746645.1_ASM74664v1_genomic.fna.gz
but I get the following error:
gzip: GCF_000746645.1_ASM74664v1_genomic.fna.gz is set-group-ID on execution - ignored
I've learned that set-group-ID on execution refers to something related to permissions on the server, but I'm not entirely sure how so and what I should do. Thanks for the help!
man -a chmod
. What permissions are set on the*.fna.gz
file? – waltinator Jan 23 '21 at 00:33gzip -cd GCF_000746645.1_ASM74664v1_genomic.fna.gz > GCF_000746645.1_ASM74664v1_genomic.fna
. – Jan 23 '21 at 10:50