I've downloaded mongodb-linux-x86_64-2.6.3.tgz file using windows 7 and kept it on D:\Amra\Software\Developing Soft location.
When I right click this .tgz file using Ubuntu and see property it shows Location: /media/towhid/Amra/Software/Developing Soft. Now how will I unzip this .tgz file using tar command from terminal?
tar -xvzf "/media/towhid/Amra/Software/Developing Soft/mongodb-linux-x86_64-2.6.3.tgz" -C /your/target/directoryMake sure to replace
– frostisland Feb 07 '25 at 13:01/your/target/directorywith the actual location where you want the files extracted. If there are spaces in the path, using quotes (like in the command above) helps avoid issues.