
25.02.2019, 03:59
|
|
Постоянный
Регистрация: 11.01.2007
Сообщений: 445
С нами:
10174119
Репутация:
0
|
|
Sland написал(а):
Не устанавливается последняя версия. На Mojave.
Show hidden files to reveal the Parallels app in the Install file package content:
Код:
Код:
defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder
Manually copy Parallels app to /Applications and making it visible with:
Код:
Код:
chflags nohidden /Applications/Parallels\ Desktop.app
Code-sign the application (NB! You need Xcode in order to codesign
Код:
Код:
xcode-select --install
Код:
Код:
sudo codesign --sign - --force --deep /Applications/Parallels\ Desktop.app
If you get a detritus error, first execute the following before code-signing:
Код:
Код:
xattr -cr /Applications/Parallels\ Desktop.app
Turn off showing hidden files:
Код:
Код:
defaults write com.apple.finder AppleShowAllFiles No && killall Finder
|
|
|