basically this is my question in stack overflow but not answered yet https://stackoverflow.com/questions/67708710/always-get-permission-denied-on-tar-cannot-mkdir-permission-denied-on-my-kafka
so i just downloaded kafka in binary files (.tgz) and i put that file into my directory /mnt/c:/Program Files/Kafka/
but when i want to un-tar that file with this code
tar -xvf kafka_2.13-2.8.0\ \(1\).tgz
or even with sudo
but i always get notification error
tar: kafka_2.13-2.8.0: Cannot Mkdir: Permission Denied
where my wrong at?
updated :
based on @Jagadesh request, here's the result of ls -al
i tried with @Jagadesh advice, so i run this :
chmod 755 /mnt/c/"Program Files (x86)"/"Kafka"
but it produce same thing like this :
chmod: changing permissions of '/mnt/c/Program Files (x86)/Kafka' : permission denied
chmod
on an NTFS partition. That's not how permissions work in the Windows world. As for the file that you want to expand, you will need to do so from outside the NTFS partition. Copy it to a local directory and then expand it. – matigo May 27 '21 at 03:04