Mailing List Archive

[clamav-users] Need help | Install clamav from source package
Hello All,

I install clamav on Suse12 SP2 using source code tar file : -clamav-0.103.1.tar.gz, able to update freshclam as well,
By using below commands:-


1) Untar tar file clamav-0.103.1.tar.gz

2) Cd clamav-0.103.1

3) ./configure --prefix=/usr/local/clamav

4) Make

5) Make install

Now I need to run the clamav as service which should manage by systemctl , as developer used to call this service in there code

I need an idea how to do configure clamav as a service, which install using source code.
Any Link or suggestion will be highly appreciated.

Thanks in Advance




If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
I think that you would review it's config file, probably located at
_/etc/clamd.conf_? (which is it's location in opensuse 15.2) , then
start the service with

_systemctl start clamd_

and also if you want it to start at boot up.

_systemctl enable clamd_



On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>
> Hello All,
>
> I install clamav on Suse12 SP2 using source code tar file :
> -clamav-0.103.1.tar.gz, able to update freshclam as well,
> By using below commands:-
>
> ?
>
> 1)????? Untar tar file clamav-0.103.1.tar.gz
>
> 2)????? Cd clamav-0.103.1
>
> 3)????? ./configure --prefix=/usr/local/clamav
>
> 4)????? Make
>
> 5)????? Make install
>
> ?
>
> Now I need to run the clamav as service which should manage by
> systemctl , as developer used to call this service in there code
>
> ?
>
> I need an idea how to do configure clamav as a service, which install
> using source code.
>
> Any Link or suggestion will be highly appreciated.
>
> Thanks in Advance
>
> ?
>
> ?
>
> ?
>
> Default Disclaimer Daimler AG
> If you are not the addressee, please inform us immediately that you
> have received this e-mail by mistake, and delete it. We thank you for
> your support.
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Well. You need to install systemd service files. They are probably included
in source package?

Eero

On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca>
wrote:

> I think that you would review it's config file, probably located at
> */etc/clamd.conf* (which is it's location in opensuse 15.2) , then start
> the service with
>
> *systemctl start clamd*
>
> and also if you want it to start at boot up.
>
> *systemctl enable clamd*
>
>
>
> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>
> Hello All,
>
> I install clamav on Suse12 SP2 using source code tar file :
> -clamav-0.103.1.tar.gz, able to update freshclam as well,
> By using below commands:-
>
>
>
> 1) Untar tar file clamav-0.103.1.tar.gz
>
> 2) Cd clamav-0.103.1
>
> 3) ./configure --prefix=/usr/local/clamav
>
> 4) Make
>
> 5) Make install
>
>
>
> Now I need to run the clamav as service which should manage by systemctl ,
> as developer used to call this service in there code
>
>
>
> I need an idea how to do configure clamav as a service, which install
> using source code.
>
> Any Link or suggestion will be highly appreciated.
>
> Thanks in Advance
>
>
>
>
>
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
> _______________________________________________
>
> clamav-users mailing listclamav-users@lists.clamav.nethttps://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:https://github.com/vrtadmin/clamav-faq
> http://www.clamav.net/contact.html#ml
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Yes. I had just assumed they would be. They were from the package I
installed.

Dave.

On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
> Well. You need to install systemd service files. They are probably
> included in source package?
>
> Eero
>
> On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca
> <mailto:dave@davidcopeland.ca>> wrote:
>
> I think that you would review it's config file, probably located
> at _/etc/clamd.conf_  (which is it's location in opensuse 15.2) ,
> then start the service with
>
> _systemctl start clamd_
>
> and also if you want it to start at boot up.
>
> _systemctl enable clamd_
>
>
>
> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>>
>> Hello All,
>>
>> I install clamav on Suse12 SP2 using source code tar file :
>> -clamav-0.103.1.tar.gz, able to update freshclam as well,
>> By using below commands:-
>>
>>  
>>
>> 1)      Untar tar file clamav-0.103.1.tar.gz
>>
>> 2)      Cd clamav-0.103.1
>>
>> 3)      ./configure --prefix=/usr/local/clamav
>>
>> 4)      Make
>>
>> 5)      Make install
>>
>>  
>>
>> Now I need to run the clamav as service which should manage by
>> systemctl , as developer used to call this service in there code
>>
>>  
>>
>> I need an idea how to do configure clamav as a service, which
>> install using source code.
>>
>> Any Link or suggestion will be highly appreciated.
>>
>> Thanks in Advance
>>
>>  
>>
>>  
>>
>>  
>>
>>
>> If you are not the addressee, please inform us immediately that
>> you have received this e-mail by mistake, and delete it. We thank
>> you for your support.
>>
>>
>> _______________________________________________
>>
>> clamav-users mailing list
>> clamav-users@lists.clamav.net <mailto:clamav-users@lists.clamav.net>
>> https://lists.clamav.net/mailman/listinfo/clamav-users <https://lists.clamav.net/mailman/listinfo/clamav-users>
>>
>>
>> Help us build a comprehensive ClamAV guide:
>> https://github.com/vrtadmin/clamav-faq <https://github.com/vrtadmin/clamav-faq>
>>
>> http://www.clamav.net/contact.html#ml <http://www.clamav.net/contact.html#ml>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net <mailto:clamav-users@lists.clamav.net>
> https://lists.clamav.net/mailman/listinfo/clamav-users
> <https://lists.clamav.net/mailman/listinfo/clamav-users>
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
> <https://github.com/vrtadmin/clamav-faq>
>
> http://www.clamav.net/contact.html#ml
> <http://www.clamav.net/contact.html#ml>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
They must be in correct place for systemd and path for executable must be
modified.

