General :: What Is The Extension Of Datadbase Files In Clamd Service And Where It Stored

May 10, 2010

Want know the location of the Clamd service database, and also know the extension of these database fies.

View 2 Replies


ADVERTISEMENT

Server :: Clamd Service Didn't Start?

Apr 15, 2010

I try to start clamd service since I found "PROCS CRITICAL: 0 processes with command name 'clamd'" from nagios. so I check at its log file at "tail /home/clamav/logs/clamd.log" it said that log file exceeding maximum limit so I try to rotate log by

pico /root/123/etc/logrotate.d/clamd
/home/clamav/logs/clamd.log {
rotate 12

[code]...

View 2 Replies View Related

Ubuntu :: ClamAV-clamd - Can't Connect To UNIX Socket /var/run/clamav/clamd.ctl

Apr 16, 2010

This started happening sometime yesterday afternoon on a server that's been trouble free for years.

My Ubuntu update is scheduled to run every month on the 5th, so this was roughly 10 days after that. So it seems to me it's not update related. The only thing I've done on the server lately is update a spamassassin rule which required an amavis restart. That was done earlier in the week.

I've already reviewed issues at [url] and all the conditions are correct for the more recent How to.

I can also confirm that, in fact, /var/run/clamav/clamd.ctl does not exist.

View 7 Replies View Related

General :: What Kinds Of Files Are Stored In The Directories

Mar 12, 2010

3.State what kinds of files are stored in the following directories. Give any ONE file that can be found in these directories.

a. /etc/
b. /proc/
c. /sbin/

View 2 Replies View Related

General :: Syslog Allow Organizing Stored Simple Log Files

Sep 15, 2010

Syslog is used to store simple log files or we can manage them too? Well, the thing is, that I need to run a software (like syslog) to collect my logs and put them in order and organize them so it makes them "understandable". I have been told that syslog can do the job and that it doesn't need a complex configuration to work.

View 12 Replies View Related

General :: Use Bacula To Make Backups Of The Files Stored On The Server?

Apr 14, 2010

I have an ubuntu (8.04.3) server where I use bacula to make backups of the files stored on the server. Ive been trying to find a solution (with no luck) trying to succesfully implement the following:-

A Backup tape for each day of the week besides Thurs which is resused on a weekly basis. For the thursday tapes we have a backup tape corresponding to the week number that the thursday falls so for the first thursday of the month it would be ThursOne For example. These tapes are resued on a monthly basis. We then have a monthly tape that is used on the last thursday of the month. These tapes will be resused on a yearly basis.

Another requirement is just in case a tape is accidently not changed a backup should still occur regardless of what tape is in the drive (so if its tuesday and mondays tape is still in the tape drive it should rewrite that tape).

I did have this successfully set up where the tape was appended after each use rather than being recycled after the nightly backup. But then after a few weeks I would have to manually purge tapes when they became full (which isnt ideal - as Im not always in the office so in my absence it may be that a backup may not take place), so have been playing around and have now got the tapes to be marked as used after a max of 2 jobs (so the backup of the files and the catalog of the night). I also added this line 'Recycle Current Volume = yes' so that it would hopefully recycle the volume in the drive.

However what I am finding is that the tape that should be recycled is not, but in yesterday case the Mondays tape was recycled rather than the Tuesday although Mondays was the last written so Im not even sure why it choose to recycle this tape.

View 1 Replies View Related

General :: How To Only Copy Executable Files (or Without Extension)

May 9, 2011

Suppose there is a directory named mydir containing ...
aaa.cpp
aaa.h
bbb.cpp
bbb.h
Makefile
a
b
Where a,b are executable files. What I want to is to only copy a and b to another location. Is it possible? (other than by manually issuing copy a,b another_dir).

View 2 Replies View Related

General :: Run Same Command On Multiple Files With Same Extension?

Nov 10, 2010

how to run a command on all files with the same extension in a directory like this:

Code:

tex breqn.dtx; tex empheq.dtx; tex flexisym.dtx; tex mathstyle.dtx; tex mathtools.dtx; tex mhsetup.dtx; tex xfrac.dtx;

but in a simpler manner? I found this: Code: find . -type f -name *.dtx -exec tex {} ; but isn't there something simpler?

View 4 Replies View Related

General :: Two Different Color Coding For Two Files Having .c Extension

Jan 15, 2011

In Fedora, I used the ls -l command to see the directory listing. But I noticed that while all .c files were being shown in green , there was one .c file which was being shown in black.How can two files having the same extension be executable /normal?

View 1 Replies View Related

General :: Copying Files According To Modification Date And Extension?

Dec 30, 2010

I am trying to find a command which will copy all the files in the folder with extension ".log" which is created one day before the current date. By going through other threads in this forum I found the half solution to this problem

find /mnt/hd -mtime -1 -exec scp {} /mnt/usb ;

This command copying the all the files created one day before(not only *.log) to the /mnt/usb folder. what is the modification required to above command.

View 5 Replies View Related

General :: Logrotate Not Rotating Files With Date Extension?

Oct 25, 2010

I am trying to configure logrotate on APP/DB servers.As per my backup policy,logs will compress in daily basis and and will be moved to a Central storage device.

My tomcat generate several application logs with date extension as well as .log extension.For eg app.log,app.log.2010-10-23-14,catalina.out,catalina.2010-10-25.log etc.

Currently my tomcat logrotation /etc/logrote.d/
#cat /etc/logroate.d/tomcat/
/usr/local/tomcat/logs/*log {

[code]....

But its rotating logs only with .log extension..ie app.log.2010-10-23-14 (with date extension) is not rotating.If i put "*" instead of "*log",its rotating all files including rotated files. How can i rotate files which is having date extension.Also i dont want to keep rotated logs for more than 3 days.

View 1 Replies View Related

General :: Unable To Install CPIO Extension Files

Apr 23, 2011

I want to install Forms & Reports Developer Suite in Linux OS So I have downloaded Oracle Developer Suite 10g for Linux (Including Forms & Reports)
as_linux_x86_ids_101202_disk1.cpio
as_linux_x86_ids_101202_disk2.cpio

So in the Oracle Documentation Site they have given Guide as Follows:
To extract the cpio file,
move the cpio file to an empty directory,
then do:
cat filename.cpio | cpio -icd ....
but its not extracting.

View 7 Replies View Related

General :: Find Files With Specific Extension And Move To A Directory?

Apr 18, 2011

I need little help. I want to find all files with extension "*.tar" "*.gz" and "*.zip" and move all those files into "/opt/old" directory. I've tried this command:

Quote:

find . -type f -name "*.tar" "*.gz" "*.zip" -print0 | xargs -0 -r mv /opt/test

It's not working, something wrong after "mv" i guess.

View 10 Replies View Related

General :: Shell Script To Search For Files Of Specific Extension And Delete Them All?

Mar 17, 2010

i want such a shell script or single line command to delete all the files with extension specified in script i have bash !! ex... delete all files of extension .obj

View 4 Replies View Related

Ubuntu Multimedia :: Convert Mp3 Files Into Files With The M4a Extension??

Sep 21, 2010

how to convert mp3 files into files with the m4a extension? Need to get music files to be recognized by my DSi.

View 4 Replies View Related

General :: Transfer Files Between System Based OS And Windows Without Any Service?

Mar 14, 2011

Kindly read the complete question I know this question has been asked repeatedly

Is there a way to Transfer files between Linux based OS & Windows OS Without using SCP, FTP, TFTP, HTTP, USB, Netcat or samba share?

View 8 Replies View Related

Debian :: Where Are The Installed Files Stored

Aug 12, 2011

I run debian squeeze. I use apt-get install openjdk-6-jdk. But I do not understand how I can figure out where the files are stored?

View 1 Replies View Related

OpenSUSE :: Where Are Temp Files Stored In 11.0

Dec 7, 2009

Where are temp files stored in SuSE 11.0? I am trying to find all of those videos and .jpgs and other miscellaneous files I've downloaded in the past, and which are now only taking up space on my hard drive. I'd like to clean out all of that. I have looked in both /tmp and in /.kde but don't see what I'm looking for.

View 9 Replies View Related

Ubuntu :: Where Are All User Files Stored ?

Dec 27, 2010

If anyone of you guys could tell me where does ubuntu saves user prefference/settings/application settings/menus/themes all that effect only user loged in so i can transfer all of this to another account and have them be the same. Or maybe there is an app for that ?

I setup my ubuntu to have no users and only root account, but i found that its not made to work correctly with being root at all times, so i created an account and want to export my root prefferences to newly created account, just like i could with windows by exporting files/registry keys etc.

View 3 Replies View Related

Fedora :: Where Are Stored PWs For Remote Desktop Viewer Stored?

Oct 20, 2010

I have machine that I used to VNC to on my network with Remote Desktop Viewer from my Fedora 12. When I first connected I checked the checkbox that I wanted to store the pw. Now the pw on the other machine has changed but Remote Desktop Viewer does not ask for a new password, it just gives me a black screen, like I am connected but I can't see anything. I'd like to know if anyone knows where this pw data is stored on the system so I can start fresh. I already tried uninstalling Remote Desktop Viewer and installing it again.

View 1 Replies View Related

Debian :: In Which Files Boot Errors Are Stored?

Jan 12, 2016

Debian 8 faild to boot normally, thowing several screens of error messages. Then it suggested to enter root pw and do some maintenance, and upon accepting my root pw it booted me into command line.I guess, those screens of errors are saved to some log files - if this is the case, in which files shall find it?I tried:

/var/log/syslog - an endless file, yet the records end at 28/12/2015
/var/log/dmesg - same
/var/log/boot.log - not there

View 8 Replies View Related

Ubuntu Installation :: Where Are Stored The Deb Files (for Copy Them To Other PC)?

Jan 6, 2010

Im gona install some ubuntu PCs, but the question is for dont update the N computers via web, what I need to copy from the first PC to the others for launch a program in the other N-1 PCs and have updated all (without run download on the N-1 PCs).

View 1 Replies View Related

Ubuntu :: Where Are The Temp Video Files Stored

Aug 1, 2010

In Karmic, where is the temporary file stored of a video like ..... after it is played?

View 1 Replies View Related

Ubuntu Installation :: Update And Apt-get Files Stored?

Nov 27, 2010

I am trying to install Lubuntu 10.10 in a VirtualBox 3.0.14 guest on Mac OS X 10.4 with the hopes of getting Guest Additions installed and working.

From prior experience I tend to go through the install process more than once which involves downloading the updates and any necessary apt-get files multiple times.

So, where do these files get stored? I would like to then save them to a separate disk mount, so I can use them on a subsequent install...which is second question...how can do that?

View 3 Replies View Related

Ubuntu :: Need To Access Stored Files After Disaster

Jan 4, 2011

I am new to Linux. I was running Ubuntu 10.04. While downloading software, one of my downloads changed changed my OS to Xubuntu. From browsing the available software, I surmised(wrongfully it turned out) that files starting were X files. In Synaptic, I deleted all files starting with X. This I found is a form of hari kari. When I boot up now, I have a choice of straight to Ubuntu or "Help" mode. If I boot up straight, I get to Ubuntu logo and it hangs up running the dots between red and green and I give a warm boot to restart. If I choose the "Help" route, I go thru what a windows user would call DOS commands or activity. At the end of whatever it is doing, it asks for user ID and password. I give it those and I am given a command line. I don't know what to do with this. I would like to access my stored files and save them. If nothing can be done to save them, I will just start over by reinstalling 10.04. BTW I am running 7.1 from an old boot disc. Is there some way that I can retrieve my files?

View 8 Replies View Related

Networking :: Can Apache Be Configured To Use Web Files Stored On A Nas

Feb 18, 2009

I would like to use a nas to store my web site files. Can Apache be configured to serve web files from the nas?

View 4 Replies View Related

General :: Error - The Action Could Not Be Completed Because The Name Org.freedesktop.packagekit Was Not Provided By Any .service Files

Feb 17, 2010

i recently install openoffice in fedora 12 and error occured the error is : the action could not be completed because the name org.freedesktop.packagekit was not provided by any .service files. what is link to download latest openoffice for my fedora 12,?my laptop model is asus k50in.

View 1 Replies View Related

Ubuntu One :: Downloaded Music Store Files Stored?

Apr 25, 2010

Does anyone know where the files downloaded from the Ubuntu One Music Store are stored?They are not in the Music folder or anywhere else in my home folder that I can determine, yet Rhythmbox sees them. I noticed that in the Rhythmbox preferences I can no longer specify one specific folder as a watch folder (it defaults back to "Multiple Locations Set"). I'd like to transfer the files I bought to a flash drive, but cannot find them.

View 9 Replies View Related

Security :: Change Location Of Stored Audit Files?

May 5, 2011

We have setup a separate partition to keep our audit files, but I am at a loss to figure out how to redirect the log files to be stored there instead of the default.

I am sure it is a simple matter but I have been unable to locate the information.

View 1 Replies View Related

Ubuntu :: Search Files Of A Particular Extension?

May 8, 2011

any utility to search for a file of a particular extension like search for all .txt files only

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved