Sponsored Content
Full Discussion: do i have a virus???
Special Forums Cybersecurity do i have a virus??? Post 4300 by mdma on Monday 23rd of July 2001 04:07:46 PM
Old 07-23-2001
do i have a virus???

nice board, makes interesting reading! glad to know im not the only one to have problems!! Smilie Smilie

last week, our database started to crash (run on unix / solaris) for no apparant reason. the problem seems to be intermiant which lead us to believe it may be a hardware problem causing the database problems.

aprox 6 weeks ago our sun console decided to reboot itself for no apparant reason, but seemed to be ok...thought no more of it.
this was followed a couple of weeks later the system going extremely slow, and when checking the "perf meter" there was a gravestone with R.I.P icon on it. as the perf had stopped responding we thought it was connected to the perf meter (we were aware of extra work being carried which could slow the system). this has now followed (after friday 13th july) with some d/b errors? is any1 able to throw any light on this. the sun box is connected to our novell server via nfs thus in theory giving it access to our emails etc etc

thank you
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

virus????????

i tought you can;t get virus in unix ? i have some admins buddys that work in bsd all he time and they sayed you can;t get viurs in unix is that true? download.com is putting virux updates out for mac OS X ................ (7 Replies)
Discussion started by: amicrawler
7 Replies

2. UNIX for Dummies Questions & Answers

Virus !!!!!!!!!!!!!!!!!!!

can linux get a virus on the boot sec from windows? becuse my buddys computer micro trend cmos virus keeps telling him that there is a boot sec virus on my hdd is that possable or is the box being dumb and looking at the linux boot as a virus? it was set up as a windows box not a linux... (4 Replies)
Discussion started by: amicrawler2000
4 Replies

3. UNIX for Dummies Questions & Answers

virus detection

IS there virus software for unix? I worked in a Solaris environment and dont remember having anything. I also ask because the current enviroment i am working on is Microsoft and they argue that they do not use unix because of virus detection. Any input would be greatly appreciated. (1 Reply)
Discussion started by: pbonilla
1 Replies

4. UNIX for Dummies Questions & Answers

Worm Virus

I am running Unix SCO and have discovered the worm virus. It is enabled through a BIOS connections, I am able to get around it using telnet, believe it or not. - Can anyone recommend a virus scan software? - Has anyone successfully used a virus scan software on unix without a problem? ... (2 Replies)
Discussion started by: ana_cr32
2 Replies

5. UNIX for Dummies Questions & Answers

Virus Software

I'm trying to find out what kind of virus software UNIX has, if any. Please let me know and please inform me of the prefered types. Thanks (1 Reply)
Discussion started by: GlockCW
1 Replies

6. UNIX for Dummies Questions & Answers

unix and virus

why one normally hears tht virus has stuck windows and one does not hear that unix has been stuck by virus...wht make unix so powerfull tht virus does not stuck it. (9 Replies)
Discussion started by: taurian1234
9 Replies

7. Windows & DOS: Issues & Discussions

virus help:

:confused: folder option is dissapiaring in tool menu iam formatting c drive after removal of this virus & also regedit is also not opening the messerge say's administrater disabled with out formattiung how ican solve this problem i.e iwant to get folder options& regedit (2 Replies)
Discussion started by: seshumohan
2 Replies

8. UNIX Desktop Questions & Answers

Virus and Malware

How do i manage virus and melware in Unix ? (2 Replies)
Discussion started by: Suriano10
2 Replies

9. Windows & DOS: Issues & Discussions

Windows XP keeps getting virus

Hi All, My old laptop has Windows XP. I reinstalled only last month and installed AVG free anti-virus. It's like every month, I get some kind of spyware or virus issue. which anti-virus software you guys using? Thanks. (8 Replies)
Discussion started by: samnyc
8 Replies
PERF_3.2-RECORD(1)						    perf Manual 						PERF_3.2-RECORD(1)

NAME
perf-record - Run a command and record its profile into perf.data SYNOPSIS
perf record [-e <EVENT> | --event=EVENT] [-l] [-a] <command> perf record [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>] DESCRIPTION
This command runs a command and gathers a performance counter profile from it, into perf.data - without displaying anything. This file can then be inspected later on, using perf report. OPTIONS
<command>... Any command you can specify in a shell. -e, --event= Select the PMU event. Selection can be: o a symbolic event name (use perf list to list all events) o a raw PMU event (eventsel+umask) in the form of rNNN where NNN is a hexadecimal event descriptor. o a hardware breakpoint event in the form of mem:addr[:access] where addr is the address in memory you want to break in. Access is the memory access type (read, write, execute) it can be passed as follows: mem:addr[:[r][w][x]]. If you want to profile read-write accesses in 0x1000, just set mem:0x1000:rw. --filter=<filter> Event filter. -a, --all-cpus System-wide collection from all CPUs. -l Scale counter values. -p, --pid= Record events on existing process ID. -t, --tid= Record events on existing thread ID. -r, --realtime= Collect data with this RT SCHED_FIFO priority. -D, --no-delay Collect data without buffering. -A, --append Append to the output file to do incremental profiling. -f, --force Overwrite existing data file. (deprecated) -c, --count= Event period to sample. -o, --output= Output file name. -i, --no-inherit Child tasks do not inherit counters. -F, --freq= Profile at this frequency. -m, --mmap-pages= Number of mmap data pages. -g, --call-graph Do call-graph (stack chain/backtrace) recording. -q, --quiet Don't print any message, useful for scripting. -v, --verbose Be more verbose (show counter open errors, etc). -s, --stat Per thread counts. -d, --data Sample addresses. -T, --timestamp Sample timestamps. Use it with perf report -D to see the timestamps, for instance. -n, --no-samples Don't sample. -R, --raw-samples Collect raw sample records from all opened counters (default for tracepoint counters). -C, --cpu Collect samples only on the list of CPUs provided. Multiple CPUs can be provided as a comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2. In per-thread mode with inheritance mode on (default), samples are captured only when the thread executes on the designated CPUs. Default is to monitor all CPUs. -N, --no-buildid-cache Do not update the builid cache. This saves some overhead in situations where the information in the perf.data file (which includes buildids) is sufficient. -G name,..., --cgroup name,... monitor only in the container (cgroup) called "name". This option is available only in per-cpu mode. The cgroup filesystem must be mounted. All threads belonging to container "name" are monitored when they run on the monitored CPUs. Multiple cgroups can be provided. Each cgroup is applied to the corresponding event, i.e., first cgroup to first event, second cgroup to second event and so on. It is possible to provide an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have corresponding events, i.e., they always refer to events defined earlier on the command line. SEE ALSO
perf_3.2-stat(1), perf_3.2-list(1) perf 06/24/2012 PERF_3.2-RECORD(1)
All times are GMT -4. The time now is 02:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy