o redirecionamento do sudo e do shell está quebrado
Eis uma boa explicação e algumas soluções alternativas:
Your command does not work because the redirection is performed by your shell which does not have the permission to write to [the file]. The redirection of the output is not performed by sudo.
- Run a shell with sudo and give the command to it by using the -c option
- Create a script with your commands and run that script with sudo
- Launch a shell with sudo -s then run your commands
- Use sudo tee (if you have to escape a lot when using the -c option)
7-zip
Como alternativa, você pode descompactar o arquivo usando um programa que não requer redirecionamento de shell, como 7-zip , que deve estar disponível para o RHEL 7 via rpmforge.
Aqui está um como :
- Download the repo using the command given below.
sudo wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
- Now install the downloaded rpm using
sudo rpm -ivh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
- Now you need to install the package
sudo yum install p7zip
- To unzip the file use the following command
sudo 7za x <filename>