2015-08-16 143 views
1

我不知道這是什麼。我正試圖歸檔我的應用程序。我知道有很多答案,但我無法理解任何答案。所以請有人知道如何解決這個問題可以告訴我。命令/ usr/sbin/chown失敗,退出代碼爲1(xcode6)

SetOwnerAndGroup shivamrishi:staff /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app 
cd "/Users/shriyarishi/Desktop/QuoteU " 
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" 
/usr/sbin/chown -RH shivamrishi:staff /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app 

最後一個碼

chown: /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app: Operation not permitted 
Command /usr/sbin/chown failed with exit code 1 

圖像0​​https://drive.google.com/file/d/0B2z_d4wEKPEFVWsxV0xUczhFck0/view?usp=sharing

+0

該文件的權限是什麼?您可以使用'ls -lO/Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app'查看權限以及設置的任何標誌文件。 –

+0

什麼都沒有發生@DanLowe – motivation1

+0

你是什麼意思?那'ls'命令沒有輸出? –

回答

2

只有超級用戶可以CHOWN文件。從chown(8)手冊頁:

出於顯而易見的安全原因,文件的所有權只能 可以由超級用戶更改。

如果您想更改文件所有權,您應該使用sudosudo將需要您的密碼,並且您在計算機的admin組中(即您必須被標記爲允許管理計算機)。

sudo /usr/sbin/chown -RH shivamrishi:staff \ 
    /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app 
+0

你能寫一些代碼嗎? – motivation1

+0

您只需在命令行之前放置'sudo'命令即可。沒有涉及的代碼。 –

+0

@丹我使用sudo它給「非法組名」錯誤。我該如何解決這個問題? –

相關問題