This is a discussion on Re: [Snort-users] IMAGES? within the Snort forums, part of the System Security and Security Related category; At 09:58 AM 12/10/2003, Libalele, Silulami S wrote: >Anyone who knows how to create images in ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
At 09:58 AM 12/10/2003, Libalele, Silulami S wrote:
>Anyone who knows how to create images in Linux? I need to create images of >my SNORT box. You mean disk-to-disk images? use dd. Copying partitions (assuming a partion exists of the same size) dd if=/dev/hda1 of=/dev/hdb1 bs=32768 copying a whole disk, partition table, boot record, and all (assuming identical sized drives) dd if=/dev/hda of=/dev/hdb bs=32768 the bs parameter sets the block size.. the default size is too small and makes DD absurdly slow. ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Snort-users mailing list Snort-users@lists.sourceforge.net Go to this URL to change user options or unsubscribe: https://lists.sourceforge.net/lists/...fo/snort-users Snort-users list archive: http://www.geocrawler.com/redir-sf.p...st=snort-users |