Eero

On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca>
wrote:

> Yes. I had just assumed they would be. They were from the package I
> installed.
>
> Dave.
>
> On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
>
> Well. You need to install systemd service files. They are probably
> included in source package?
>
> Eero
>
> On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
>> I think that you would review it's config file, probably located at
>> */etc/clamd.conf* (which is it's location in opensuse 15.2) , then
>> start the service with
>>
>> *systemctl start clamd*
>>
>> and also if you want it to start at boot up.
>>
>> *systemctl enable clamd*
>>
>>
>>
>> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>>
>> Hello All,
>>
>> I install clamav on Suse12 SP2 using source code tar file :
>> -clamav-0.103.1.tar.gz, able to update freshclam as well,
>> By using below commands:-
>>
>>
>>
>> 1) Untar tar file clamav-0.103.1.tar.gz
>>
>> 2) Cd clamav-0.103.1
>>
>> 3) ./configure --prefix=/usr/local/clamav
>>
>> 4) Make
>>
>> 5) Make install
>>
>>
>>
>> Now I need to run the clamav as service which should manage by systemctl
>> , as developer used to call this service in there code
>>
>>
>>
>> I need an idea how to do configure clamav as a service, which install
>> using source code.
>>
>> Any Link or suggestion will be highly appreciated.
>>
>> Thanks in Advance
>>
>>
>>
>>
>>
>>
>>
>> If you are not the addressee, please inform us immediately that you have
>> received this e-mail by mistake, and delete it. We thank you for your
>> support.
>>
>>
>> _______________________________________________
>>
>> clamav-users mailing listclamav-users@lists.clamav.nethttps://lists.clamav.net/mailman/listinfo/clamav-users
>>
>>
>> Help us build a comprehensive ClamAV guide:https://github.com/vrtadmin/clamav-faq
>> http://www.clamav.net/contact.html#ml
>>
>>
>>
>> _______________________________________________
>>
>> clamav-users mailing list
>> clamav-users@lists.clamav.net
>> https://lists.clamav.net/mailman/listinfo/clamav-users
>>
>>
>> Help us build a comprehensive ClamAV guide:
>> https://github.com/vrtadmin/clamav-faq
>>
>> http://www.clamav.net/contact.html#ml
>>
>
> _______________________________________________
>
> clamav-users mailing listclamav-users@lists.clamav.nethttps://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:https://github.com/vrtadmin/clamav-faq
> http://www.clamav.net/contact.html#ml
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Hello All, while installing from the source package, not able to get systemd file, I need help from same.
If someone already tried earlier please help me.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: clamav-users <clamav-users-bounces@lists.clamav.net> On Behalf Of Eero Volotinen
Sent: Friday, March 26, 2021 11:02 PM
Cc: ClamAV users ML <clamav-users@lists.clamav.net>
Subject: Re: [clamav-users] Need help | Install clamav from source package

They must be in correct place for systemd and path for executable must be modified.

Eero

On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
Yes. I had just assumed they would be. They were from the package I installed.

Dave.

On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
Well. You need to install systemd service files. They are probably included in source package?

Eero

On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
I think that you would review it's config file, probably located at /etc/clamd.conf (which is it's location in opensuse 15.2) , then start the service with

systemctl start clamd

and also if you want it to start at boot up.

systemctl enable clamd



On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
Hello All,

I install clamav on Suse12 SP2 using source code tar file : -clamav-0.103.1.tar.gz, able to update freshclam as well,
By using below commands:-


1) Untar tar file clamav-0.103.1.tar.gz

2) Cd clamav-0.103.1

3) ./configure --prefix=/usr/local/clamav

4) Make

5) Make install

Now I need to run the clamav as service which should manage by systemctl , as developer used to call this service in there code

I need an idea how to do configure clamav as a service, which install using source code.
Any Link or suggestion will be highly appreciated.

Thanks in Advance




If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml


_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Why you are installing from sources and not from binary packages?

Anyway you can extract needed systemd files from binary packages and modify
as needed (mainly the paths)

Eero

On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <
clamav-users@lists.clamav.net> wrote:

