Esxi running macos For selur - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html) +--- Forum: Small Talk (https://forum.selur.net/forum-7.html) +--- Thread: Esxi running macos For selur (/thread-1495.html) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
RE: Esxi running macos For selur - Selur - 21.09.2020 I generally try to use separate tools if possible and sometimes use ffmpeg as fallback. Main reasons are: a. it's usually easier to update a separate tool than to build ffmpeg. b. the separate encoders sometimes support more features c. I usually get faster feedback from the developers of the separate tools than from the ffmpeg devs. (not counting the Google team with vorbis&co, they - like the ffmpeg team - sometimes take years to reply to an issue) Cu Selur RE: Esxi running macos For selur - shijan - 21.09.2020 and these bins? "'"/Applications/Hybrid.app/Contents/MacOS/MP4Box" -version' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. '"/Applications/Hybrid.app/Contents/MacOS/MediaInfo" --version' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. '"/Applications/Hybrid.app/Contents/MacOS/faac"' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. '"/Applications/Hybrid.app/Contents/MacOS/flac"' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. '"/Applications/Hybrid.app/Contents/MacOS/opusenc" --version' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. '"/Applications/Hybrid.app/Contents/MacOS/rav1e" --help' didn't get started after 5 seconds -> aborting,... Restarting Hybrid might solve the problem,... The cause might also be some incompatibility with the tool and your system. No sox binary found -> disabling audio support,..." RE: Esxi running macos For selur - Selur - 21.09.2020 all executables should be: 755 all dylibs should be: 644 all folders should be: 755 all resource files (like images etc): should be 644 RE: Esxi running macos For selur - shijan - 21.09.2020 Finally a solid FAQ! What to type in terminal sudo chmod 0644 or sudo chmod 644 ? 0 at start is for single files and not for folder-like items? also for binaries you need in addition to apply sudo chmod +x to make it active (or how did you name that) RE: Esxi running macos For selur - Selur - 21.09.2020 Quote:also for binaries you need in addition to apply sudo chmod +x to make it active (or how did you name that)No you do not. That was only needed since I miswrote that 655 instead of 755 should be used. -> read the explanation on what the numbers/rights stand for Quote:What to type in terminal sudo chmod 0644 or sudo chmod 644 ?probably doesn't matter iirc using 4 numbers is the correct way, but normally if there are only 3 numbers the first is set by the file type Cu Selur RE: Esxi running macos For selur - shijan - 21.09.2020 Ok, thanks for explanation. Going to test these things... Seems also all dylibs in Hybrid.app/Contents/PlugIns are tagged as 755 by mistake RE: Esxi running macos For selur - Selur - 21.09.2020 Quote:Seems also all dylibs in Hybrid.app/Contents/PlugIns are tagged as 755 by mistakeComplain to Qt I never changed the rights on those, these were created by QtCreator or Qts macdeploy. (no clue why they would need dylibs to be executable, 644 should be enough) -> It's a waste of time to change the right of these files anywhere other than the installer, since whenever I build Hybrid these settings will be reset to their defaults. Cu Selur RE: Esxi running macos For selur - shijan - 22.09.2020 Lucky that it is possible to drop multiple files in Terminal, so it is not so complicated to change those permissions things inside Hybrid. Not sure if i understand concept about "is enough". Why limit permissions and risk that something somewhere may go wrong again? Seems Qt isn't wrong. I just checked macOS system files with EasyFind and BatChmod and here is what i see: All .dylib files system wide use 755 Frameworks, Bundles, Components use 755 .plist files use 644 .py scripts in most cases use 644, but sometimes in some places limited to 444 Also i see that VapoursynthScriptsInHybrid-master .py scripts use 755. Also mistake? RE: Esxi running macos For selur - Selur - 22.09.2020 Quote:Why limit permissions and risk that something somewhere may go wrong again?Why have door that can be closed with a key or similar? Because shit goes wrong when it can. -> Normally files should only have the rights that are needed to use them. So in praxis, If you don't know for sure you leave the rights more lax and if you know for sure you should restrict the rights. The point is to set the rights so that anything that needs to be done can be done and nothing that shouldn't be done can't be done either. Quote:Also i see that VapoursynthScriptsInHybrid-master .py scripts use 755. Also mistake?No, since in general .py scripts can be executable which is why by default they have the 'x'-flag. Yes, since none of the scripts need to have the 'x' flag since none of them should be executable they are all only loaded inside Vapoursynth scripts and as such are just data containers. -> It always depends. Cu Selur Ps.: Also it's not always that easy to keep rights straight when developing on different OSs which have different rights management. RE: Esxi running macos For selur - shijan - 22.09.2020 Updated Hybrid test installers with executables and .dylibs permissions set to 755 Plugins for Hybrid Test updated Waifu2x-w2xc .dylibs permissions set to 755 https://drive.google.com/drive/folders/1nHz8jhVx3kMqbcTJ06QchKjVU52YvuZx?usp=sharing P.S. I notice that if change permissions in files, i need to re-import them to Packages project manually. Otherwise Packages will read files with old permissions. |