Difference between revisions of "SUNScholar/Curation"

From Libopedia
Jump to navigation Jump to search
Line 3: Line 3:
 
</center>
 
</center>
  
==Step 1==
 
 
Install the "clamav-daemon" software by typing as follows.
 
Install the "clamav-daemon" software by typing as follows.
 
  sudo apt-get install clamav-daemon
 
  sudo apt-get install clamav-daemon
Line 15: Line 14:
 
Then restart the clamav daemon by typing as follows.
 
Then restart the clamav daemon by typing as follows.
 
  sudo /etc/init.d/clamav-daemon restart
 
  sudo /etc/init.d/clamav-daemon restart
 
==Step 2==
 
Enable the curation task as per the DSpace documentation.
 
*https://wiki.duraspace.org/display/DSDOC3x/Curation+System
 
* https://wiki.duraspace.org/display/DSDOC18/Curation+System
 
  
 
==References==
 
==References==
 
*https://wiki.duraspace.org/display/DSDOC4x/Curation+System
 
*https://wiki.duraspace.org/display/DSDOC4x/Curation+System
 +
*https://wiki.duraspace.org/display/DSDOC3x/Curation+System
 +
*https://wiki.duraspace.org/display/DSDOC18/Curation+System

Revision as of 12:02, 16 January 2014

Back to Customisation

Install the "clamav-daemon" software by typing as follows.

sudo apt-get install clamav-daemon

Open the clamav config file by typing as follows.

sudo nano /etc/clamav/clamd.conf

Copy and paste the following to the bottom of the file

TCPAddr 127.0.0.1
TCPSocket 3310

NANO Editor Help
CTL+O = Save the file and then press Enter
CTL+X = Exit "nano"
CTL+K = Delete line
CTL+U = Undelete line
CTL+W = Search for %%string%%
CTL+\ = Search for %%string%% and replace with $$string$$
CTL+C = Show line numbers

More info = http://en.wikipedia.org/wiki/Nano_(text_editor)


Then restart the clamav daemon by typing as follows.

sudo /etc/init.d/clamav-daemon restart

References