> Hello All, while installing from the source package, not able to get
> systemd file, I need help from same.
> If someone already tried earlier please help me.
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* clamav-users <clamav-users-bounces@lists.clamav.net> *On Behalf
> Of *Eero Volotinen
> *Sent:* Friday, March 26, 2021 11:02 PM
> *Cc:* ClamAV users ML <clamav-users@lists.clamav.net>
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> They must be in correct place for systemd and path for executable must be
> modified.
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> Yes. I had just assumed they would be. They were from the package I
> installed.
>
> Dave.
>
> On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
>
> Well. You need to install systemd service files. They are probably
> included in source package?
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> I think that you would review it's config file, probably located at
> */etc/clamd.conf* (which is it's location in opensuse 15.2) , then start
> the service with
>
> *systemctl start clamd*
>
> and also if you want it to start at boot up.
>
> *systemctl enable clamd*
>
>
>
> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>
> Hello All,
>
> I install clamav on Suse12 SP2 using source code tar file :
> -clamav-0.103.1.tar.gz, able to update freshclam as well,
> By using below commands:-
>
>
>
> 1) Untar tar file clamav-0.103.1.tar.gz
>
> 2) Cd clamav-0.103.1
>
> 3) ./configure --prefix=/usr/local/clamav
>
> 4) Make
>
> 5) Make install
>
>
>
> Now I need to run the clamav as service which should manage by systemctl ,
> as developer used to call this service in there code
>
>
>
> I need an idea how to do configure clamav as a service, which install
> using source code.
>
> Any Link or suggestion will be highly appreciated.
>
> Thanks in Advance
>
>
>
>
>
>
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Hello Eero,
Thanks for your email, we have suse12 sp2 while installing using zypper install clamav its shows available package is clamav 0.99 version which pretty old so we choose to install from source which have updated one 103.

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Can you please provide me some more details, really it would be very helpful.


Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: Eero Volotinen <eero.volotinen@iki.fi>
Sent: Sunday, March 28, 2021 7:40 PM
To: ClamAV users ML <clamav-users@lists.clamav.net>
Cc: Singh, Amit A. (623) <amit.a.singh@daimler.com>
Subject: Re: [clamav-users] Need help | Install clamav from source package

Why you are installing from sources and not from binary packages?

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Eero

On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>> wrote:
Hello All, while installing from the source package, not able to get systemd file, I need help from same.
If someone already tried earlier please help me.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: clamav-users <clamav-users-bounces@lists.clamav.net<mailto:clamav-users-bounces@lists.clamav.net>> On Behalf Of Eero Volotinen
Sent: Friday, March 26, 2021 11:02 PM
Cc: ClamAV users ML <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>>
Subject: Re: [clamav-users] Need help | Install clamav from source package

They must be in correct place for systemd and path for executable must be modified.

Eero

On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
Yes. I had just assumed they would be. They were from the package I installed.

Dave.

On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
Well. You need to install systemd service files. They are probably included in source package?

Eero

On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
I think that you would review it's config file, probably located at /etc/clamd.conf (which is it's location in opensuse 15.2) , then start the service with

systemctl start clamd

and also if you want it to start at boot up.

systemctl enable clamd



On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
Hello All,

I install clamav on Suse12 SP2 using source code tar file : -clamav-0.103.1.tar.gz, able to update freshclam as well,
By using below commands:-


1) Untar tar file clamav-0.103.1.tar.gz

2) Cd clamav-0.103.1

3) ./configure --prefix=/usr/local/clamav

4) Make

5) Make install

Now I need to run the clamav as service which should manage by systemctl , as developer used to call this service in there code

I need an idea how to do configure clamav as a service, which install using source code.
Any Link or suggestion will be highly appreciated.

Thanks in Advance




If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml


_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Well. Extract systemd files from old packages

https://blog.packagecloud.io/eng/2015/10/13/inspect-extract-contents-rpm-packages/

and copy them under systemd locations. Modify paths to point location of
new installations.

reload systemd configuration and start with systemd files.



Eero

On Sun 28. Mar 2021 at 17.16, <amit.a.singh@daimler.com> wrote:

