Skip to content

How to start compilation of Krusader?

My question is simple. It is probably something obvious what I am missing… I downloaded Krusader (file manager) source, from their webpage in .tar.gz. I unpacked it and want to compile, but there is no ./configure, no make, no make install. The install.txt file is not clear for me. There is information …

ELF label address

I have the following code in .s file: Its object file has the following: After linking, it becomes: How does the argument 0x0 to pushq at byte 20 of the object file gets converted to 0x400578 in the final executable? Which section of the object file contains this information? Answer You answered your own ques…

Grep Pattern matching- underline

I’ve not been able to find anything online to help so hoping someone may have an idea. What does an underline in an expression mean when using grep? For example: [_a-zA-Z0-9] Could someone help to explain the purpose here? Answer The grep command uses a regular expression as it is also described in the …