Can't extract files to opt folder [on hold]

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I'm a linux novice and I'm having difficulty extracting clion into the opt folder. I'm in the proper folder, there are no typos, nothing seems to work. I've even tried using the GUI extractor and pointed to the opt folder and that doesn't work either.
Anyway, here's what I get when I try to extract the file
[denis@localhost clion]$ ls
CLion-2018.2.4.tar.gz
[denis@localhost clion]$ sudo tar xf Clion-2018.2.4.tar.gz -C /opt/
tar: Clion-2018.2.4.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
For reference, I'm using CentOS7.
centos software-installation
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as off-topic by roaima, Goro, RalfFriedl, andcoz, jimmij Oct 4 at 9:29
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." â roaima, Goro, RalfFriedl, andcoz, jimmij
add a comment |Â
up vote
0
down vote
favorite
I'm a linux novice and I'm having difficulty extracting clion into the opt folder. I'm in the proper folder, there are no typos, nothing seems to work. I've even tried using the GUI extractor and pointed to the opt folder and that doesn't work either.
Anyway, here's what I get when I try to extract the file
[denis@localhost clion]$ ls
CLion-2018.2.4.tar.gz
[denis@localhost clion]$ sudo tar xf Clion-2018.2.4.tar.gz -C /opt/
tar: Clion-2018.2.4.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
For reference, I'm using CentOS7.
centos software-installation
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as off-topic by roaima, Goro, RalfFriedl, andcoz, jimmij Oct 4 at 9:29
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." â roaima, Goro, RalfFriedl, andcoz, jimmij
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm a linux novice and I'm having difficulty extracting clion into the opt folder. I'm in the proper folder, there are no typos, nothing seems to work. I've even tried using the GUI extractor and pointed to the opt folder and that doesn't work either.
Anyway, here's what I get when I try to extract the file
[denis@localhost clion]$ ls
CLion-2018.2.4.tar.gz
[denis@localhost clion]$ sudo tar xf Clion-2018.2.4.tar.gz -C /opt/
tar: Clion-2018.2.4.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
For reference, I'm using CentOS7.
centos software-installation
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm a linux novice and I'm having difficulty extracting clion into the opt folder. I'm in the proper folder, there are no typos, nothing seems to work. I've even tried using the GUI extractor and pointed to the opt folder and that doesn't work either.
Anyway, here's what I get when I try to extract the file
[denis@localhost clion]$ ls
CLion-2018.2.4.tar.gz
[denis@localhost clion]$ sudo tar xf Clion-2018.2.4.tar.gz -C /opt/
tar: Clion-2018.2.4.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
For reference, I'm using CentOS7.
centos software-installation
centos software-installation
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Oct 3 at 20:00
roaima
40.9k547111
40.9k547111
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Oct 3 at 19:51
Denis
1
1
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Denis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
put on hold as off-topic by roaima, Goro, RalfFriedl, andcoz, jimmij Oct 4 at 9:29
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." â roaima, Goro, RalfFriedl, andcoz, jimmij
put on hold as off-topic by roaima, Goro, RalfFriedl, andcoz, jimmij Oct 4 at 9:29
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions describing a problem that can't be reproduced and seemingly went away on its own (or went away when a typo was fixed) are off-topic as they are unlikely to help future readers." â roaima, Goro, RalfFriedl, andcoz, jimmij
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
6
down vote
You have a typo in the file name. The one in the directory has an uppercase L as its second character. Your tar command tries to reference a file with a lowercase l as its second character.
Linux/UNIX filesystems are almost always case sensitive.
Generally, it's good practice to specify the z character on your tar command to signify that you know you're dealing with a compressed file (gz). You don't need it, but it's good to include it.
tar xzf CLion-2018.2.4.tar.gz -C /opt
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
You have a typo in the file name. The one in the directory has an uppercase L as its second character. Your tar command tries to reference a file with a lowercase l as its second character.
Linux/UNIX filesystems are almost always case sensitive.
Generally, it's good practice to specify the z character on your tar command to signify that you know you're dealing with a compressed file (gz). You don't need it, but it's good to include it.
tar xzf CLion-2018.2.4.tar.gz -C /opt
add a comment |Â
up vote
6
down vote
You have a typo in the file name. The one in the directory has an uppercase L as its second character. Your tar command tries to reference a file with a lowercase l as its second character.
Linux/UNIX filesystems are almost always case sensitive.
Generally, it's good practice to specify the z character on your tar command to signify that you know you're dealing with a compressed file (gz). You don't need it, but it's good to include it.
tar xzf CLion-2018.2.4.tar.gz -C /opt
add a comment |Â
up vote
6
down vote
up vote
6
down vote
You have a typo in the file name. The one in the directory has an uppercase L as its second character. Your tar command tries to reference a file with a lowercase l as its second character.
Linux/UNIX filesystems are almost always case sensitive.
Generally, it's good practice to specify the z character on your tar command to signify that you know you're dealing with a compressed file (gz). You don't need it, but it's good to include it.
tar xzf CLion-2018.2.4.tar.gz -C /opt
You have a typo in the file name. The one in the directory has an uppercase L as its second character. Your tar command tries to reference a file with a lowercase l as its second character.
Linux/UNIX filesystems are almost always case sensitive.
Generally, it's good practice to specify the z character on your tar command to signify that you know you're dealing with a compressed file (gz). You don't need it, but it's good to include it.
tar xzf CLion-2018.2.4.tar.gz -C /opt
edited Oct 3 at 20:24
answered Oct 3 at 20:02
roaima
40.9k547111
40.9k547111
add a comment |Â
add a comment |Â