> Hello Eero,
> Thanks for your email, we have suse12 sp2 while installing using zypper
> install clamav its shows available package is clamav 0.99 version which
> pretty old so we choose to install from source which have updated one 103.
>
> Anyway you can extract needed systemd files from binary packages and
> modify as needed (mainly the paths)
>
>
> Can you please provide me some more details, really it would be very
> helpful.
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* Eero Volotinen <eero.volotinen@iki.fi>
> *Sent:* Sunday, March 28, 2021 7:40 PM
> *To:* ClamAV users ML <clamav-users@lists.clamav.net>
> *Cc:* Singh, Amit A. (623) <amit.a.singh@daimler.com>
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> Why you are installing from sources and not from binary packages?
>
>
>
> Anyway you can extract needed systemd files from binary packages and
> modify as needed (mainly the paths)
>
>
>
> Eero
>
>
>
> On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <
> clamav-users@lists.clamav.net> wrote:
>
> Hello All, while installing from the source package, not able to get
> systemd file, I need help from same.
> If someone already tried earlier please help me.
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* clamav-users <clamav-users-bounces@lists.clamav.net> *On Behalf
> Of *Eero Volotinen
> *Sent:* Friday, March 26, 2021 11:02 PM
> *Cc:* ClamAV users ML <clamav-users@lists.clamav.net>
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> They must be in correct place for systemd and path for executable must be
> modified.
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> Yes. I had just assumed they would be. They were from the package I
> installed.
>
> Dave.
>
> On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
>
> Well. You need to install systemd service files. They are probably
> included in source package?
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> I think that you would review it's config file, probably located at
> */etc/clamd.conf* (which is it's location in opensuse 15.2) , then start
> the service with
>
> *systemctl start clamd*
>
> and also if you want it to start at boot up.
>
> *systemctl enable clamd*
>
>
>
> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>
> Hello All,
>
> I install clamav on Suse12 SP2 using source code tar file :
> -clamav-0.103.1.tar.gz, able to update freshclam as well,
> By using below commands:-
>
>
>
> 1) Untar tar file clamav-0.103.1.tar.gz
>
> 2) Cd clamav-0.103.1
>
> 3) ./configure --prefix=/usr/local/clamav
>
> 4) Make
>
> 5) Make install
>
>
>
> Now I need to run the clamav as service which should manage by systemctl ,
> as developer used to call this service in there code
>
>
>
> I need an idea how to do configure clamav as a service, which install
> using source code.
>
> Any Link or suggestion will be highly appreciated.
>
> Thanks in Advance
>
>
>
>
>
>
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Thanks a lot Eero , will update you the status ?

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: Eero Volotinen <eero.volotinen@iki.fi>
Sent: Sunday, March 28, 2021 7:53 PM
To: Singh, Amit A. (623) <amit.a.singh@daimler.com>
Cc: clamav-users@lists.clamav.net
Subject: Re: [clamav-users] Need help | Install clamav from source package

Well. Extract systemd files from old packages

https://blog.packagecloud.io/eng/2015/10/13/inspect-extract-contents-rpm-packages/

and copy them under systemd locations. Modify paths to point location of new installations.

reload systemd configuration and start with systemd files.



Eero

On Sun 28. Mar 2021 at 17.16, <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>> wrote:
Hello Eero,
Thanks for your email, we have suse12 sp2 while installing using zypper install clamav its shows available package is clamav 0.99 version which pretty old so we choose to install from source which have updated one 103.

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Can you please provide me some more details, really it would be very helpful.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: Eero Volotinen <eero.volotinen@iki.fi<mailto:eero.volotinen@iki.fi>>
Sent: Sunday, March 28, 2021 7:40 PM
To: ClamAV users ML <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>>
Cc: Singh, Amit A. (623) <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>>
Subject: Re: [clamav-users] Need help | Install clamav from source package

Why you are installing from sources and not from binary packages?

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Eero

On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>> wrote:
Hello All, while installing from the source package, not able to get systemd file, I need help from same.
If someone already tried earlier please help me.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: clamav-users <clamav-users-bounces@lists.clamav.net<mailto:clamav-users-bounces@lists.clamav.net>> On Behalf Of Eero Volotinen
Sent: Friday, March 26, 2021 11:02 PM
Cc: ClamAV users ML <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>>
Subject: Re: [clamav-users] Need help | Install clamav from source package

They must be in correct place for systemd and path for executable must be modified.

Eero

On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
Yes. I had just assumed they would be. They were from the package I installed.

Dave.

On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
Well. You need to install systemd service files. They are probably included in source package?

Eero

On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
I think that you would review it's config file, probably located at /etc/clamd.conf (which is it's location in opensuse 15.2) , then start the service with

systemctl start clamd

and also if you want it to start at boot up.

systemctl enable clamd



On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
Hello All,

I install clamav on Suse12 SP2 using source code tar file : -clamav-0.103.1.tar.gz, able to update freshclam as well,
By using below commands:-


1) Untar tar file clamav-0.103.1.tar.gz

2) Cd clamav-0.103.1

3) ./configure --prefix=/usr/local/clamav

4) Make

5) Make install

Now I need to run the clamav as service which should manage by systemctl , as developer used to call this service in there code

I need an idea how to do configure clamav as a service, which install using source code.
Any Link or suggestion will be highly appreciated.

Thanks in Advance




If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml


_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
nOn 28.03.21 14:16, amit.a.singh--- via clamav-users wrote:
>Thanks for your email, we have suse12 sp2 while installing using zypper
> install clamav its shows available package is clamav 0.99 version which
> pretty old so we choose to install from source which have updated one 103.

