Search Results

Search: Posts Made By: steephen
Forum: Red Hat 02-18-2015
6,282
Posted By steephen
sysctl -A | grep net.ipv4.ip_local_port_range ...
sysctl -A | grep net.ipv4.ip_local_port_range

will give effective port range at any moment.

After reboot if we execute sysctl -p /etc/sysctl.conf system update kernel parameter...
Forum: Red Hat 02-17-2015
6,282
Posted By steephen
I set parameters in both way given in question ....
I set parameters in both way given in question . Moreover my startup script /etc/rc.local is taking care parameters of proc file system . So after I reboot what will be the effective range?
Forum: Red Hat 02-17-2015
6,282
Posted By steephen
Which is the effective ephemeral port range in Linux 2.6 for this set up?
In my Linux system ephemeral port range is showing different ranges as follows

$ cat /proc/sys/net/ipv4/ip_local_port_range
32768 61000



cat /etc/sysctl.conf | grep...
Forum: Programming 01-19-2009
4,205
Posted By steephen
Could you please go through the function...
Could you please go through the function 'sigqueue'. Is it that you are looking for ?
Forum: Programming 01-19-2009
4,205
Posted By steephen
Try man pages for following functions ...
Try man pages for following functions

sched_setscheduler
sched_getscheduler

You may get answer for your first question.
Forum: Programming 01-19-2009
17,952
Posted By steephen
#include <stdio.h> void foo(int id, char...
#include <stdio.h>

void foo(int id, char **first_name, char **last_name)
{
/*
this is just an example to illustrate my problem... real code makes
use of the "id" parameter.
*/
// ...
Forum: Programming 01-06-2009
11,495
Posted By steephen
Why are you using the function in this scenario?...
Why are you using the function in this scenario? By using function calls you are creating the overhead of function call and temporaray object.
Forum: Programming 12-13-2008
6,608
Posted By steephen
We don't Know sir !!
We don't Know sir !!
Forum: Programming 12-13-2008
2,198
Posted By steephen
You can put solution also here since it is a...
You can put solution also here since it is a discussion forum. Learners are not alwyas pickpocketr's! So don't run away!!
Forum: Programming 12-13-2008
8,131
Posted By steephen
[U16511@maildev c_cpp]$ ./a.out 0123456789015 ...
[U16511@maildev c_cpp]$ ./a.out
0123456789015
0012345678901ñ 15[U16511@maildev c_cpp]$ 5

It means nothing related to a string ending 12.

It is a memory managment issue.

Your question is...
Forum: Programming 12-12-2008
5,342
Posted By steephen
Share your findings !! We may be able to learn...
Share your findings !! We may be able to learn something out of that!!!
Forum: Programming 12-05-2008
9,059
Posted By steephen
By using following command you may able to...
By using following command you may able to idetify system details related to the IPC.

#ipcs -a

Look into the man page of ipcs to get more details
Forum: Programming 12-05-2008
4,551
Posted By steephen
You can use the compiler g++.
You can use the compiler g++.
Forum: Programming 12-05-2008
1,776
Posted By steephen
Your query is not clear. If you want to know the...
Your query is not clear. If you want to know the details of the users connected to the server system you can use the command 'finger'
Forum: Programming 12-05-2008
8,912
Posted By steephen
You can use the command as follows. #uname -a ...
You can use the command as follows.
#uname -a

Refer the man page of 'uname' for more details.
Forum: Programming 11-28-2008
11,997
Posted By steephen
This is not the place for writing homework for...
This is not the place for writing homework for others!!
Forum: Programming 11-28-2008
6,475
Posted By steephen
A fork() Primer...
A fork() Primer (http://beej.us/guide/bgipc/output/html/multipage/fork.html)
Signals (http://beej.us/guide/bgipc/output/html/multipage/signals.html)

Please go thorugh these links. It may be...
Forum: Programming 11-28-2008
15,423
Posted By steephen
#include <string.h> int main() { char *seq1...
#include <string.h>
int main()
{
char *seq1 = "eeeeeeeeeeeeeeeeee";
char *seq2 = "dddddddddddddddddddd";
const char* a = "*";

seq2=(char*)malloc(strlen(seq2)+1);
strcat(seq2,a);...
Forum: Programming 11-28-2008
15,423
Posted By steephen
#include <string.h> int main() { char *seq1...
#include <string.h>
int main()
{
char *seq1 = "eeeeeeeeeeeeeeeeee";
char *seq2 = "dddddddddddddddddddd";
const char* a = "*";

seq2=(char*)malloc(strlen(seq2)+1);
strcat(seq2,a);...
Forum: Programming 11-28-2008
15,423
Posted By steephen
What is your expected output?
What is your expected output?
Forum: Programming 11-27-2008
4,545
Posted By steephen
It is possible
yes ,it is possible to use variable as size of an array in C programming
11,058
Posted By steephen
Pls refer man uniq
Pls refer man uniq
49,102
Posted By steephen
Pls do the following and understand yourself
[U16511@a462uss ~]$ ls -l file3
ls: file3: No such file or directory
[U16511@a462uss ~]$ cat file3
cat: file3: No such file or directory
[U16511@a462uss ~]$ cat > file3
hai
Ctrl C...
2,931
Posted By steephen
Check Feasibility of the option '--mtime' of the...
Check Feasibility of the option '--mtime' of the command 'find'
Showing results 1 to 24 of 24

 
All times are GMT -4. The time now is 05:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy