The sysctl is a Unix interface used to modify variables that the kernel uses to determine behavior. There are two ways to work with sysctl: by directly reading and modifying files in /proc/sys and by using the sysctl program supplied with most distributions. The regedit interface is the closest ...
0
votes
0answers
47 views
How to get iOS CPU Core usage?
There has been a lot of the same question, but yet I cannot find great answers. I've looked at codes from this particular post which gives me usage per core, but it is inaccurate, always stuck at 14% ...
2
votes
1answer
233 views
setting tcp delayed ack using sysctl programmatically
I am trying to change the delayed_ack value to 0 from 3(default) in OS X. I can change the send space programmatically, but not the delayed_ack. Thoughts ? thanks.
int ...
0
votes
0answers
14 views
Do Heroku buildpack scripts run as root?
If not, is there any way to make customizations to the dyno that usually require root access? (For example, changing values specified in /etc/sysctl.conf, by modifying the version of that value used ...
0
votes
1answer
131 views
How do I read buffer data retrieved from sysctlbyname() in iPhone?
I'm trying to get TCP open port list in iphone by using sysctlbyname().
sysctlbyname(const char *name, void *oldp, size_t *oldlenp, void *newp,
size_t newlen);
.
#include ...
0
votes
0answers
120 views
get all tcp/udp connections using sysctl in Objective C
As we know to get all tcp connections we can use sysctl with "net.inet.tcp.pcblist" as MIB variable .But its output is binary data and must be convert to human readable context which describes IP ...
2
votes
1answer
601 views
iOS cpu usage for each process using sysctl()?
Is there a way to get cpu usage for each process using sysctl() ?
I'm trying to find a way to detect the launch of a specific application. It seems there's no way to get foreground running app ...
1
vote
0answers
83 views
Detect other running iOS app using systcl
I use sysctl () function to get the process list, but is there a way to detect currently running app? My app is location based app and it runs in the background. I want to detect which app is running ...
8
votes
1answer
639 views
Detect which app is currently running on iOS using sysctl
I have currently implemented a simple activity monitor to watch all running processes on iOS.
To retrieve a list of all running processes, I do this:
size_t size;
struct kinfo_proc *procs = NULL;
...
0
votes
2answers
315 views
How to find the value of kernel.shmmax from C code
I want to get the value of kernel.shmmax in C code (which I query on centos5.0, centos6.0 and ubuntu10.04 using the shell command "$ sysctl -q kernel.shmmax").
I used the following code to find it:
...
6
votes
2answers
2k views
Node.js struggling with lots of concurrent connections
I'm working on a somewhat unusual application where 10k clients are precisely timed to all try to submit data at once, every 3 mins or so. This 'ab' command fairly accurately simulates one barrage in ...
0
votes
1answer
164 views
BSD/Darwin cpu stats
Do all of the BSDs have a common way to get CPU stats (time spend in kernel, idle, user, etc) like Linux has in the first line of /proc/stats?
I'm trying to detect a system under load and not perform ...
1
vote
1answer
63 views
Check what device are You running and execute action
I've written this script:
#!/bin/sh
DEVICE=`sysctl hw.machine`
if [ $DEVICE = "hw.machine: iPhone3,1" ]
then
echo "Test Done"
else
echo "Test failed"
fi
After I run it I've got a message: ...
0
votes
1answer
121 views
How to calculate TaskCPUUsage and TaskThreadCount for each process running iPhone or iPad
How to calculate TaskCPUUsage and TaskThreadCount for each running process in iPhone or iPad..I want to give the process id and calculate the % cpu for that process.Is it possible? if possible how to ...
3
votes
1answer
1k views
Disable and re-enable address space layout randomization only for mysef
I would like to disable address space layout randomization (ASLR) on my system (Ubuntu Gnu/Linux 2.6.32-41-server), but, if I use
sysctl -w kernel.randomize_va_space=0
the change would affect all ...
0
votes
1answer
308 views
Linux and KERN_PROC
I'm attempting to get the information of another process via the sysctl interface
int mib[4] = {0};
size_t len = sizeof( mib ) / sizeof( int );
struct kinfo_proc kp;
mib[0] = CTL_KERN;
...
1
vote
2answers
461 views
freebsd shpgperproc what is responsible for?
i've googled a lot about what is "page share factor per proc" responsible for and found nothing. It's just interesting for me, i have no current problem with it for now, just curious (wnat to know ...
3
votes
2answers
1k views
Permanent fix to tail: cannot watch `log/development.log': No space left on device
I've been using Ubuntu 11.10 for a little over a week now. But after some time I encountered this error(the one in the title) when Im trying to access the log in my RoR project. I found a fix which is ...
1
vote
1answer
125 views
sysctl migrate to 2.6.35
I have userspace sysctl calls made to sysctl tables configured on a 2.6.24 kernel. I have migrated the sysctl code to 2.6.35 kernel. I'm seeing warning msgs sayg that 'deprecated sysctl warning' when ...
3
votes
2answers
4k views
Default /etc/sysctl.conf settings for Mac OS X Snow Leopard?
I tried to install PostgreSQL 9.1.2 for Mac OS X 10.6 and it asked me to edit the sysctl.conf file inside the /etc/ directory, so it could use more of the shared memory PostgreSQL was asking for.
I ...
0
votes
1answer
141 views
how get per process info,such as mem,3G flow
I use sysctl () function to get the process list,but I only find start time,name.how can I get more info from per process?
2
votes
2answers
692 views
Find out MAC address on Linux&FreeBSD in C
I am trying to find out MAC address and I managed to create working solution using sysctl in Linux, problem is, that this solution is not working on FreeBSD version I am developing on. Is there any ...
2
votes
1answer
669 views
“Invalid argument” error for sysctl vm.drop_caches key in Ubuntu 11.10 (kernel 3.0.0-12)
I have the following shell script that I've been using in previous versions of Ubuntu (<= 11.04) to clear memory cache and it has worked fine:
sudo sync && sudo sysctl -w vm.drop_caches=3 ...
4
votes
1answer
1k views
Can I use `sysctl` to retrieve a process list with the user?
I am in need of a way to retrieve all running processes for all users on a Mac (using Cocoa). I found an implementation to retrieve the process using sysctl, but I also need the running user. This is ...
4
votes
0answers
854 views
Getting CPU usage of a specific process on iOS4
I am trying to get CPU usage of various processes (cpu ticks) from a background application running on iOS4 using Apple SDK. This is done completely with users' consents so there is nothing unethical ...
3
votes
1answer
3k views
Need to “calculate” optimum ulimit and fs.file-max values according to my own server needs
Need to "calculate" optimum ulimit and fs.file-max values according to my own server needs.
Please do not conflict with "how to set those limits in various Linux distros" questions.
I am asking:
...
0
votes
2answers
319 views
sysctl in a NSAutoreleasePool -> bus errors & segfaults
Thanks in advance to everyone trying to help me. I'm having a big issue here, I've found some example code about sysctl and extended it so I can query the network interfaces for their in/out data. ...
2
votes
3answers
2k views
Change congestion control algorithms per connection
The command 'sysctl' in linux as of now changes the congestion control algorithm globally for the entire system. But congestion control, where the TCP window size and other similar parameters are ...
0
votes
1answer
1k views
How to get maximum TCP Receive/Send window in MAC OS X?
How to get maximum TCP Receive/Send window in MAC OS X?
There are two ctl in Linux.
/proc/sys/net/core/rmem_max - Maximum TCP Receive Window (NET_CORE_RMEM_MAX)
/proc/sys/net/core/wmem_max - ...
3
votes
3answers
750 views
Does anybody know equivalent for NETLINK Sockets API for MAC OS X?
Does anybody know equivalent for NETLINK Sockets API for MAC OS X ?
I am trying to port Linux application to MAC OS X and I couldn’t find anything similar in MACOS.
I need to provide asynchronous ...
0
votes
3answers
1k views
Is there a way to change max number of threads can be created on OS X 10.6 by JVM?
According to this stackoverflow post, there is a limit on Mac OS X 10.6 for how many threads can be created by JVM or any application. The limit can be displayed by running following command in ...
10
votes
8answers
2k views
Monitoring network usage excluding local traffic
I am working on an app that monitors network usage. However I noticed many ways to do this does not allow exclusion of local traffic (say, Time Machine).
I am looking for a way to exclude local ...
1
vote
2answers
822 views
What are the units of UDP buffers, and where are docs for sysctl params?
I'm running x86_64 RedHat 5.3 (kernel 2.6.18) and looking specifically at net.core.rmem_max from sysctl -a in the context of trying to set UDP buffers. The receiver application misses packets ...
0
votes
1answer
532 views
Why is sysctl producing E_INVAL on Mac OS X?
Below is a pared-down (error/null checks omitted) snippet of C/Obj-C code that uses sysctl to get the argv of a particular process with PID 50.
...
int getProcessArgs[3] = { CTL_KERN, KERN_PROCARGS, ...