doesn't this fit?

https://scc.suse.com/packages?name=SUSE Linux Enterprise Server&version=12.2&arch=x86_64&query=clamav&module=


--
Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
LSD will make your ECS screen display 16.7 million colors

_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Or keep the old clamav packages installed and just modify their systemd
files to point new binaries.

Anyway this might cause issues as system might still use old binaries from
old locations.

You need to replace old binaries with symbolic links and so on..

Eero

On Sun 28. Mar 2021 at 17.26, <amit.a.singh@daimler.com> wrote:

> Thanks a lot Eero , will update you the status J
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* Eero Volotinen <eero.volotinen@iki.fi>
> *Sent:* Sunday, March 28, 2021 7:53 PM
> *To:* Singh, Amit A. (623) <amit.a.singh@daimler.com>
> *Cc:* clamav-users@lists.clamav.net
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> Well. Extract systemd files from old packages
>
>
>
>
> https://blog.packagecloud.io/eng/2015/10/13/inspect-extract-contents-rpm-packages/
>
>
>
> and copy them under systemd locations. Modify paths to point location of
> new installations.
>
>
>
> reload systemd configuration and start with systemd files.
>
>
>
>
>
>
>
> Eero
>
>
>
> On Sun 28. Mar 2021 at 17.16, <amit.a.singh@daimler.com> wrote:
>
> Hello Eero,
> Thanks for your email, we have suse12 sp2 while installing using zypper
> install clamav its shows available package is clamav 0.99 version which
> pretty old so we choose to install from source which have updated one 103.
>
> Anyway you can extract needed systemd files from binary packages and
> modify as needed (mainly the paths)
>
>
> Can you please provide me some more details, really it would be very
> helpful.
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* Eero Volotinen <eero.volotinen@iki.fi>
> *Sent:* Sunday, March 28, 2021 7:40 PM
> *To:* ClamAV users ML <clamav-users@lists.clamav.net>
> *Cc:* Singh, Amit A. (623) <amit.a.singh@daimler.com>
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> Why you are installing from sources and not from binary packages?
>
>
>
> Anyway you can extract needed systemd files from binary packages and
> modify as needed (mainly the paths)
>
>
>
> Eero
>
>
>
> On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <
> clamav-users@lists.clamav.net> wrote:
>
> Hello All, while installing from the source package, not able to get
> systemd file, I need help from same.
> If someone already tried earlier please help me.
>
>
>
> Mit freundlichen Grüßen/Kind Regards
> Amit Singh
>
> Senior Consultant-IT/GIC
>
> --------------------------------------------
> Mercedes-Benz Research and Development India Private Limited.
> Embassy Crest
>
> Whitefield Road, Bangalore 560066
> <https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
>
> Mobile : +91 9902949155
>
> email : amit.a.singh@daimler.com
>
>
>
> *From:* clamav-users <clamav-users-bounces@lists.clamav.net> *On Behalf
> Of *Eero Volotinen
> *Sent:* Friday, March 26, 2021 11:02 PM
> *Cc:* ClamAV users ML <clamav-users@lists.clamav.net>
> *Subject:* Re: [clamav-users] Need help | Install clamav from source
> package
>
>
>
> They must be in correct place for systemd and path for executable must be
> modified.
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> Yes. I had just assumed they would be. They were from the package I
> installed.
>
> Dave.
>
> On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
>
> Well. You need to install systemd service files. They are probably
> included in source package?
>
>
>
> Eero
>
>
>
> On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca>
> wrote:
>
> I think that you would review it's config file, probably located at
> */etc/clamd.conf* (which is it's location in opensuse 15.2) , then start
> the service with
>
> *systemctl start clamd*
>
> and also if you want it to start at boot up.
>
> *systemctl enable clamd*
>
>
>
> On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
>
> Hello All,
>
> I install clamav on Suse12 SP2 using source code tar file :
> -clamav-0.103.1.tar.gz, able to update freshclam as well,
> By using below commands:-
>
>
>
> 1) Untar tar file clamav-0.103.1.tar.gz
>
> 2) Cd clamav-0.103.1
>
> 3) ./configure --prefix=/usr/local/clamav
>
> 4) Make
>
> 5) Make install
>
>
>
> Now I need to run the clamav as service which should manage by systemctl ,
> as developer used to call this service in there code
>
>
>
> I need an idea how to do configure clamav as a service, which install
> using source code.
>
> Any Link or suggestion will be highly appreciated.
>
> Thanks in Advance
>
>
>
>
>
>
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
>
> _______________________________________________
>
>
>
> clamav-users mailing list
>
> clamav-users@lists.clamav.net
>
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
>
>
>
> Help us build a comprehensive ClamAV guide:
>
> https://github.com/vrtadmin/clamav-faq
>
>
>
> http://www.clamav.net/contact.html#ml
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
>
>
> If you are not the addressee, please inform us immediately that you have
> received this e-mail by mistake, and delete it. We thank you for your
> support.
>
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
I search for my system module 0.99 is available :)



