Ask Linux.com: Startup commands, cloning, and anti-virus software


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Ask Linux.com: Startup commands, cloning, and anti-virus software
# 1  
Old 04-25-2008
Ask Linux.com: Startup commands, cloning, and anti-virus software

Fri, 25 Apr 2008 15:00:00 GMT
In this week's peek inside the Linux.com discussion forums, we'll learn how to schedule commands to run every time at system start-up and what the Linux equivalents are for the disk cloning powers of Symantec Ghost. We'll also see a discussion about anti-virus software options for Linux, and whether or not they are worth the trouble to install. Plus, you'll get your chance to chime in with answers to tricky unsolved problems with virtual consoles and distributed filesystems.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Linux

Anti-virus Software Question For Linux

Greetings To All! I am new in supporting Linux and recently I was tasked to find out the following information and am not sure how to find the answers, hence this posting... I am running Redhat Enterprise Server 5.4 I realize this is a Redhat specific question, but it pertains to all of our... (7 Replies)
Discussion started by: Rob Sandifer
7 Replies

2. Linux

Linux Anti Virus

Can anyone tell the best free antivirus for Linux? I'm using RED HAT 9.0 & want to install antivirus for it. So if anyone has any suggestions of where to get that antivirus, that would be great! (2 Replies)
Discussion started by: billcrosby
2 Replies

3. Ubuntu

What anti-virus to use with Ubuntu

Greetings I just installed Ubuntu 9 on my computer and need to know what anti-virus software to use. I have been using Avast anti-virus on my other comps for years and really like it. I have not tried it with Ubuntu yet but it says for Windows based systems. Any ideas are appreciated Thanks... (5 Replies)
Discussion started by: N5TDA
5 Replies

4. Windows & DOS: Issues & Discussions

What is Your Favorite Anti-Virus Software for Windows at Home?

I used to have trendmicro I used it for free when I worked with a previous company, when I left I had to uninstall it and switched to using Zone Alarm. I tell you on some days I really want to pull my hair out when my PC really works like a snail and sometimes really so unresponsive for up to... (20 Replies)
Discussion started by: sparcguy
20 Replies

5. Shell Programming and Scripting

anti virus caller

Hi all. Iam using AVG antivirus personel edition, and i can only set it to run at one time only. Iam running it on a Win98 machine. is it possilbe to write a Perl script or c++ script to set it up to run at 12pm and 3pm and 6pm ??? (1 Reply)
Discussion started by: perleo
1 Replies

6. UNIX for Dummies Questions & Answers

Anti Virus sw

Can anyone recommend Anti Virus sw for a ten user small business environment running Unix... ver? Thanks for the help (1 Reply)
Discussion started by: rpm
1 Replies

7. Cybersecurity

anti-spam virus package for Unix

:( Is there anyone know the anti-spam and anti- virus package software list for Unix !!?? Where can I find that, I have no idea in searching through the internet! (2 Replies)
Discussion started by: wwayne
2 Replies
Login or Register to Ask a Question
EXIT_GROUP(2)                                                Linux Programmer's Manual                                               EXIT_GROUP(2)

NAME
exit_group - exit all threads in a process SYNOPSIS
#include <linux/unistd.h> void exit_group(int status); DESCRIPTION
This system call is equivalent to _exit(2) except that it terminates not only the calling thread, but all threads in the calling process's thread group. RETURN VALUE
This system call does not return. VERSIONS
This call is present since Linux 2.5.35. CONFORMING TO
This call is Linux-specific. NOTES
Since glibc 2.3, this is the system call invoked when the _exit(2) wrapper function is called. SEE ALSO
exit(2) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2008-11-27 EXIT_GROUP(2)