Post
Topic
Board Bitcoin Technical Support
Merits 2 from 1 user
Re: Bitcoin Core 0.18.1 Installation Help Request for Ubuntu 18 LTS
by
bob123
on 12/09/2019, 08:23:34 UTC
⭐ Merited by ETFbitcoin (2)
-m is used to configure permission of the installed application. 0755 (in order) means :
0 : AFAIK it's indication whether it's directory or file, CMIIW
~snip~

0755 is the octal notation of the permissions.
And the first 0 means that there is no sticky-bit set. If you'd want to set the sticky-bit, you would have to add 1 to the first number,  so 1755(in octal notation only; in decimal, you'd do chmod +t).

Whether a file is a directory, socket, etc.. is seen with ls -l at the first character of the permissions (d, s, ..), but they are not set using the first digit of the octal notation  Cheesy