-----Original Message-----
From: clamav-users <clamav-users-bounces@lists.clamav.net> On Behalf Of Matus UHLAR - fantomas
Sent: Sunday, March 28, 2021 8:03 PM
To: clamav-users@lists.clamav.net
Subject: Re: [clamav-users] Need help | Install clamav from source package

nOn 28.03.21 14:16, amit.a.singh--- via clamav-users wrote:
>Thanks for your email, we have suse12 sp2 while installing using
>zypper install clamav its shows available package is clamav 0.99
>version which pretty old so we choose to install from source which have updated one 103.

doesn't this fit?

https://scc.suse.com/packages?name=SUSE Linux Enterprise Server&version=12.2&arch=x86_64&query=clamav&module=


--
Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
LSD will make your ECS screen display 16.7 million colors

_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Citeren "amit.a.singh--- via clamav-users" <clamav-users@lists.clamav.net>:

> Hello Eero,
> Thanks for your email, we have suse12 sp2 while installing using
> zypper install clamav its shows available package is clamav 0.99
> version which pretty old so we choose to install from source which
> have updated one 103.

The LTSS for SLE 12 SP2 ends at the end of this month (in just three
days), so it should come as no surprise that the latest ClamAV is not
available anymore. You're already three service packs behind,
installing ClamAV should be the least of your worries.

There's a good chance that SLE 12 SP5 will provide a more recent
ClamAV than 0.99.


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Thanks Eero, I ll try both the ways and update.


From: Eero Volotinen <eero.volotinen@iki.fi>
Sent: Sunday, March 28, 2021 8:05 PM
To: Singh, Amit A. (623) <amit.a.singh@daimler.com>
Cc: clamav-users@lists.clamav.net
Subject: Re: [clamav-users] Need help | Install clamav from source package

Or keep the old clamav packages installed and just modify their systemd files to point new binaries.

Anyway this might cause issues as system might still use old binaries from old locations.

You need to replace old binaries with symbolic links and so on..

Eero

On Sun 28. Mar 2021 at 17.26, <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>> wrote:
Thanks a lot Eero , will update you the status ?

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: Eero Volotinen <eero.volotinen@iki.fi<mailto:eero.volotinen@iki.fi>>
Sent: Sunday, March 28, 2021 7:53 PM
To: Singh, Amit A. (623) <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>>
Cc: clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
Subject: Re: [clamav-users] Need help | Install clamav from source package

Well. Extract systemd files from old packages

https://blog.packagecloud.io/eng/2015/10/13/inspect-extract-contents-rpm-packages/

and copy them under systemd locations. Modify paths to point location of new installations.

reload systemd configuration and start with systemd files.



Eero

On Sun 28. Mar 2021 at 17.16, <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>> wrote:
Hello Eero,
Thanks for your email, we have suse12 sp2 while installing using zypper install clamav its shows available package is clamav 0.99 version which pretty old so we choose to install from source which have updated one 103.

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Can you please provide me some more details, really it would be very helpful.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: Eero Volotinen <eero.volotinen@iki.fi<mailto:eero.volotinen@iki.fi>>
Sent: Sunday, March 28, 2021 7:40 PM
To: ClamAV users ML <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>>
Cc: Singh, Amit A. (623) <amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>>
Subject: Re: [clamav-users] Need help | Install clamav from source package

Why you are installing from sources and not from binary packages?

Anyway you can extract needed systemd files from binary packages and modify as needed (mainly the paths)

Eero

On Sun 28. Mar 2021 at 16.53, amit.a.singh--- via clamav-users <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>> wrote:
Hello All, while installing from the source package, not able to get systemd file, I need help from same.
If someone already tried earlier please help me.

Mit freundlichen Grüßen/Kind Regards
Amit Singh
Senior Consultant-IT/GIC
--------------------------------------------
Mercedes-Benz Research and Development India Private Limited.
Embassy Crest
Whitefield Road, Bangalore 560066<https://www.google.com/maps/search/Whitefield+Road,+Bangalore+560066?entry=gmail&source=g>
Mobile : +91 9902949155
email : amit.a.singh@daimler.com<mailto:amit.a.singh@daimler.com>

From: clamav-users <clamav-users-bounces@lists.clamav.net<mailto:clamav-users-bounces@lists.clamav.net>> On Behalf Of Eero Volotinen
Sent: Friday, March 26, 2021 11:02 PM
Cc: ClamAV users ML <clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>>
Subject: Re: [clamav-users] Need help | Install clamav from source package

They must be in correct place for systemd and path for executable must be modified.

Eero

On Fri, Mar 26, 2021 at 7:29 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
Yes. I had just assumed they would be. They were from the package I installed.

Dave.

