Answer: It does make sense, because I've been involved in these careers and have a long family line of them. And other questions?
Explanation:
Answer:
For SGID you type this
$ find . -perm /4000
For SUID you type this
$ find . -perm /2000
Explanation:
Auxiliary file permissions, that are commonly referred to as “special permissions” in Linux are needed in order to easily find files which have SUID (Setuid) and SGID (Setgid) set.
After typing
$ find directory -perm /permissions
Then type the commands in the attachment below to obtain a list of these files with SGID and SUID.
Answer:
Java is called portable because you can compile a java code which will spew out a byte-code, and then you run that code with Java Virtual Machine. Java Virtual Machine is like an interpreter, which reads the compiled byte-code and runs it. So first of all, you need to install the JVM on the system you want.
Explanation: