I'm using Ubuntu 16.04 in VirtualBox.
I would like to unpack a tar.gz in my root (/
) folder but I can't paste any file in it or even create a new folder in the file browser.
I can do that with command line when I use sudo
but when I use right click I don't have access to create new folder or paste... I have sudo
privilege so I don't really understand.
I think it can by done with terminal because with mkdir
I've been able to create a folder, but I can't write in this folder.
Does anybody have any clue about it?
sudo tar -xvfz tc_arm_gcc-4.4.4-glibc-2.11.1-multilib-1.0.i386.tar.gz
and got this error :"tar: z : open impossible: Aucun fichier ou dossier de ce type tar: Error is not recoverable: exiting now
the french part says that there is no file or folder of this type. But the spelling is good and my file is in my "/" folder – David Apr 26 '18 at 13:22sudo
and that's it. It's easy to do a lot of operations in a file browser without thinking about the fact that you are doing all of them as root. If you are careful and close the program as soon as you've done what you need, it's fine, but you should be aware that you can easily cause damage to the system when running things as root. – Zanna Apr 26 '18 at 15:14