On 2021-03-26 1:24 p.m., Eero Volotinen wrote:
Well. You need to install systemd service files. They are probably included in source package?

Eero

On Fri, Mar 26, 2021 at 6:37 PM David Copeland <dave@davidcopeland.ca<mailto:dave@davidcopeland.ca>> wrote:
I think that you would review it's config file, probably located at /etc/clamd.conf (which is it's location in opensuse 15.2) , then start the service with

systemctl start clamd

and also if you want it to start at boot up.

systemctl enable clamd



On 2021-03-26 11:28 a.m., amit.a.singh--- via clamav-users wrote:
Hello All,

I install clamav on Suse12 SP2 using source code tar file : -clamav-0.103.1.tar.gz, able to update freshclam as well,
By using below commands:-


1) Untar tar file clamav-0.103.1.tar.gz

2) Cd clamav-0.103.1

3) ./configure --prefix=/usr/local/clamav

4) Make

5) Make install

Now I need to run the clamav as service which should manage by systemctl , as developer used to call this service in there code

I need an idea how to do configure clamav as a service, which install using source code.
Any Link or suggestion will be highly appreciated.

Thanks in Advance




If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml


_______________________________________________



clamav-users mailing list

clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>

https://lists.clamav.net/mailman/listinfo/clamav-users





Help us build a comprehensive ClamAV guide:

https://github.com/vrtadmin/clamav-faq



http://www.clamav.net/contact.html#ml


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.


_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net<mailto:clamav-users@lists.clamav.net>
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml

If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.



If you are not the addressee, please inform us immediately that you have received this e-mail by mistake, and delete it. We thank you for your support.
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Well. It works and requires valid subscription to get updates.

Sles 12 SP2 is a bit old system. Maybe it’s wise to update system to latest
sp version?

Eero

On Sun 28. Mar 2021 at 17.35, Matus UHLAR - fantomas <uhlar@fantomas.sk>
wrote:

> nOn 28.03.21 14:16, amit.a.singh--- via clamav-users wrote:
> >Thanks for your email, we have suse12 sp2 while installing using zypper
> > install clamav its shows available package is clamav 0.99 version which
> > pretty old so we choose to install from source which have updated one
> 103.
>
> doesn't this fit?
>
> https://scc.suse.com/packages?name=SUSE Linux Enterprise
> Server&version=12.2&arch=x86_64&query=clamav&module=
>
>
> --
> Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
> Warning: I wish NOT to receive e-mail advertising to this address.
> Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
> LSD will make your ECS screen display 16.7 million colors
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Easiest way is to renew subscription ($$$$) and then just update the latest
version.

Eero

On Sun 28. Mar 2021 at 17.42, Arjen de Korte via clamav-users <
clamav-users@lists.clamav.net> wrote:

> Citeren "amit.a.singh--- via clamav-users" <clamav-users@lists.clamav.net
> >:
>
> > Hello Eero,
> > Thanks for your email, we have suse12 sp2 while installing using
> > zypper install clamav its shows available package is clamav 0.99
> > version which pretty old so we choose to install from source which
> > have updated one 103.
>
> The LTSS for SLE 12 SP2 ends at the end of this month (in just three
> days), so it should come as no surprise that the latest ClamAV is not
> available anymore. You're already three service packs behind,
> installing ClamAV should be the least of your worries.
>
> There's a good chance that SLE 12 SP5 will provide a more recent
> ClamAV than 0.99.
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
>> nOn 28.03.21 14:16, amit.a.singh--- via clamav-users wrote:
>> >Thanks for your email, we have suse12 sp2 while installing using zypper
>> > install clamav its shows available package is clamav 0.99 version which
>> > pretty old so we choose to install from source which have updated one
>> 103.

>On Sun 28. Mar 2021 at 17.35, Matus UHLAR - fantomas <uhlar@fantomas.sk>
>wrote:
>> doesn't this fit?
>>
>> https://scc.suse.com/packages?name=SUSE Linux Enterprise
>> Server&version=12.2&arch=x86_64&query=clamav&module=

On 28.03.21 17:42, Eero Volotinen wrote:
>Well. It works and requires valid subscription to get updates.
>
>Sles 12 SP2 is a bit old system. Maybe it’s wise to update system to latest
>sp version?

well, this is the main problem then.

outdated system that is not kept up to date, and the result is that the
admin has to make it work.

making such system contain current packages is then job that SuSE
maintainers do if you
--
Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
There's a long-standing bug relating to the x86 architecture that
allows you to install Windows. -- Matthew D. Fuller

_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Well. Sounds like system is not licensed, so impossible to update to latest
version?

It contains so many security holes and so on..

Eero

On Sun, Mar 28, 2021 at 6:56 PM Matus UHLAR - fantomas <uhlar@fantomas.sk>
wrote:

