【发布时间】:2015-08-15 03:23:10
【问题描述】:
文件权限
我有一个文件data.tgz 想要解压缩。
-rw-r--r-- 1 用户名 组 20342951248 mai 18 11:50 data.tgz
目录权限
文件所在目录
drwxrwxr-x 3 用户名组 4096 juin 1 17:16 目录/
解压缩
当我尝试使用以下命令解压缩文件时:
tar - xzf data.tgz
我收到以下错误:
tar: data : CANNOT MKDIR PERMISSION DENIED
tar: data/a-m-00004.nt.gz : open impossible: No such file or directory
当我使用tar -xzvf data.tgz 时出现以下错误
错误
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00013.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00012.nt.gz
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00012.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00015.nt.gz
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00015.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00014.nt.gz
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00014.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00017.nt.gz
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00017.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00016.nt.gz
tar: data : mkdir impossible: Permission non accordée
tar: data/a-m-00016.nt.gz : open impossible: Aucun fichier ou dossier de ce type
data/a-m-00019.nt.gz
谷歌翻译
tar: data: mkdir impossible not granted Permissions
tar: data / am-00013.nt.gz: Can not open: No such file or folder of this type
data / a-m-00012.nt.gz
tar: data: mkdir impossible not granted Permissions
tar: data / am-00012.nt.gz: Can not open: No such file or folder of this type
data / a-m-00015.nt.gz
tar: data: mkdir impossible not granted Permissions
tar: data / am-00015.nt.gz: Can not open: No such file or folder of this type
data / a-m-00014.nt.gz
tar: data: mkdir impossible not granted Permissions
tar: data / am-00014.nt.gz: Can not open: No such file or folder of this type
data / a-m-00017.nt.gz
tar: data: mkdir impossible not granted Permissions
tar: data / am-00017.nt.gz: Can not open: No such file or folder of this type
data / a-m-00016.nt.gz
tar: data: mkdir impossible not granted Permissions
tar: data / am-00016.nt.gz: Can not open: No such file or folder of this type
data / a-m-00019.nt.gz
【问题讨论】:
-
如果在命令中添加 -verbose 标志和 -perserve 权限标志会发生什么?
tar - xzfvp data.tgz -
我可以不以root身份使用它吗?我不知道
-
是的,以 root 身份尝试..
标签: permissions tar mkdir