Quote:
Originally Posted by mightyzazz
office@office-desktop:~$ find . -name Superuser-3.1.3-arm-signed.zip
./Downloads/Superuser-3.1.3-arm-signed.zip
|
OK.. So from this line we know that the zip file is
./Downloads/Superuser-3.1.3-arm-signed.zip. Also, since the location starts with a
. this means it's a RELATIVE path; relative to your current directory.
Your current directory is where you had changed to via the
cd command, which since we did NOT supply a name after it, means to your HOME directory, that is also referenced to as the shorthand name
~.
This means that a NON relative path for that file is
~/Downloads/Superuser-3.1.3-arm-signed.zip (notice I changed the initial character from a
. to the
~).
Putting all this together means this should work
Code:
cd
rm -rf vox
mkdir vox
cd vox
mkdir superuser
cd superuser
unzip ~/Downloads/Superuser-3.1.3-arm-signed.zip