LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Does Linux have an equivalent to Diskcopy? (https://www.linuxquestions.org/questions/linux-newbie-8/does-linux-have-an-equivalent-to-diskcopy-909034/)

Trouble31 10-19-2011 03:02 PM

Does Linux have an equivalent to Diskcopy?
 
Does Linux have an (either GUI or CLI) equivalent to the Windows Diskcopy command? If it does, where can I find it and the proper syntax to use?

Also, how would I schedule a task in Knoppix GUI?

amani 10-19-2011 03:08 PM

Get parted magic or clonezilla or system rescue cd to do it from CLI/GUI

disk duplicator

Trouble31 10-19-2011 03:32 PM

I'm not looking for software but thanks.

syg00 10-19-2011 05:12 PM

Interesting attitude. Commands I've looked at have been software.

Trouble31 10-19-2011 07:15 PM

No attitude at all - I said thanks. I am looking for a command that would do the same as Windows Diskcopy and a GUI task scheduler. Is crontab a GUI task scheduler?

Trouble31 10-19-2011 07:39 PM

What about Kcron - it is a GUI scheduling utility. Would it run in Knoppix?

FredGSanford 10-19-2011 07:48 PM

cp is probably similar to MS Disk Copy command. Kcron, since it has the K, I would assume is included with KDE environment. Does Knoppix come with KDE desktop, if so it may be included?

Trouble31 10-19-2011 07:59 PM

Not sure if it is included. I have been looking for it but can't find enough info to know where to look for sure.

FredGSanford 10-19-2011 08:02 PM

I found this from google search.

Quote:

KDE provides users with the tools to run software automatically using two features: Autostart and Task Scheduler (formerly called KCron).

Trouble31 10-19-2011 08:07 PM

I am just so lost. I can't find anything remotely close to Autostart, Task Scheduler OR KCron anywhere in the menus.

Trouble31 10-19-2011 08:11 PM

I am making progress - I found this with the help of the post about autostart ...

1. Open up Konqueror. Navigate to your home folder.
2. Click on View. Select Show Hidden Files.
3. Look for a folder named .kde and open it.
4. Look for a folder named Autostart and open it.
5. Click on the K Menu icon and navigate to the program that you would like to auto-start.
6. Drag the icon for said program into the Konqueror window and select Copy Here when prompted.

Trouble31 10-19-2011 08:13 PM

Nope, that only auto starts programs upon login. Will keep looking.

frankbell 10-19-2011 08:34 PM

You might want to look into dd. It might meet your needs.

http://www.backuphowto.info/linux-ba...-disk-clone-dd

cron is indeed a task scheduler. You edit it with a special command called crontab -e.

See man crontab for more.

Trouble31 10-19-2011 09:05 PM

How do you get to the GNU Parted program and will it copy disks like Diskcopy or does it only work on hard drives?

evo2 10-20-2011 12:36 AM

Hi,

Quote:

Originally Posted by Trouble31 (Post 4503026)
How do you get to the GNU Parted program

Install it from your distributions repository just like you would install any other program.

Quote:

and will it copy disks like Diskcopy or does it only work on hard drives?
Sorry, I have no idea what "Diskcopy" does, and I don't understand your distinction between "disks" and "hard drives".

Evo2.

EDDY1 10-20-2011 12:45 AM

Are you referring "disks" as cd's or dvd's?

linuxwin2 10-20-2011 09:11 AM

With clonezilla live Cd you can copy an entire partition/system
http://clonezilla.org/

Quick guide
http://packratstudios.com/index.php/...k-start-guide/

Jeays 10-20-2011 09:55 AM

Diskcopy
 
The Windows command just copies a floppy disk to another; it can't be used for hard disks.

A Linux equivalent is "dd if=/dev/fd0 of=/dev/fd1" if you have two floppy drives.

If not, copy the disk image first to a temporary location, and then put the second disk in the drive:

dd if=/dev/fd0 of=diskimage
# Switch disks
dd if=diskimage of=/dev/fd0
rm -r diskimage

Trouble31 10-20-2011 07:22 PM

Sorry, yes I am referring to floppy disks. I know they are outdated but I am trying to learn how to use Linux for a class. Diskcopy make an exact copy of a floppy disk onto another floppy disk.

Trouble31 10-20-2011 07:25 PM

Quote:

Originally Posted by evo2 (Post 4503139)
Hi,


Install it from your distributions repository just like you would install any other program.


Evo2.

I have never install a program in Linux before so "just like any other program" gives me little to go on.

chrism01 10-20-2011 07:40 PM

Can you confirm which distro+version you are using?
Is it installed on your hard disk, or only being run from CD/DVD?
This will enable us to tell you where to find it in the menus.
(On my Centos system its called Add/Remove Sw :) )

Trouble31 10-20-2011 07:59 PM

My version is Ubuntu VMware Player 4.0 build 471780

evo2 10-20-2011 10:09 PM

Quote:

Originally Posted by Trouble31 (Post 4503887)
I have never install a program in Linux before so "just like any other program" gives me little to go on.

Sure it does, it means that you can read the documentation for your os to find out how.

Evo2.

chrism01 10-20-2011 11:21 PM

Ubuntu cli pkg mgr howto & ptr to full docs http://linux.about.com/od/ubuntu_doc/a/ubudg4t2.htm

elliott678 10-21-2011 01:19 AM

Quote:

Originally Posted by Trouble31 (Post 4503899)
My version is Ubuntu VMware Player 4.0 build 471780

I'm not sure copying physical floppy disks while working in a virtual machine is going to work, it usually doesn't give any real access to the drives.

Though, for doing a byte for byte copy from one disk to another, dd is your best option.


All times are GMT -5. The time now is 08:51 AM.