Hey there,
if you might ever need something like ldd on windows to figure out the dependencies on dynamic libraries of some binary, the following link could interest you:
From The Life of a Junior Software Engineer
Hey there,
if you might ever need something like ldd on windows to figure out the dependencies on dynamic libraries of some binary, the following link could interest you:
Hey you root lovers,
no, it’s not a dream, you can haz root on MacOS, too. First, out of security reasons, I recommend to use sudo to do all the nasty stuff on the console. If that ain’t enough, the root users needs to be enabled first. As on most modern Linux distributions, you can enable the root user by assigning a root password (works on Ubuntu et al.):
1 | $ sudo passwd root |
The second – more mac oriented – way is the following:
The steps to disable the root user afterwards are nearly the same, so I won’t repeat myself.
The second way was taken from here
Hey peeps around the world,
recently I copied some files from one mac to another via network. At first, the access rights on the remote computer were messed up somehow. The nobody user had its finger in the pie. Finally, I’ve made it to copy the files. Now that the files were on my disk, they were still locked and the permissions were still messed up somehow. So, as a Linux guy, I just tried to chown the files, but this leads to an operation not permitted, although I was running chown in sudo mode. After some research I found out that the files were locked, which couldn’t be changed via the finder app. Fortunately, this can also be changed via CLI:
1 | $ sudo chflags -R nouchg /path/to/files |
Happy unlocking!