0
votes
How do I increase the /proc/pid/cmdline 4096 byte limit?
Perhaps the 'w' parameter to ps is what you want. Add two 'w' for greater output. It tells ps to ignore the line width of the terminal.
…
3
votes
What are the dark corners of Vim your mom never told you about?
Want an IDE?
:make will run the makefile in the current directory, parse the compiler output, you can then use :cn and :cp to step through the compiler errors opening each file and seeking …
0
votes
Iterating over lists in Makefiles?
You're doing it backwards.
You're trying to treat make like it's a script. It's not, instead its a set of rules on how to create X given Y. Then the make engine figures out what needs to …
0
votes
Ethernet FCS when capturing wth Wireshark under Linux
The FCS is generated by the sender's ethernet device and decoded by the recipients ethernet device. If the FCS is correct, the payload is passed up to higher layers. If it's not, then the potenti …
1
vote
How are sbrk/brk implemented in Linux?
I recommend you get a copy of Understanding the Linux Kernel. It walks you through the design and implementation of most of the Linux Kernel. Chapter 8 deals with memory management specifically, …
3
votes
How can I detect hung processes in Linux using C?
Under linux the way to do this is by examining the contents of /proc/[PID]/* a good one-stop location would be /proc/*/status. Its first two lines are:
Name: [program name]
State: R (ru …
