Search Results

0
votes

LSOF connection established

The 'ESTABLISHED' means the TCP connection is established, ie the handshake has been performed on TCP/IP level. This is needed before the ssh process sees any data at all. Theoretically, the connec …
5
votes

What is the Linux Equivalent of Kernel32.dll?

'kernel32.dll' would also translate to libc.so.6. Since Windows is not POSIX on its lowest level, it needs an additional layer to translate POSIX libc calls into native Win32 calls. This is what ms …
0
votes

Search for kernel source code of HID.c v 2.6.27.14

You're asking for the stable tree (hence the .14 at the end), which can be found at here …
2
votes

problem with the GNU “time” command to measure memory usage

Peak memory usage is not implemented in Linux as far as I know so time does not report it. Most people use the number of minor pagefaults (1 == 4Kb block) as indication for the amount of memory use …
1
vote

The Ultimate Oneliner

Why is my hard drive full again? du -m ~ | sort -n ...and start out from the last entry to the first and determine what to prune …