Try this:
1. kill midaemon (or stop it with stop script)
2. run this code
3. wait for midaemon to get respawned. DTrace should then show who started this process.
Hi,
Help ! - I have a process which I cannot find that is writing to /var/tmp every 10 minutes and filling up my partition, it is also filling up my wtmpx file. I have some software error correction for a faulty DIMM at the moment - is this likely to be causing this as well as over-loading my... (3 Replies)
Hi,
I am using diff command to check difference between two files.Both files are very big and when i execute this command /var temp space is filled up almost 99%.
Can any one please tell me is there any way i can specify directory name which has more space so that diff can use that dir for... (2 Replies)
hi sirs
can u tell the difference between /var/log/syslogs and /var/adm/messages
in my working place i am having two servers.
in one servers messages file is empty and syslog file is going on increasing..
and in another servers message file is going on increasing but syslog file is... (2 Replies)
Hi Everyone,
My var directory is showing near to 100% ? What are the files should i delete to make it less??
Kindly suggest
# bdf -i
Filesystem kbytes used avail %used iused ifree %iuse Mounted on
/dev/vg00/lvol3 1048576 107616 933616 10% 3342 29394 10% /... (10 Replies)
Hey Guys,
I have been searching but unable to find solution for this;
Got 2 files:
#File A
A
B
C
#File B
1
2
3
And would like to 'merge' file and get a out put like;
A1
A2
A3
B1 (2 Replies)
I have Solaris-11 non-global zone running under Solaris-11 global zone. Every few minutes, this message is getting in /var/adm/message of non-global zone
Aug 31 08:31:53 zonnjc002dbp01 statd: statd: cannot talk to statd at NAS1, RPC: Timed out(5)
NAS1 is already mounted as NFS and working... (2 Replies)
Hi,
I am receiving an email to the server with a html attachment. When I check the /var/mail the attachment is showing as junk characters.
I want to move that html file to a particular location in that server.
Please help me.
Regards
Neethu (4 Replies)
i try to find way to make string concatenation in csh ( sorry this is what i have )
so i found out i can't do :
set string_buff = ""
foreach line("`cat $source_dir/$f`")
$string_buff = string_buff $line
end
how can i do string concatenation? (1 Reply)
I am trying to create a script that checks if my VPN connection is up and running...
Everything seems to work as except but for some reason, the script fills up my /var/log/auth.log with the below information
Dec 13 01:07:44 debian sudo: soichiro : TTY=pts/0 ; PWD=/home/soichiro/Desktop ;... (5 Replies)
Discussion started by: soichiro
5 Replies
LEARN ABOUT NETBSD
modload
MODLOAD(8) BSD System Manager's Manual MODLOAD(8)NAME
modload -- load a kernel module
SYNOPSIS
modload [-fP] [-b var=boolean] [-i var=integer] [-s var=string] module
modload -p [-b var=boolean] [-d var] [-i var=integer] [-m plist] [-s var=string]
DESCRIPTION
The modload utility loads a kernel module specified by the module parameter into the running system.
Modules are loaded from the default system module areas unless the module parameter contains a path separator character ('/').
The options to modload are as follows:
-b var=boolean Pass the module a boolean property with the name var. boolean may be either true or false.
-d var When used in conjuction with -m, delete var from the plist specified.
-f When a module is loaded, the kernel checks if the module is compatible with the running kernel and will refuse to load mod-
ules that are potentially incompatible. This option disables compatibility checks. Note: an incompatible module can cause
system instability, including data loss or corruption.
This option is also required for re-enabling a builtin module that was disabled using modunload(8).
-i var=integer Pass the module an integer property with the name var and integral value integer.
-m plist When used in conjuction with -p, merge new options with an existing property list contained in plist.
-P This option tells the kernel not to load an associated property list.
-p Output a property list suitable for loading along with a module. When using this option, you do not need to specify a mod-
ule. Use -m and -d to read and modify an existing property list.
-s var=string Pass the module a string property with the name var and string value string.
DIAGNOSTICS
The modload utility exits with a status of 0 on success and with a nonzero status if an error occurs.
SEE ALSO module(7), modstat(8), modunload(8)HISTORY
The modload command was designed to be similar in functionality to the corresponding command in SunOS 4.1.3.
BSD August 6, 2011 BSD