answersLogoWhite

0


Best Answer

best option is to use dd command as belloaw :

dd if=INPUT-FILE-NAME of=OUTPUT-FILE-NAME

So to backup /dev/hda3 under Linux command should be as follows :

# dd if=/dev/hda3 of=/backup/myhostname-15-nov-05-hda3.bak.dd

Backing up entire disk/partition with dd commandBackup /dev/hda to /dev/hdb:

# dd if=/dev/hda of=/dev/hdb conv=noerror,sync

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which Linux commands can be used to create backups of filesystems and directories?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Unlock files in directory using dos commands?

Dos commands are used to create or delete directories. The ATTRIB Command is used for locking and unlocking of files.


How do you write script to backup a data in unix?

A script may contain any commands that process a certain sequence of instructions. For backups you would include any or all commands to create backup files or archive files of what needs to be backed up. From the backup copy or archive copy you can transfer the information to a secondary media type. For that purpose you would need the commands to copy the information from one media to another. Writing a shell script to do anything is simple as long as you know what commands you intend to execute and the sequence. Backups are not any more complicated than running individual commands to do something.


What is e directory?

A directory on a computer is a file/disk organization concept. You create directories to logically group files. You can create a hierarchy of directories to organize a large disk.


What do they mean create a breed on howrse.com?

create a tab on your page to organize your horses. go to directories, breeding, create a breeding farm


What command do you use to create a file system from the shell in Linux?

It depends on what filesystems your distro has available and can support. The basic mkfs will make you a EXT-based filesystem. However, mkdosfs (linked to mkfs.vfat) will make FAT filesystems. For those systems with NTFS support, mkfs.ntfs is also available.


Can I take an engine like love 2D and and create and engine off of it like create easier commands and maybe a GUI where you can generate projects and stuff If I can do that can I sell it for money or?

Yes, you can take an engine like Love2D engine for Lua and create simple commands including commands for a GUI if you are an expert programmer.


How do you create breeds once you have 3 karma points on Howrse?

Go to Directories>breeding>manage my breeding farms>create a breeding farm


Write a shell script to create two directories and store five files in one directory using the related commands and to transfer all the Files to another directory?

#!/bin/sh mkdir homework lazyass for i in $(seq 5); do touch homework/file-$i; done mv homework/* lazyass


Is it true that If you create logical sub-directories you can more easily locate individual files.?

Yes, it is true.


How do you create a faction in minecraft?

You must be on a faction server. Then do /f create (name) for more commands do /f help


How do you create a data base?

If your database program uses standard SQL commands, you would use the CREATE DATABASE command.


In Linux what are three commands you can use to create a subdirectory?

1. The most straightforward way to create a create a subdirectory in the current directory is mkdir name where name is the name of the new directory. 2. Another way is to move a directory and its descendants from somewhere else: mv path name where path is an absolute or relative pathname for an existing directory hierarchy, and name is the directory name it will be given in the current directory. 3. Various utilities for unpacking archives may create directories as they execute; for example cpio, tar, unzip etc.