Diff for "XFProt"


Differences between revisions 1 and 2
Revision 1 as of 2008-01-03 11:16:51
Size: 1969
Editor: host-84-13-141-137
Comment: Moved page from /wikiguide/xfprot, added title, added cats
Revision 2 as of 2008-06-27 10:15:24
Size: 1977
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''[[BR]][[TableOfContents(2)]]|| ||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''<<BR>><<TableOfContents(2)>>||
Line 5: Line 5:
[http://www.f-prot.com/products/home_use/linux/ F-Prot for Linux] is a free command line antivirus scanner. A couple of frontends have been written to go with it, providing more user-friendly GUIs (e.g. [http://www.kde-apps.org/content/show.php?content=10381 QtFProt] and [http://web.tiscali.it/sharp/xfprot XFprot]). F-Prot and QtFprot can be downloaded using Synaptic/Adept. XFProt can be downloaded from [http://web.tiscali.it/sharp/xfprot the developer's web site]. [[http://www.f-prot.com/products/home_use/linux/|F-Prot for Linux]] is a free command line antivirus scanner. A couple of frontends have been written to go with it, providing more user-friendly GUIs (e.g. [[http://www.kde-apps.org/content/show.php?content=10381|QtFProt]] and [[http://web.tiscali.it/sharp/xfprot|XFprot]]). F-Prot and QtFprot can be downloaded using Synaptic/Adept. XFProt can be downloaded from [[http://web.tiscali.it/sharp/xfprot|the developer's web site]].

Contents

F-Prot for Linux is a free command line antivirus scanner. A couple of frontends have been written to go with it, providing more user-friendly GUIs (e.g. QtFProt and XFprot). F-Prot and QtFprot can be downloaded using Synaptic/Adept. XFProt can be downloaded from the developer's web site.

The Problem

We compile XFProt

{{{ tar -zxvf xfprot-xx.tar.gz (xx being the file version we downloaded) sudo ./configure sudo make sudo make install (or checkinstall) }}}

and then try to launch the program by typing

 xfprot 

in the command line, at which point we get the following error message:

{{{ xfprot: starting... xfprot: process is not dumpable xfprot: private dir found xfprot: good...private dir is not a link xfprot: set_dir_properties_and_cd_in() xfprot: setting permissions of private dir to 0700 xfprot: setting owner of private dir xfprot: chdir to private dir xfprot: check_for_bin() xfprot: access(): /usr/local/f-prot/f-prot: No such file or directory xfprot: dialog_window() }}}

and

{{{ /usr/local/f-prot/f-prot File not found! Aborting... }}}

The Reason

Ubuntu installs F-Prot for Linux by default in /usr/lib/f-prot/ but XFProt looks for it in /usr/local/f-prot

The Solution

Create a symbolic link:

 sudo ln -s /usr/lib/f-prot/ /usr/local 

and try again

 sudo  xfprot 

(NB Run it as superuser if you want the scan engine to have access to restricted folders during the analysis)

Hope it works for you!


CategorySoftware CategorySecurity CategoryCleanup

XFProt (last edited 2009-07-13 14:58:58 by 66)