看快照
tmutil listLocalSnapshotDates /
刪除本機所有快照
sudo tmutil thinLocalSnapshots / 100000000000 4
PYTHON、UBUNTU、MAC、CMS
看快照
tmutil listLocalSnapshotDates /
刪除本機所有快照
sudo tmutil thinLocalSnapshots / 100000000000 4
如果從網路下載文件,卻發現文件打不開有錯誤,然後上面提示你此文件不安全!
The installation cannot continue as the installer file may be damaged. Download the installer file again.
我們需要移除該份檔案上面的屬性
找出有附加屬性的檔案或文件,指令有多出一個@
$ ls -al@
macOS 提供了一個 xattr
系統工具,我們可以使用它來清除文件的屬性
$ xattr -d com.apple.quarantine <filename>
用法:xattr
+ -d
+ 附加屬性 + 文件名稱
xattr
+ 文件名稱:可以直接查看文件的附加屬性。-r 遞迴刪除,用在目錄
有時候從網路下載的程式會無法安裝,
會出現錯誤訊息:「安裝dmg 出現檔案已毀損或無法安裝第三方 App」,
那是因為在macOS sierra 10.12 系統中,已經把「任何來源」 關閉了。
如果要解鎖,可在「終端機」中輸入指令:
sudo spctl --master-disable
再輸入該使用者的開機密碼,即可以把「任何來源」這個選項給打開。