I am trying to unlock a UNIX operating system from a .tar.gz file. To do this, I use the following command:
tar -xvf rootfs.tar.gz -o
The -o flag should not preserve ownership of the files (this gave some problems). The problem is that when the symbolic link is not involved, the following message appears
Unable to create symbolic link to `toto ': operation not allowed
In addition, mknod also gives problems
dev / tty0: fails mknod: operation not allowed
I'm on the FAT system. Does anyone know how to unlock this file?
Thank you in advance
source share