> >> nOn 28.03.21 14:16, amit.a.singh--- via clamav-users wrote:
> >> >Thanks for your email, we have suse12 sp2 while installing using
> zypper
> >> > install clamav its shows available package is clamav 0.99 version
> which
> >> > pretty old so we choose to install from source which have updated one
> >> 103.
>
> >On Sun 28. Mar 2021 at 17.35, Matus UHLAR - fantomas <uhlar@fantomas.sk>
> >wrote:
> >> doesn't this fit?
> >>
> >> https://scc.suse.com/packages?name=SUSE Linux Enterprise
> >> Server&version=12.2&arch=x86_64&query=clamav&module=
>
> On 28.03.21 17:42, Eero Volotinen wrote:
> >Well. It works and requires valid subscription to get updates.
> >
> >Sles 12 SP2 is a bit old system. Maybe it’s wise to update system to
> latest
> >sp version?
>
> well, this is the main problem then.
>
> outdated system that is not kept up to date, and the result is that the
> admin has to make it work.
>
> making such system contain current packages is then job that SuSE
> maintainers do if you
> --
> Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
> Warning: I wish NOT to receive e-mail advertising to this address.
> Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
> There's a long-standing bug relating to the x86 architecture that
> allows you to install Windows. -- Matthew D. Fuller
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Could you take the latest OpenSuSE source package and build that ?

That might be an easier way to get SuSE-friendly config files
than starting from the source on the ClamAV site.

If the latest ClamAV source package on the latest OpenSuSE doesn't work,
try the latest ClamAV source from an older, supported, OpenSuSE
which might be more like your SuSE 12.

--
Andrew C. Aitchison Kendal, UK
andrew@aitchison.me.uk

_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
That probably works. Patching the older package with newer sources might
work also.

Eero

On Sun 28. Mar 2021 at 19.27, Andrew C Aitchison via clamav-users <
clamav-users@lists.clamav.net> wrote:

>
> Could you take the latest OpenSuSE source package and build that ?
>
> That might be an easier way to get SuSE-friendly config files
> than starting from the source on the ClamAV site.
>
> If the latest ClamAV source package on the latest OpenSuSE doesn't work,
> try the latest ClamAV source from an older, supported, OpenSuSE
> which might be more like your SuSE 12.
>
> --
> Andrew C. Aitchison Kendal, UK
> andrew@aitchison.me.uk
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Citeren Andrew C Aitchison via clamav-users <clamav-users@lists.clamav.net>:

> Could you take the latest OpenSuSE source package and build that ?

Probably not. There have been quite some changes since 0.99 and I
doubt SLE 12 SP2 will satisfy all of them. For instance, you'll need a
newer libcurl than is available. This is not for the faint of heart
and IMHO doesn't make sense for a system that is so close to being
EOL'd.




_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
Well. Clamav 1.0 probably compiles with minimal changes.

It depends on case. it might be wise to upgrade to latest sp to fix all
other security issues..

Eero

On Sun 28. Mar 2021 at 19.50, Arjen de Korte via clamav-users <
clamav-users@lists.clamav.net> wrote:

> Citeren Andrew C Aitchison via clamav-users <clamav-users@lists.clamav.net
> >:
>
> > Could you take the latest OpenSuSE source package and build that ?
>
> Probably not. There have been quite some changes since 0.99 and I
> doubt SLE 12 SP2 will satisfy all of them. For instance, you'll need a
> newer libcurl than is available. This is not for the faint of heart
> and IMHO doesn't make sense for a system that is so close to being
> EOL'd.
>
>
>
>
> _______________________________________________
>
> clamav-users mailing list
> clamav-users@lists.clamav.net
> https://lists.clamav.net/mailman/listinfo/clamav-users
>
>
> Help us build a comprehensive ClamAV guide:
> https://github.com/vrtadmin/clamav-faq
>
> http://www.clamav.net/contact.html#ml
>
Re: [clamav-users] Need help | Install clamav from source package [ In reply to ]
>Citeren Andrew C Aitchison via clamav-users <clamav-users@lists.clamav.net>:
>
>>Could you take the latest OpenSuSE source package and build that ?

On 28.03.21 18:49, Arjen de Korte via clamav-users wrote:
>Probably not. There have been quite some changes since 0.99 and I
>doubt SLE 12 SP2 will satisfy all of them. For instance, you'll need a
>newer libcurl than is available. This is not for the faint of heart
>and IMHO doesn't make sense for a system that is so close to being
>EOL'd.

I have already posted that it does seem to be available:

https://scc.suse.com/packages?name=SUSE Linux Enterprise Server&version=12.2&arch=x86_64&query=clamav&module=

--
Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
The only substitute for good manners is fast reflexes.

_______________________________________________

clamav-users mailing list
clamav-users@lists.clamav.net
https://lists.clamav.net/mailman/listinfo/clamav-users


Help us build a comprehensive ClamAV guide:
https://github.com/vrtadmin/clamav-faq

http://www.clamav.net/contact.html#ml