Search Results

Search: Posts Made By: Phuti
977
Posted By hicksd8
Start with: # who See man page for options ...
Start with:

# who See man page for options

And


# ps
See man page for options

Try:

# ps -eaf
765
Posted By RudiC
A similar thing is possible in (recent) bash with...
A similar thing is possible in (recent) bash with the extglob option set:
shopt -s extglob
for DIR in !(AL|LA)/; do echo $DIR; done should list ALL directories except AL and LA.
765
Posted By rovf
You didn't specify, whether you want to use a...
You didn't specify, whether you want to use a specific shell for your script. If it is fine for you to use zsh, there is an interesting features which allows you to do globbing, but to exclude...
765
Posted By rbatte1
Your two commands recursively remove directories...
Your two commands recursively remove directories that match the pattern. The patterns are:-
/home/??*/folder_* - files and directories called folder_ or anything starting folder_ under /home that...
765
Posted By itkamaraj
its wildcard refer more details from this...
its wildcard

refer more details from this link (http://www.robelle.com/smugbook/wildcard.html)

? any single character, except a leading dot
* zero or more characters, except a leading dot
[...
Forum: SuSE 12-03-2015
4,061
Posted By bakunin
OK, the picture is clearer now, but still not...
OK, the picture is clearer now, but still not entirely conclusive:



I suppose by "smpt" you mean "SMTP", which is "Simple Mail Transfer Protocol". This is a specialized protocol (based on the...
Forum: SuSE 11-30-2015
4,061
Posted By bakunin
What exactly do you mean by "waiting for tcp"?...
What exactly do you mean by "waiting for tcp"? TCP establishes so-called "virtual channels" for communication. Think of them like telephone connections: you dial a number and once someone picks up at...
Forum: Red Hat 08-27-2015
1,780
Posted By bakunin
Perhaps "beginners error number 2" or so ;-)) :...
Perhaps "beginners error number 2" or so ;-)) : the space to a file is released only when the last process opening the file has ended. before this, the system-call unlink(), which really destroys the...
Forum: Red Hat 01-06-2015
19,722
Posted By Peasant
You might want check out this thread regarding...
You might want check out this thread regarding nproc in RHEL 6.3 or later.

https://bugzilla.redhat.com/show_bug.cgi?id=919793

I was scratching my head other day when java app server failed to...
Forum: Red Hat 01-05-2015
19,722
Posted By MadeInGermany
It is nproc in /etc/security/limits.conf or...
It is nproc in /etc/security/limits.conf or /etc/security/limits.d/*
This per-user limit is for threads (LWPs, light-weight-processes) rather than processes.
RHEL 6 ships with

rpm -qf...
Forum: Red Hat 01-05-2015
19,722
Posted By CarloM
iirc, it's either /etc/security/limits.conf or a...
iirc, it's either /etc/security/limits.conf or a sysctl value.
Forum: Red Hat 01-05-2015
19,722
Posted By rbatte1
Hello Phuti, It would be better to know why...
Hello Phuti,

It would be better to know why you have reached the limit rather than just increasing it. How have you set this limit so far, or is it the default? How many processes do you have,...
1,133
Posted By RudiC
man wc ?
man wc ?
Forum: Solaris 11-14-2012
1,988
Posted By GP81
There are two methods to setup default project. ...
There are two methods to setup default project.
1. add entry in file /etc/user_attr for example:

gregory::::project=projectname
2. create project with a special name for example:
-user.gregory...
Forum: Solaris 11-08-2012
1,988
Posted By GP81
Configuration of kernel parameters for current...
Configuration of kernel parameters for current project can be displayed with this command:

root@testserver # prctl $$
If you want display parameters for project used by oracle you should login as...
Forum: Solaris 11-08-2012
1,988
Posted By DukeNuke2
have you checked the solaris documentation? you...
have you checked the solaris documentation? you can find it at Oracle Documentation (http://docs.oracle.com)
Forum: Solaris 11-01-2012
2,317
Posted By jlliagre
You can use truss or dtrace to find out if the...
You can use truss or dtrace to find out if the process you are analysing is using the kaio system call or not.
1,302
Posted By pamu
df -h | sed 's/ //g' | awk -F "[G%]" '{ if ( $4 >...
df -h | sed 's/ //g' | awk -F "[G%]" '{ if ( $4 > 90) print;}'

Please use next time code tags (https://www.unix.com/how-post-unix-linux-forums/167686-forum-video-tutorial-how-use-code-tags.html)...
3,421
Posted By Scrutinizer
Try: awk '{print $5,$6}' OFS='\t' infile ...
Try:
awk '{print $5,$6}' OFS='\t' infile

or to also select the lines above 90%:
awk '$5+0>90{print $5,$6}' OFS='\t' infile

On Solaris use /usr/xpg4/bin/awk (you can change the PATH variable...
3,577
Posted By rbatte1
Assuming ksh, but probably very similar in other...
Assuming ksh, but probably very similar in other shells:-

if <whatever your condition is>
then
((i=`cat statusfile`+1))
echo $i > statusfile
if [ $i -le 5 ]
then
sendmail...
Showing results 1 to 20 of 20

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