Size: 1969
Comment: Moved page from /wikiguide/xfprot, added title, added cats
|
← Revision 4 as of 2009-07-13 14:58:58 ⇥
Size: 1982
Comment: removed from CategoryCleanup and tagged
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<Include(Tag/NeedsExpansion)>> |
|
Line 3: | Line 5: |
||<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;"><<TableOfContents(2)>>|| |
Line 5: | Line 7: |
[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]]. |
Line 11: | Line 13: |
{{{ tar -zxvf xfprot-xx.tar.gz (xx being the file version we downloaded) | {{{ tar -zxvf xfprot-xx.tar.gz (xx being the file version we downloaded) |
Line 23: | Line 26: |
{{{ xfprot: starting... | {{{ xfprot: starting... |
Line 37: | Line 41: |
{{{ /usr/local/f-prot/f-prot | {{{ /usr/local/f-prot/f-prot |
Line 59: | Line 64: |
CategorySoftware CategorySecurity CategoryCleanup | CategorySoftware CategorySecurity |
|
Needs Expansion |
#title F-Prot Antivirus
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!