Copy entire disk in FC3


 
Thread Tools Search this Thread
Operating Systems Linux Copy entire disk in FC3
# 8  
Old 09-29-2005
Quote:
Originally Posted by kyoist
Whats FC3? Is it a back-up utility?
No, it is Fedora Core 3 Smilie
# 9  
Old 09-29-2005
Quote:
Originally Posted by eugrus
No, it is Fedora Core 3 Smilie
thanks, Im new to linux/unix systems so i may ask stupid questions Smilie
# 10  
Old 10-07-2005
You should keep in mind that using dd with the default block size will result in a VERY slow copy. You might want to try something like this:
Code:
dd if=/dev/hda of=/dev/hdc bs=$((1024**2*2))

which will give you a 2MB block instead of a 1k block. *Much* faster.
# 11  
Old 02-22-2006
The command did not work

The command did not work.

# dd if=/dev/rdsk/c1t1d0s2 of=/dev/rdsk/c1t2d0s2 bs=$((1024**2*2))
syntax error: `(' unexpected

What should be done?

Regards,
Savitha
# 12  
Old 02-22-2006
Which shell are you using?

Use bash

Cheers
ZB
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Use 'dd' to copy boot disk to larger target disk

Hi, I'm looking to copy a boot disk on an old Solaris 8 system using dd. I'll bring the system down to single user mode and begin from there. I'm copying my source disk to a larger target disk. Do I need to do anything other than the 'dd' command below because the target disk is bigger? ... (2 Replies)
Discussion started by: sparcman
2 Replies

2. OS X (Apple)

Copy entire line in bash (terminal) - keyboard shortcut

how can I do that? I can paste a line with ctrl+p; but I dont know how to copy it? ctrl+y - just deletes etc. (2 Replies)
Discussion started by: c_lady
2 Replies

3. UNIX for Dummies Questions & Answers

Copy entire contents of file to clipboard

Hi, I am trying to figure out how to copy the contents of a file to the clipboard, then paste into a command. i.e copy contents of file /path/filename.txt to <command> <paste text> Hope that makes sense. Basically tryting to copy the text for use in a command without having to open the... (8 Replies)
Discussion started by: JCA70
8 Replies

4. UNIX for Dummies Questions & Answers

How to copy entire file content into another file being in last line mode of vi ?

How to copy entire file content into another file being in last line mode of vi ? ---------- Post updated at 10:07 AM ---------- Previous update was at 09:56 AM ---------- Got it : :1,30w file.txt (1 Reply)
Discussion started by: presul
1 Replies

5. SCO

SCO507 not recognizing entire disk space on install

Hello, I'm trying to install 507 on an HP G5 ML350 server, and I've hit a snag. The installation goes fine until I try to customize the Unix partition on the harddrive--SCO will only see 50 GB of disk space (49852 to be exact). I've installed an HP P400 Smart Array Controller and set up 2... (3 Replies)
Discussion started by: asab
3 Replies

6. UNIX for Dummies Questions & Answers

What is in-core copy and disk-copy of i-node table?

I have found a question from the exercises of my study mat. The question is "Why are there a in-core copy and a disk-copy of i-node block and super block?" If any one know the proper answer then please send me..... (1 Reply)
Discussion started by: dearanik
1 Replies

7. SCO

Make a Copy Entire Hard Disk

Dear All, I have a standalone desktop with SCO Openserver V 5, this is used to control a machine with custom written software. The problem is that the machine manufacturer has closed shop (bankruptcy) and there is no support on software. As a precaution I would want to make a complete backup of... (3 Replies)
Discussion started by: iqbal_siddiqui
3 Replies

8. UNIX for Dummies Questions & Answers

Search for a string and copy the entire line

Hello All, I am after the script or the command which can scan the entire file for a string $PART_ID and when found to extract/copy the corresponding $PART_ID value (e.g THIRE_PTY_SOFTWARE for the 1st occurance of $PART_ID in the attached file) to a file. Appreciate your help. Thanks in... (3 Replies)
Discussion started by: forumthreads
3 Replies

9. UNIX for Dummies Questions & Answers

Copy and entire folder except one

Hi, I have a folder named "A". I want to copy the entire stuff inside it to another location except the folder "B" which is present inside it. How can it be done? (6 Replies)
Discussion started by: vibhor_agarwali
6 Replies

10. UNIX for Dummies Questions & Answers

which cmde recommended to copy an entire dty?

Hi, - i am not unix specialist and i would like to save all the contents of a directory containing symbolic links BUT: + i want to get the links within the copy (to be able to restaor them) + i dont want to copy the directories which are pointed to by theses links some advice? what... (4 Replies)
Discussion started by: JAKEZ
4 Replies
Login or Register to Ask a Question