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
SYNC(8) 						     Linux Programmer's Manual							   SYNC(8)

NAME
sync - synchronize data on disk with memory SYNOPSIS
sync [--help] [--version] DESCRIPTION
sync writes any data buffered in memory out to disk. This can include (but is not limited to) modified superblocks, modified inodes, and delayed reads and writes. This must be implemented by the kernel; The sync program does nothing but exercise the sync(2) system call. The kernel keeps data in memory to avoid doing (relatively slow) disk reads and writes. This improves performance, but if the computer crashes, data may be lost or the file system corrupted as a result. sync ensures that everything in memory is written to disk. sync should be called before the processor is halted in an unusual manner (e.g., before causing a kernel panic when debugging new kernel code). In general, the processor should be halted using the shutdown(8) or reboot(8) or halt(8) commands, which will attempt to put the system in a quiescent state before calling sync(2). (Various implementations of these commands exist; consult your documentation; on some systems one should not call reboot(8) and halt(8) directly.) OPTIONS
--help Print a usage message on standard output and exit successfully. --version Print version information on standard output, then exit successfully. -- Terminate option list. ENVIRONMENT
The variables LANG, LC_ALL, LC_CTYPE, and LC_MESSAGES have the usual meaning. CONFORMING TO
POSIX.2. NOTES
On Linux, sync is only guaranteed to schedule the dirty blocks for writing; it can actually take a short time before all the blocks are finally written. The reboot(8) and halt(8) commands take this into account by sleeping for a few seconds after calling sync(2). This page describes sync as found in the fileutils-4.0 package; other versions may differ slightly. SEE ALSO
sync(2), halt(8), reboot(8), update(8) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
1998-11-01 SYNC(8)